Team Fortress 2 Source Code as on 22/4/2020
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.

36 lines
799 B

  1. /* -----------------------------------------------------------------------------
  2. * Python API portion that goes into the runtime
  3. * ----------------------------------------------------------------------------- */
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #if 0
  7. } /* cc-mode */
  8. #endif
  9. #endif
  10. /* -----------------------------------------------------------------------------
  11. * Constant declarations
  12. * ----------------------------------------------------------------------------- */
  13. /* Constant Types */
  14. #define SWIG_PY_POINTER 4
  15. #define SWIG_PY_BINARY 5
  16. /* Constant information structure */
  17. typedef struct swig_const_info {
  18. int type;
  19. char *name;
  20. long lvalue;
  21. double dvalue;
  22. void *pvalue;
  23. swig_type_info **ptype;
  24. } swig_const_info;
  25. #ifdef __cplusplus
  26. #if 0
  27. { /* cc-mode */
  28. #endif
  29. }
  30. #endif