Added/fixed some documentation reported by winapi_check.

diff --git a/loader/module.c b/loader/module.c
index d463297..f779f78 100644
--- a/loader/module.c
+++ b/loader/module.c
@@ -1250,7 +1250,7 @@
 }
 
 /***********************************************************************
- *              GetModuleHandle         (KERNEL32.237)
+ *              GetModuleHandleA         (KERNEL32.237)
  */
 HMODULE WINAPI GetModuleHandleA(LPCSTR module)
 {
@@ -1264,6 +1264,9 @@
     return wm? wm->module : 0;
 }
 
+/***********************************************************************
+ *		GetModuleHandleW
+ */
 HMODULE WINAPI GetModuleHandleW(LPCWSTR module)
 {
     HMODULE hModule;
@@ -1300,7 +1303,7 @@
  
 
 /***********************************************************************
- *              GetModuleFileName32W      (KERNEL32.236)
+ *              GetModuleFileNameW      (KERNEL32.236)
  */
 DWORD WINAPI GetModuleFileNameW( HMODULE hModule, LPWSTR lpFileName,
                                    DWORD size )
@@ -1699,7 +1702,7 @@
 
 
 /***********************************************************************
- *           GetProcAddress32   		(KERNEL32.257)
+ *           GetProcAddress   		(KERNEL32.257)
  */
 FARPROC WINAPI GetProcAddress( HMODULE hModule, LPCSTR function )
 {
@@ -1715,7 +1718,7 @@
 }
 
 /***********************************************************************
- *           MODULE_GetProcAddress32   		(internal)
+ *           MODULE_GetProcAddress   		(internal)
  */
 FARPROC MODULE_GetProcAddress( 
 	HMODULE hModule, 	/* [in] current module handle */
@@ -1752,7 +1755,7 @@
 
 
 /***********************************************************************
- *           RtlImageNtHeaders   (NTDLL)
+ *           RtlImageNtHeader   (NTDLL)
  */
 PIMAGE_NT_HEADERS WINAPI RtlImageNtHeader(HMODULE hModule)
 {