Changeset 2144 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- Dec 19, 1999, 8:54:32 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r2115 r2144 1 /* $Id: stubs.cpp,v 1.1 4 1999-12-18 17:17:55sandervl Exp $ */1 /* $Id: stubs.cpp,v 1.15 1999-12-19 19:54:31 sandervl Exp $ */ 2 2 3 3 /* … … 1669 1669 1670 1670 /***************************************************************************** 1671 * Name : HRSRC WIN32API FindResourceExA1672 * Purpose : The FindResourceExA function determines the location of the1673 * resource with the specified type, name, and language in the1674 * specified module.1675 * Parameters: HMODULE hModule resource-module handle1676 * LPCSTR lpType pointer to resource type1677 * LPCSTR lpName pointer to resource name1678 * WORD wLanguage resource language1679 * Variables :1680 * Result : If the function succeeds, the return value is a handle to the1681 * specified resource's info block. To obtain a handle to the1682 * resource, pass this handle to the LoadResource function.1683 * If the function fails, the return value is NULL1684 * Remark :1685 * Status : UNTESTED STUB1686 *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, wLanguage1696 ));1697 1698 return (NULL);1699 }1700 1701 /*****************************************************************************1702 * Name : HRSRC WIN32API FindResourceExA1703 * Purpose : The FindResourceExA function determines the location of the1704 * resource with the specified type, name, and language in the1705 * specified module.1706 * Parameters: HMODULE hModule resource-module handle1707 * LPCSTR lpType pointer to resource type1708 * LPCSTR lpName pointer to resource name1709 * WORD wLanguage resource language1710 * Variables :1711 * Result : If the function succeeds, the return value is a handle to the1712 * specified resource's info block. To obtain a handle to the1713 * resource, pass this handle to the LoadResource function.1714 * If the function fails, the return value is NULL1715 * Remark :1716 * Status : UNTESTED STUB1717 *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, wLanguage1729 ));1730 1731 return (NULL);1732 }1733 1734 1735 /*****************************************************************************1736 1671 * Name : int WIN32API FoldStringA 1737 1672 * Purpose : The FoldStringW function maps one string to another, performing
Note:
See TracChangeset
for help on using the changeset viewer.