Changeset 1272 for trunk/dll/arccnrs.c
- Timestamp:
- Nov 10, 2008, 3:10:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/arccnrs.c
r1271 r1272 169 169 CHAR *pszEnvironment; 170 170 CHAR formatstring[40]; //Usally "%s" 171 CHAR CmdLine[1024]; //Use sprintf to format multipart command line into single string171 CHAR CmdLine[1024]; //Use sprintf to format multipart command line into single string 172 172 } 173 173 WAITCHILD; 174 174 175 // Creates a thread to wait for a child process to complete then posts a message and closes 175 /** Creates a thread to wait for a child process to complete then posts a message and closes 176 * This function should only be used for runemf2 calls that include the WAIT flag 177 */ 176 178 VOID WaitChildThread(VOID * arg) 177 179 { … … 193 195 if (thab) { 194 196 IncrThreadUsage(); 195 priority_ bumped(); //normal();197 priority_normal(); 196 198 ret = runemf2(WaitChild->RunFlags, WaitChild->hwndClient, pszSrcFile, __LINE__, 197 199 WaitChild->pszDirectory, WaitChild->pszEnvironment, 198 200 WaitChild->formatstring, WaitChild->CmdLine); 199 201 if (ret != -1) { 200 //priority_bumped();201 202 if (IsFile(WaitChild->filename) == 1) 202 203 PostMsg(WaitChild->hwndCnr, UM_ENTER, MPFROMP(filename), MPVOID);
Note:
See TracChangeset
for help on using the changeset viewer.