- Timestamp:
- Jun 10, 2001, 11:59:31 PM (24 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/KERNEL32.DEF
r5829 r5955 1 ; $Id: KERNEL32.DEF,v 1.10 8 2001-05-30 01:35:57 phallerExp $1 ; $Id: KERNEL32.DEF,v 1.109 2001-06-10 21:59:30 sandervl Exp $ 2 2 3 3 ;Basis is Windows95 KERNEL32 … … 185 185 CloseHandle = _CloseHandle@4 @137 186 186 ; CloseConsoleHandle = _CloseConsoleHandle@?? @22 ;NT 187 ; CloseProfileUserMapping = _CloseProfileUserMapping@??@138187 CloseProfileUserMapping = _CloseProfileUserMapping@0 @138 188 188 ; CloseSystemHandle = _CloseSystemHandle@?? @139 ;W95 189 189 CmdBatNotification = _CmdBatNotification@4 @26 ;NT … … 652 652 OpenMutexW = _OpenMutexW@12 @542 653 653 OpenProcess = _OpenProcess@12 @543 654 ; OpenProfileUserMapping = _OpenProfileUserMapping@??@544654 OpenProfileUserMapping = _OpenProfileUserMapping@0 @544 655 655 OpenSemaphoreA = _OpenSemaphoreA@12 @545 656 656 OpenSemaphoreW = _OpenSemaphoreW@12 @546 -
trunk/src/kernel32/profile.cpp
r5939 r5955 1 /* $Id: profile.cpp,v 1.3 0 2001-06-09 19:46:01 sandervl Exp $ */1 /* $Id: profile.cpp,v 1.31 2001-06-10 21:59:31 sandervl Exp $ */ 2 2 3 3 /* … … 1669 1669 } 1670 1670 1671 1672 /*********************************************************************** 1673 * CloseProfileUserMapping (KERNEL.138) 1674 */ 1675 BOOL WINAPI CloseProfileUserMapping(void) 1676 { 1677 dprintf(("CloseProfileUserMapping: STUB")); 1678 return TRUE; 1679 } 1680 1681 BOOL WINAPI OpenProfileUserMapping(void) 1682 { 1683 dprintf(("OpenProfileUserMapping: STUB")); 1684 return TRUE; 1685 } 1686
Note:
See TracChangeset
for help on using the changeset viewer.