[Python-checkins] python/dist/src/PC WinMain.c,1.7,1.8

mhammond@users.sourceforge.net mhammond@users.sourceforge.net
Thu, 01 Aug 2002 19:27:14 -0700


Update of /cvsroot/python/python/dist/src/PC
In directory usw-pr-cvs1:/tmp/cvs-serv10555/PC

Modified Files:
	WinMain.c 
Log Message:
Excise DL_EXPORT/DL_IMPORT from Modules/*.  Required adding a prototype
for Py_Main().

Thanks to Kalle Svensson and Skip Montanaro for the patches.



Index: WinMain.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/WinMain.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** WinMain.c	24 Apr 2001 05:16:29 -0000	1.7
--- WinMain.c	2 Aug 2002 02:27:12 -0000	1.8
***************
*** 6,11 ****
  #include "Python.h"
  
- extern int Py_Main(int, char **);
- 
  int WINAPI WinMain(
      HINSTANCE hInstance,      /* handle to current instance */
--- 6,9 ----