[Python-checkins] CVS: python/dist/src/Python importdl.h,2.11,2.12

Guido van Rossum guido@cnri.reston.va.us
Mon, 20 Dec 1999 17:55:05 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Python
In directory eric:/projects/python/develop/guido/src/Python

Modified Files:
	importdl.h 
Log Message:
For Windows, need to add #include <windows.h>.


Index: importdl.h
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Python/importdl.h,v
retrieving revision 2.11
retrieving revision 2.12
diff -C2 -r2.11 -r2.12
*** importdl.h	1999/12/20 21:22:24	2.11
--- importdl.h	1999/12/20 22:55:03	2.12
***************
*** 65,68 ****
--- 65,69 ----
  
  #ifdef MS_WINDOWS
+ #include <windows.h>
  typedef FARPROC dl_funcptr;
  #else