home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / modsupport.h < prev    next >
C/C++ Source or Header  |  2003-12-30  |  3KB  |  102 lines

  1.  
  2. #ifndef Py_MODSUPPORT_H
  3. #define Py_MODSUPPORT_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. /* Module support interface */
  9.  
  10. #include <stdarg.h>
  11.  
  12. PyAPI_FUNC(int) PyArg_Parse(PyObject *, char *, ...);
  13. PyAPI_FUNC(int) PyArg_ParseTuple(PyObject *, char *, ...);
  14. PyAPI_FUNC(int) PyArg_ParseTupleAndKeywords(PyObject *, PyObject *,
  15.                                                   char *, char **, ...);
  16. PyAPI_FUNC(int) PyArg_UnpackTuple(PyObject *, char *, int, int, ...);
  17. PyAPI_FUNC(PyObject *) Py_BuildValue(char *, ...);
  18.  
  19. PyAPI_FUNC(int) PyArg_VaParse(PyObject *, char *, va_list);
  20. PyAPI_FUNC(PyObject *) Py_VaBuildValue(char *, va_list);
  21.  
  22. PyAPI_FUNC(int) PyModule_AddObject(PyObject *, char *, PyObject *);
  23. PyAPI_FUNC(int) PyModule_AddIntConstant(PyObject *, char *, long);
  24. PyAPI_FUNC(int) PyModule_AddStringConstant(PyObject *, char *, char *);
  25.  
  26. #define PYTHON_API_VERSION 1012
  27. #define PYTHON_API_STRING "1012"
  28. /* The API version is maintained (independently from the Python version)
  29.    so we can detect mismatches between the interpreter and dynamically
  30.    loaded modules.  These are diagnosed by an error message but
  31.    the module is still loaded (because the mismatch can only be tested
  32.    after loading the module).  The error message is intended to
  33.    explain the core dump a few seconds later.
  34.  
  35.    The symbol PYTHON_API_STRING defines the same value as a string
  36.    literal.  *** PLEASE MAKE SURE THE DEFINITIONS MATCH. ***
  37.  
  38.    Please add a line or two to the top of this log for each API
  39.    version change:
  40.  
  41.    19-Aug-2002  GvR    1012    Changes to string object struct for
  42.                    interning changes, saving 3 bytes.
  43.  
  44.    17-Jul-2001    GvR    1011    Descr-branch, just to be on the safe side
  45.  
  46.    25-Jan-2001  FLD     1010    Parameters added to PyCode_New() and
  47.                                 PyFrame_New(); Python 2.1a2
  48.  
  49.    14-Mar-2000  GvR     1009    Unicode API added
  50.  
  51.    3-Jan-1999    GvR    1007    Decided to change back!  (Don't reuse 1008!)
  52.  
  53.    3-Dec-1998    GvR    1008    Python 1.5.2b1
  54.  
  55.    18-Jan-1997    GvR    1007    string interning and other speedups
  56.  
  57.    11-Oct-1996    GvR    renamed Py_Ellipses to Py_Ellipsis :-(
  58.  
  59.    30-Jul-1996    GvR    Slice and ellipses syntax added
  60.  
  61.    23-Jul-1996    GvR    For 1.4 -- better safe than sorry this time :-)
  62.  
  63.    7-Nov-1995    GvR    Keyword arguments (should've been done at 1.3 :-( )
  64.  
  65.    10-Jan-1995    GvR    Renamed globals to new naming scheme
  66.  
  67.    9-Jan-1995    GvR    Initial version (incompatible with older API)
  68. */
  69.  
  70. #ifdef MS_WINDOWS
  71. /* Special defines for Windows versions used to live here.  Things
  72.    have changed, and the "Version" is now in a global string variable.
  73.    Reason for this is that this for easier branding of a "custom DLL"
  74.    without actually needing a recompile.  */
  75. #endif /* MS_WINDOWS */
  76.  
  77. #ifdef Py_TRACE_REFS
  78. /* When we are tracing reference counts, rename Py_InitModule4 so
  79.    modules compiled with incompatible settings will generate a
  80.    link-time error. */
  81. #define Py_InitModule4 Py_InitModule4TraceRefs
  82. #endif
  83.  
  84. PyAPI_FUNC(PyObject *) Py_InitModule4(char *name, PyMethodDef *methods,
  85.                                             char *doc, PyObject *self,
  86.                                             int apiver);
  87.  
  88. #define Py_InitModule(name, methods) \
  89.     Py_InitModule4(name, methods, (char *)NULL, (PyObject *)NULL, \
  90.                PYTHON_API_VERSION)
  91.  
  92. #define Py_InitModule3(name, methods, doc) \
  93.     Py_InitModule4(name, methods, doc, (PyObject *)NULL, \
  94.                PYTHON_API_VERSION)
  95.  
  96. PyAPI_DATA(char *) _Py_PackageContext;
  97.  
  98. #ifdef __cplusplus
  99. }
  100. #endif
  101. #endif /* !Py_MODSUPPORT_H */
  102.