- Timestamp:
- Jan 12, 2004, 6:27:28 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winexedummy.cpp
r9971 r10386 1 /* $Id: winexedummy.cpp,v 1. 4 2003-04-02 11:03:32sandervl Exp $ */1 /* $Id: winexedummy.cpp,v 1.5 2004-01-12 17:27:28 sandervl Exp $ */ 2 2 3 3 /* … … 27 27 #include "initterm.h" 28 28 29 static BOOL fIsDummyExe = FALSE; 30 29 31 //****************************************************************************** 30 32 //Create Dummy Exe object … … 41 43 if(winexe) { 42 44 InitCommandLine(FALSE); 43 winexe->start(); 45 winexe->start(); 46 fIsDummyExe = TRUE; 44 47 } 45 48 else { … … 49 52 } 50 53 return TRUE; 54 } 55 //****************************************************************************** 56 //****************************************************************************** 57 BOOL WIN32API IsDummyExeLoaded() 58 { 59 return fIsDummyExe; 51 60 } 52 61 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.