Changeset 9653 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- Jan 10, 2003, 1:57:14 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r7555 r9653 1 /* $Id: stubs.cpp,v 1.3 6 2001-12-06 10:14:45sandervl Exp $1 /* $Id: stubs.cpp,v 1.37 2003-01-10 12:57:14 sandervl Exp $ 2 2 * 3 3 * Win32 KERNEL32 Subsystem for OS/2 … … 870 870 871 871 872 /*****************************************************************************873 * Name : DWORD GetHandleInformation874 * Purpose : The GetHandleInformation function obtains information about certain875 * properties of an object handle. The information is obtained as a set of bit flags.876 * Parameters: HANDLE hObject877 * LPDWORD lpdwFlags878 * Variables :879 * Result : TRUE / FALSE880 * Remark :881 * Status : UNTESTED STUB882 *883 * Author : Patrick Haller [Mon, 1998/06/15 08:00]884 *****************************************************************************/885 886 BOOL WIN32API GetHandleInformation(HANDLE hObject,887 LPDWORD lpdwFlags)888 {889 dprintf(("KERNEL32: GetHandleInformation (%08xh, %08xh) not implemented\n",890 hObject,891 lpdwFlags));892 893 return (FALSE);894 }895 896 897 898 872 899 873 /***************************************************************************** … … 1356 1330 } 1357 1331 1358 1359 /*****************************************************************************1360 * Name : BOOL SetHandleInformation1361 * Purpose : The SetHandleInformation function sets certain properties of an1362 * object handle. The information is specified as a set of bit flags.1363 * Parameters: HANDLE hObject handle to an object1364 * DWORD dwMask specifies flags to change1365 * DWORD dwFlags specifies new values for flags1366 * Variables :1367 * Result : TRUE / FALSE1368 * Remark :1369 * Status : UNTESTED STUB1370 *1371 * Author : Patrick Haller [Mon, 1998/06/15 08:00]1372 *****************************************************************************/1373 1374 BOOL WIN32API SetHandleInformation(HANDLE hObject,1375 DWORD dwMask,1376 DWORD dwFlags)1377 {1378 dprintf(("KERNEL32: SetHandleInformation(%08xh,%08xh,%08xh) not implemented.\n",1379 hObject,1380 dwMask,1381 dwFlags));1382 1383 return (FALSE);1384 }1385 1386 1332 /***************************************************************************** 1387 1333 * Name : BOOL SetSystemPowerState
Note:
See TracChangeset
for help on using the changeset viewer.