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 / config.c < prev    next >
C/C++ Source or Header  |  2003-12-30  |  2KB  |  70 lines

  1. /* Generated automatically from ./Modules/config.c.in by makesetup. */
  2. /* -*- C -*- ***********************************************
  3. Copyright (c) 2000, BeOpen.com.
  4. Copyright (c) 1995-2000, Corporation for National Research Initiatives.
  5. Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
  6. All rights reserved.
  7.  
  8. See the file "Misc/COPYRIGHT" for information on usage and
  9. redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10. ******************************************************************/
  11.  
  12. /* Module configuration */
  13.  
  14. /* !!! !!! !!! This file is edited by the makesetup script !!! !!! !!! */
  15.  
  16. /* This file contains the table of built-in modules.
  17.    See init_builtin() in import.c. */
  18.  
  19. #include "Python.h"
  20.  
  21.  
  22. extern void initthread(void);
  23. extern void initsignal(void);
  24. extern void initposix(void);
  25. extern void initerrno(void);
  26. extern void init_sre(void);
  27. extern void init_codecs(void);
  28. extern void initzipimport(void);
  29. extern void init_symtable(void);
  30. extern void initxxsubtype(void);
  31.  
  32. /* -- ADDMODULE MARKER 1 -- */
  33.  
  34. extern void PyMarshal_Init(void);
  35. extern void initimp(void);
  36. extern void initgc(void);
  37.  
  38. struct _inittab _PyImport_Inittab[] = {
  39.  
  40.     {"thread", initthread},
  41.     {"signal", initsignal},
  42.     {"posix", initposix},
  43.     {"errno", initerrno},
  44.     {"_sre", init_sre},
  45.     {"_codecs", init_codecs},
  46.     {"zipimport", initzipimport},
  47.     {"_symtable", init_symtable},
  48.     {"xxsubtype", initxxsubtype},
  49.  
  50. /* -- ADDMODULE MARKER 2 -- */
  51.  
  52.     /* This module lives in marshal.c */
  53.     {"marshal", PyMarshal_Init},
  54.  
  55.     /* This lives in import.c */
  56.     {"imp", initimp},
  57.  
  58.     /* These entries are here for sys.builtin_module_names */
  59.     {"__main__", NULL},
  60.     {"__builtin__", NULL},
  61.     {"sys", NULL},
  62.     {"exceptions", NULL},
  63.  
  64.     /* This lives in gcmodule.c */
  65.     {"gc", initgc},
  66.  
  67.     /* Sentinel */
  68.     {0, 0}
  69. };
  70.