Ignore:
Timestamp:
Nov 29, 1999, 1:05:03 AM (26 years ago)
Author:
bird
Message:

Implemented EnumResourceNamesA/W.

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 sandervl Exp $ */
     1/* $Id: stubs.cpp,v 1.8 1999-11-29 00:04:05 bird Exp $ */
    22
    33/*
     
    15181518
    15191519
    1520 /*****************************************************************************
    1521  * Name      : BOOL WIN32API EnumResourceNamesW
    1522  * Purpose   : The EnumResourceNames function searches a module for each
    1523  *             resource of the specified type and passes the name of each
    1524  *             resource it locates to an application-defined callback function
    1525  * Parameters: HINSTANCE hModule             resource-module handling
    1526  *             LPCTSTR lpszType              pointer to resource type
    1527  *             ENUMRESNAMEPROC lpEnumFunc    pointer to callback function
    1528  *             LONG lParam                   application-defined parameter
    1529  * Variables :
    1530  * Result    : If the function succeeds, the return value is nonzero.
    1531  *             If the function fails, the return value is zero
    1532  * Remark    : The EnumResourceNames function continues to enumerate resource
    1533  *             names until the callback function returns FALSE or all resource
    1534  *             names have been enumerated
    1535  * Status    : UNTESTED STUB
    1536  *
    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            lParam
    1551           ));
    1552 
    1553   return (FALSE);
    1554 }
    15551520
    15561521/*****************************************************************************
Note: See TracChangeset for help on using the changeset viewer.