Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // pch.h
- #ifndef PCH_H
- #define PCH_H
- // ADAUGAȚI ACESTE LINII AICI
- // ========================================================================
- // Specifică versiunea minimă de Windows (Vista) pentru a expune API-urile necesare.
- #define _WIN32_WINNT 0x0600
- // Define-uri critice pentru embedding-ul Python.
- // Trebuie să fie procesate înaintea oricărui header Python.
- #define PY_SSIZE_T_CLEAN
- #define PYTHON_NO_ENABLE_SHARED
- // ========================================================================
- #ifndef GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFS
- #define GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFS 0x00000002
- #endif
- // Adăugați headerele care vor fi precompilate aici
- #include "framework.h"
- #endif //PCH_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement