Started to port some of the support for IsCharAlphaNumeric et al from wine.
[reactos.git] / reactos / lib / user32 / windows / bitmap.c
index ab5aaff..1412cde 100644 (file)
@@ -16,7 +16,7 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
-/* $Id: bitmap.c,v 1.5 2002/09/17 23:46:23 dwelch Exp $
+/* $Id: bitmap.c,v 1.8 2002/12/26 17:21:27 robd Exp $
  *
  * PROJECT:         ReactOS user32.dll
  * FILE:            lib/user32/windows/input.c
@@ -28,6 +28,7 @@
 
 /* INCLUDES ******************************************************************/
 
+#include <string.h>
 #include <windows.h>
 #include <user32.h>
 #include <debug.h>
@@ -56,7 +57,7 @@ LoadImageA(HINSTANCE hinst,
     }
   else
     {
-      Handle = LoadImageW(hinst, lpszWName, uType, cxDesired,
+      Handle = LoadImageW(hinst, (LPCWSTR)lpszName, uType, cxDesired,
                          cyDesired, fuLoad);
     }
   return(Handle);
@@ -241,7 +242,7 @@ LoadImageW(HINSTANCE hinst,
       }
     case IMAGE_CURSOR:
       {
-       DbgPrint("FIXME: Need support for loading cursors.\n");
+       DbgPrint("FIXME: Need support for loading cursor images.\n");
        return(NULL);
       }
     default: