[Python-checkins] python/dist/src/Modules _localemodule.c,2.33,2.34 posixmodule.c,2.241,2.242

Fredrik Lundh fredrik@pythonware.com
Mon, 15 Jul 2002 12:59:21 +0200


>   #include <process.h>
>   #include "osdefs.h"
> ! /* We don't want WIN32_LEAN_AND_MEAN here -- we need ShellExecute(). =
*/
>   #include <windows.h>
>   #define popen _popen

hmm.  my copy of the the ShellExecute docs tells you to explicitly
include <shellapi.h> if you want to use that function...

</F>