mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fixed backwards parameters in FindResource()
svn path=/trunk/; revision=1564
This commit is contained in:
parent
a9527291d6
commit
1ec1a6741c
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: res.c,v 1.7 2000/08/28 21:45:43 ekohl Exp $
|
/* $Id: res.c,v 1.8 2001/01/25 02:20:05 phreak Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT : ReactOS user mode libraries
|
* PROJECT : ReactOS user mode libraries
|
||||||
|
@ -22,7 +22,7 @@ FindResourceA (
|
||||||
LPCSTR lpType
|
LPCSTR lpType
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return FindResourceExA (hModule, lpName, lpType, 0);
|
return FindResourceExA (hModule, lpType, lpName, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
HRSRC
|
HRSRC
|
||||||
|
@ -89,7 +89,7 @@ FindResourceW (
|
||||||
LPCWSTR lpType
|
LPCWSTR lpType
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return FindResourceExW (hModule, lpName, lpType, 0);
|
return FindResourceExW (hModule, lpType, lpName, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
HRSRC
|
HRSRC
|
||||||
|
|
Loading…
Reference in a new issue