6.2.4.1. mxTools C header

Comienzo C section to interscript/core/mxTools.h[1 /1 ]
     1: #line 43 "mxTools.pak"
     2: #ifndef MXTOOLS_H
     3: #define MXTOOLS_H
     4: #ifdef __cplusplus
     5: extern "C" {
     6: #endif
     7: 
     8: /*
     9:   mxTools -- Misc. tools for Python
    10: 
    11:   (c) Marc-Andre Lemburg; all rights reserved
    12: */
    13: 
    14: /* The extension's name */
    15: #define MXTOOLS_MODULE "_mxTools"
    16: 
    17: /* --- No servicable parts below this line ----------------------*/
    18: 
    19: /* Include generic mx extension header file */
    20: #include "mxh.h"
    21: 
    22: #ifdef MX_BUILDING_MXTOOLS
    23: # define MXTOOLS_EXTERNALIZE MX_EXPORT
    24: #else
    25: # define MXTOOLS_EXTERNALIZE MX_IMPORT
    26: #endif
    27: 
    28: /* EOF */
    29: #ifdef __cplusplus
    30: }
    31: #endif
    32: #endif
    33: 
End C section to interscript/core/mxTools.h[1]