Ignore:
Timestamp:
Dec 19, 1999, 8:54:32 PM (26 years ago)
Author:
sandervl
Message:

FindResourceExA/W implemented, CreateProcessW bugfix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/stubs.cpp

    r2115 r2144  
    1 /* $Id: stubs.cpp,v 1.14 1999-12-18 17:17:55 sandervl Exp $ */
     1/* $Id: stubs.cpp,v 1.15 1999-12-19 19:54:31 sandervl Exp $ */
    22
    33/*
     
    16691669
    16701670/*****************************************************************************
    1671  * Name      : HRSRC WIN32API FindResourceExA
    1672  * Purpose   : The FindResourceExA function determines the location of the
    1673  *             resource with the specified type, name, and language in the
    1674  *             specified module.
    1675  * Parameters: HMODULE hModule  resource-module handle
    1676  *             LPCSTR lpType    pointer to resource type
    1677  *             LPCSTR lpName    pointer to resource name
    1678  *             WORD wLanguage   resource language
    1679  * Variables :
    1680  * Result    : If the function succeeds, the return value is a handle to the
    1681  *             specified resource's info block. To obtain a handle to the
    1682  *             resource, pass this handle to the LoadResource function.
    1683  *             If the function fails, the return value is NULL
    1684  * Remark    :
    1685  * Status    : UNTESTED STUB
    1686  *
    1687  * Author    : Markus Montkowski [Tha, 1998/05/21 20:57]
    1688  *****************************************************************************/
    1689 
    1690 HRSRC  WIN32API FindResourceExA( HMODULE hModule, LPCSTR lpType,
    1691                                     LPCSTR lpName, WORD wLanguage)
    1692 {
    1693 
    1694   dprintf(("KERNEL32:  FindResourceExA(%08x,%08x,%08x,%08x) not implemented\n",
    1695             hModule, lpType, lpName, wLanguage
    1696           ));
    1697 
    1698   return (NULL);
    1699 }
    1700 
    1701 /*****************************************************************************
    1702  * Name      : HRSRC WIN32API FindResourceExA
    1703  * Purpose   : The FindResourceExA function determines the location of the
    1704  *             resource with the specified type, name, and language in the
    1705  *             specified module.
    1706  * Parameters: HMODULE hModule  resource-module handle
    1707  *             LPCSTR lpType    pointer to resource type
    1708  *             LPCSTR lpName    pointer to resource name
    1709  *             WORD wLanguage   resource language
    1710  * Variables :
    1711  * Result    : If the function succeeds, the return value is a handle to the
    1712  *             specified resource's info block. To obtain a handle to the
    1713  *             resource, pass this handle to the LoadResource function.
    1714  *             If the function fails, the return value is NULL
    1715  * Remark    :
    1716  * Status    : UNTESTED STUB
    1717  *
    1718  * Author    : Markus Montkowski [Tha, 1998/05/21 20:57]
    1719  *****************************************************************************/
    1720 
    1721 HRSRC  WIN32API FindResourceExW(HMODULE hModule,
    1722                                    LPCWSTR lpType,
    1723                                    LPCWSTR lpName,
    1724                                    WORD    wLanguage)
    1725 {
    1726 
    1727   dprintf(("KERNEL32:  FindResourceExW(%08x,%08x,%08x,%08x) not implemented\n",
    1728             hModule, lpType, lpName, wLanguage
    1729           ));
    1730 
    1731   return (NULL);
    1732 }
    1733 
    1734 
    1735 /*****************************************************************************
    17361671 * Name      : int WIN32API FoldStringA
    17371672 * Purpose   : The FoldStringW function maps one string to another, performing
Note: See TracChangeset for help on using the changeset viewer.