From 1ec1a6741ce7101f4dcdca705a37751e8773ce82 Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Thu, 25 Jan 2001 02:20:05 +0000 Subject: [PATCH] Fixed backwards parameters in FindResource() svn path=/trunk/; revision=1564 --- reactos/lib/kernel32/misc/res.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/lib/kernel32/misc/res.c b/reactos/lib/kernel32/misc/res.c index 36b77d41c27..796ffa9605b 100644 --- a/reactos/lib/kernel32/misc/res.c +++ b/reactos/lib/kernel32/misc/res.c @@ -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 * PROJECT : ReactOS user mode libraries @@ -22,7 +22,7 @@ FindResourceA ( LPCSTR lpType ) { - return FindResourceExA (hModule, lpName, lpType, 0); + return FindResourceExA (hModule, lpType, lpName, 0); } HRSRC @@ -89,7 +89,7 @@ FindResourceW ( LPCWSTR lpType ) { - return FindResourceExW (hModule, lpName, lpType, 0); + return FindResourceExW (hModule, lpType, lpName, 0); } HRSRC