Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
628 B

  1. //======= Copyright � 1996-2009, Valve Corporation, All rights reserved. ======
  2. //
  3. // Python wrapper for datamodel
  4. //
  5. //=============================================================================
  6. #ifndef DATAMODEL_LIB_H
  7. #define DATAMODEL_LIB_H
  8. // Call this from application code to load up the datamodel python
  9. // bindings when they are linked into the application directly
  10. // Python must already be initialized
  11. bool EmbedPyDataModel();
  12. // Full register registers all _<module>.pyd and then the corresponding <module>.py files
  13. void InitPyDataModelLib( bool bValvePythonInit );
  14. #endif // DATAMODEL_LIB_H