Advertisement
cjmt2

Untitled

Jun 18th, 2025
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. // pch.h
  2.  
  3. #ifndef PCH_H
  4. #define PCH_H
  5.  
  6. // ADAUGAȚI ACESTE LINII AICI
  7. // ========================================================================
  8. // Specifică versiunea minimă de Windows (Vista) pentru a expune API-urile necesare.
  9. #define _WIN32_WINNT 0x0600
  10.  
  11. // Define-uri critice pentru embedding-ul Python.
  12. // Trebuie să fie procesate înaintea oricărui header Python.
  13. #define PY_SSIZE_T_CLEAN
  14. #define PYTHON_NO_ENABLE_SHARED
  15. // ========================================================================
  16. #ifndef GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFS
  17. #define GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFS 0x00000002
  18. #endif
  19.  
  20. // Adăugați headerele care vor fi precompilate aici
  21. #include "framework.h"
  22.  
  23. #endif //PCH_H
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement