- Timestamp:
- Dec 30, 1999, 7:49:32 PM (26 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/Fileio.cpp
r2253 r2271 1 /* $Id: Fileio.cpp,v 1.2 0 1999-12-29 18:49:49sandervl Exp $ */1 /* $Id: Fileio.cpp,v 1.21 1999-12-30 18:49:32 sandervl Exp $ */ 2 2 3 3 /* … … 241 241 //****************************************************************************** 242 242 ODINFUNCTION1(BOOL, DeleteFileA, 243 LPCSTR, arg1) 244 { 245 return O32_DeleteFile(arg1); 243 LPCSTR, lpszFile) 244 { 245 dprintf(("DeleteFileA %s", lpszFile)); 246 return O32_DeleteFile(lpszFile); 246 247 } 247 248 //****************************************************************************** -
trunk/src/kernel32/HandleManager.cpp
r2249 r2271 1 /* $Id: HandleManager.cpp,v 1.3 2 1999-12-29 13:04:52 phallerExp $ */1 /* $Id: HandleManager.cpp,v 1.33 1999-12-30 18:49:32 sandervl Exp $ */ 2 2 3 3 /* … … 2546 2546 2547 2547 // @@@PH to imlpement: check handle type! 2548 2548 // SvL: We still use Open32 handles for threads & processes -> don't fail here! 2549 2549 if (rc != NO_ERROR) 2550 2550 { 2551 dprintf(("KERNEL32: HMWaitForMultipleObjects - ERROR: handle %08xh is NOT an Open32 handle (not yet implemented)\n",2551 dprintf(("KERNEL32: HMWaitForMultipleObjects - WARNING: handle %08xh is NOT an Odin handle (probably Open32 thread or process)\n", 2552 2552 *pLoop1)); 2553 2553 2554 O32_SetLastError(ERROR_INVALID_HANDLE); 2555 return (WAIT_FAILED); 2554 *pLoop2 = *pLoop1; 2555 //// O32_SetLastError(ERROR_INVALID_HANDLE); 2556 //// return (WAIT_FAILED); 2556 2557 } 2557 2558 } … … 2641 2642 pLoop2); 2642 2643 2644 // SvL: We still use Open32 handles for threads & processes -> don't fail here! 2643 2645 if (rc != NO_ERROR) 2644 2646 { 2645 O32_SetLastError(ERROR_INVALID_HANDLE); 2646 return (WAIT_FAILED); 2647 dprintf(("KERNEL32: HMMsgWaitForMultipleObjects - WARNING: handle %08xh is NOT an Odin handle (probably Open32 thread or process)\n", 2648 *pLoop1)); 2649 2650 *pLoop2 = *pLoop1; 2651 //// O32_SetLastError(ERROR_INVALID_HANDLE); 2652 //// return (WAIT_FAILED); 2647 2653 } 2648 2654 }
Note:
See TracChangeset
for help on using the changeset viewer.