Changeset 1872 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- Nov 29, 1999, 1:05:03 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r607 r1872 1 /* $Id: stubs.cpp,v 1. 7 1999-08-21 16:29:28 sandervlExp $ */1 /* $Id: stubs.cpp,v 1.8 1999-11-29 00:04:05 bird Exp $ */ 2 2 3 3 /* … … 1518 1518 1519 1519 1520 /*****************************************************************************1521 * Name : BOOL WIN32API EnumResourceNamesW1522 * Purpose : The EnumResourceNames function searches a module for each1523 * resource of the specified type and passes the name of each1524 * resource it locates to an application-defined callback function1525 * Parameters: HINSTANCE hModule resource-module handling1526 * LPCTSTR lpszType pointer to resource type1527 * ENUMRESNAMEPROC lpEnumFunc pointer to callback function1528 * LONG lParam application-defined parameter1529 * Variables :1530 * Result : If the function succeeds, the return value is nonzero.1531 * If the function fails, the return value is zero1532 * Remark : The EnumResourceNames function continues to enumerate resource1533 * names until the callback function returns FALSE or all resource1534 * names have been enumerated1535 * Status : UNTESTED STUB1536 *1537 * Author : Markus Montkowski [Tha, 1998/05/21 17:46]1538 *****************************************************************************/1539 1540 BOOL WIN32API EnumResourceNamesW(HMODULE hModule,1541 LPCWSTR lpszType,1542 ENUMRESNAMEPROCW lpEnumFunc,1543 LONG lParam)1544 {1545 1546 dprintf(("KERNEL32:EnumResourceNamesW(%08x,%08x,%08x,%08x) not implemented\n",1547 hModule,1548 lpszType,1549 lpEnumFunc,1550 lParam1551 ));1552 1553 return (FALSE);1554 }1555 1520 1556 1521 /*****************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.