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.

17 lines
266 B

  1. /* Minimal main program -- everything is loaded from the library */
  2. #include "Python.h"
  3. #ifdef MS_WINDOWS
  4. int
  5. wmain(int argc, wchar_t **argv)
  6. {
  7. return Py_Main(argc, argv);
  8. }
  9. #else
  10. int
  11. main(int argc, char **argv)
  12. {
  13. return _Py_UnixMain(argc, argv);
  14. }
  15. #endif