TESTING -- override pthreads to fix gstreamer v5
[wine/multimedia.git] / dlls / kernel32 / module.c
blobdac66c1e361727ab83dea1c1146222423882993e
1 /*
2 * Modules
4 * Copyright 1995 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <fcntl.h>
25 #include <stdarg.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <sys/types.h>
30 #ifdef HAVE_UNISTD_H
31 # include <unistd.h>
32 #endif
33 #include "ntstatus.h"
34 #define WIN32_NO_STATUS
35 #include "winerror.h"
36 #include "windef.h"
37 #include "winbase.h"
38 #include "winternl.h"
39 #include "kernel_private.h"
40 #include "psapi.h"
42 #include "wine/exception.h"
43 #include "wine/debug.h"
44 #include "wine/unicode.h"
46 WINE_DEFAULT_DEBUG_CHANNEL(module);
48 #define NE_FFLAGS_LIBMODULE 0x8000
50 static WCHAR *dll_directory; /* extra path for SetDllDirectoryW */
52 static CRITICAL_SECTION dlldir_section;
53 static CRITICAL_SECTION_DEBUG critsect_debug =
55 0, 0, &dlldir_section,
56 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
57 0, 0, { (DWORD_PTR)(__FILE__ ": dlldir_section") }
59 static CRITICAL_SECTION dlldir_section = { &critsect_debug, -1, 0, 0, 0, 0 };
62 /****************************************************************************
63 * GetDllDirectoryA (KERNEL32.@)
65 DWORD WINAPI GetDllDirectoryA( DWORD buf_len, LPSTR buffer )
67 DWORD len;
69 RtlEnterCriticalSection( &dlldir_section );
70 len = dll_directory ? FILE_name_WtoA( dll_directory, strlenW(dll_directory), NULL, 0 ) : 0;
71 if (buffer && buf_len > len)
73 if (dll_directory) FILE_name_WtoA( dll_directory, -1, buffer, buf_len );
74 else *buffer = 0;
76 else
78 len++; /* for terminating null */
79 if (buffer) *buffer = 0;
81 RtlLeaveCriticalSection( &dlldir_section );
82 return len;
86 /****************************************************************************
87 * GetDllDirectoryW (KERNEL32.@)
89 DWORD WINAPI GetDllDirectoryW( DWORD buf_len, LPWSTR buffer )
91 DWORD len;
93 RtlEnterCriticalSection( &dlldir_section );
94 len = dll_directory ? strlenW( dll_directory ) : 0;
95 if (buffer && buf_len > len)
97 if (dll_directory) memcpy( buffer, dll_directory, (len + 1) * sizeof(WCHAR) );
98 else *buffer = 0;
100 else
102 len++; /* for terminating null */
103 if (buffer) *buffer = 0;
105 RtlLeaveCriticalSection( &dlldir_section );
106 return len;
110 /****************************************************************************
111 * SetDllDirectoryA (KERNEL32.@)
113 BOOL WINAPI SetDllDirectoryA( LPCSTR dir )
115 WCHAR *dirW;
116 BOOL ret;
118 if (!(dirW = FILE_name_AtoW( dir, TRUE ))) return FALSE;
119 ret = SetDllDirectoryW( dirW );
120 HeapFree( GetProcessHeap(), 0, dirW );
121 return ret;
125 /****************************************************************************
126 * SetDllDirectoryW (KERNEL32.@)
128 BOOL WINAPI SetDllDirectoryW( LPCWSTR dir )
130 WCHAR *newdir = NULL;
132 if (dir)
134 DWORD len = (strlenW(dir) + 1) * sizeof(WCHAR);
135 if (!(newdir = HeapAlloc( GetProcessHeap(), 0, len )))
137 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
138 return FALSE;
140 memcpy( newdir, dir, len );
143 RtlEnterCriticalSection( &dlldir_section );
144 HeapFree( GetProcessHeap(), 0, dll_directory );
145 dll_directory = newdir;
146 RtlLeaveCriticalSection( &dlldir_section );
147 return TRUE;
151 /****************************************************************************
152 * DisableThreadLibraryCalls (KERNEL32.@)
154 * Inform the module loader that thread notifications are not required for a dll.
156 * PARAMS
157 * hModule [I] Module handle to skip calls for
159 * RETURNS
160 * Success: TRUE. Thread attach and detach notifications will not be sent
161 * to hModule.
162 * Failure: FALSE. Use GetLastError() to determine the cause.
164 * NOTES
165 * This is typically called from the dll entry point of a dll during process
166 * attachment, for dlls that do not need to process thread notifications.
168 BOOL WINAPI DisableThreadLibraryCalls( HMODULE hModule )
170 NTSTATUS nts = LdrDisableThreadCalloutsForDll( hModule );
171 if (nts == STATUS_SUCCESS) return TRUE;
173 SetLastError( RtlNtStatusToDosError( nts ) );
174 return FALSE;
178 /* Check whether a file is an OS/2 or a very old Windows executable
179 * by testing on import of KERNEL.
181 * FIXME: is reading the module imports the only way of discerning
182 * old Windows binaries from OS/2 ones ? At least it seems so...
184 static DWORD MODULE_Decide_OS2_OldWin(HANDLE hfile, const IMAGE_DOS_HEADER *mz, const IMAGE_OS2_HEADER *ne)
186 DWORD currpos = SetFilePointer( hfile, 0, NULL, SEEK_CUR);
187 DWORD ret = BINARY_OS216;
188 LPWORD modtab = NULL;
189 LPSTR nametab = NULL;
190 DWORD len;
191 int i;
193 /* read modref table */
194 if ( (SetFilePointer( hfile, mz->e_lfanew + ne->ne_modtab, NULL, SEEK_SET ) == -1)
195 || (!(modtab = HeapAlloc( GetProcessHeap(), 0, ne->ne_cmod*sizeof(WORD))))
196 || (!(ReadFile(hfile, modtab, ne->ne_cmod*sizeof(WORD), &len, NULL)))
197 || (len != ne->ne_cmod*sizeof(WORD)) )
198 goto broken;
200 /* read imported names table */
201 if ( (SetFilePointer( hfile, mz->e_lfanew + ne->ne_imptab, NULL, SEEK_SET ) == -1)
202 || (!(nametab = HeapAlloc( GetProcessHeap(), 0, ne->ne_enttab - ne->ne_imptab)))
203 || (!(ReadFile(hfile, nametab, ne->ne_enttab - ne->ne_imptab, &len, NULL)))
204 || (len != ne->ne_enttab - ne->ne_imptab) )
205 goto broken;
207 for (i=0; i < ne->ne_cmod; i++)
209 LPSTR module = &nametab[modtab[i]];
210 TRACE("modref: %.*s\n", module[0], &module[1]);
211 if (!(strncmp(&module[1], "KERNEL", module[0])))
212 { /* very old Windows file */
213 MESSAGE("This seems to be a very old (pre-3.0) Windows executable. Expect crashes, especially if this is a real-mode binary !\n");
214 ret = BINARY_WIN16;
215 goto good;
219 broken:
220 ERR("Hmm, an error occurred. Is this binary file broken?\n");
222 good:
223 HeapFree( GetProcessHeap(), 0, modtab);
224 HeapFree( GetProcessHeap(), 0, nametab);
225 SetFilePointer( hfile, currpos, NULL, SEEK_SET); /* restore filepos */
226 return ret;
229 /***********************************************************************
230 * MODULE_GetBinaryType
232 void MODULE_get_binary_info( HANDLE hfile, struct binary_info *info )
234 union
236 struct
238 unsigned char magic[4];
239 unsigned char class;
240 unsigned char data;
241 unsigned char version;
242 unsigned char ignored[9];
243 unsigned short type;
244 unsigned short machine;
245 } elf;
246 struct
248 unsigned int magic;
249 unsigned int cputype;
250 unsigned int cpusubtype;
251 unsigned int filetype;
252 } macho;
253 IMAGE_DOS_HEADER mz;
254 } header;
256 DWORD len;
258 memset( info, 0, sizeof(*info) );
260 /* Seek to the start of the file and read the header information. */
261 if (SetFilePointer( hfile, 0, NULL, SEEK_SET ) == -1) return;
262 if (!ReadFile( hfile, &header, sizeof(header), &len, NULL ) || len != sizeof(header)) return;
264 if (!memcmp( header.elf.magic, "\177ELF", 4 ))
266 if (header.elf.class == 2) info->flags |= BINARY_FLAG_64BIT;
267 #ifdef WORDS_BIGENDIAN
268 if (header.elf.data == 1)
269 #else
270 if (header.elf.data == 2)
271 #endif
273 header.elf.type = RtlUshortByteSwap( header.elf.type );
274 header.elf.machine = RtlUshortByteSwap( header.elf.machine );
276 switch(header.elf.type)
278 case 2: info->type = BINARY_UNIX_EXE; break;
279 case 3: info->type = BINARY_UNIX_LIB; break;
281 switch(header.elf.machine)
283 case 3: info->arch = IMAGE_FILE_MACHINE_I386; break;
284 case 20: info->arch = IMAGE_FILE_MACHINE_POWERPC; break;
285 case 40: info->arch = IMAGE_FILE_MACHINE_ARMNT; break;
286 case 50: info->arch = IMAGE_FILE_MACHINE_IA64; break;
287 case 62: info->arch = IMAGE_FILE_MACHINE_AMD64; break;
288 case 183: info->arch = IMAGE_FILE_MACHINE_ARM64; break;
291 /* Mach-o File with Endian set to Big Endian or Little Endian */
292 else if (header.macho.magic == 0xfeedface || header.macho.magic == 0xcefaedfe ||
293 header.macho.magic == 0xfeedfacf || header.macho.magic == 0xcffaedfe)
295 if ((header.macho.cputype >> 24) == 1) info->flags |= BINARY_FLAG_64BIT;
296 if (header.macho.magic == 0xcefaedfe || header.macho.magic == 0xcffaedfe)
298 header.macho.filetype = RtlUlongByteSwap( header.macho.filetype );
299 header.macho.cputype = RtlUlongByteSwap( header.macho.cputype );
301 switch(header.macho.filetype)
303 case 2: info->type = BINARY_UNIX_EXE; break;
304 case 8: info->type = BINARY_UNIX_LIB; break;
306 switch(header.macho.cputype)
308 case 0x00000007: info->arch = IMAGE_FILE_MACHINE_I386; break;
309 case 0x01000007: info->arch = IMAGE_FILE_MACHINE_AMD64; break;
310 case 0x0000000c: info->arch = IMAGE_FILE_MACHINE_ARMNT; break;
311 case 0x0100000c: info->arch = IMAGE_FILE_MACHINE_ARM64; break;
312 case 0x00000012: info->arch = IMAGE_FILE_MACHINE_POWERPC; break;
315 /* Not ELF, try DOS */
316 else if (header.mz.e_magic == IMAGE_DOS_SIGNATURE)
318 union
320 IMAGE_OS2_HEADER os2;
321 IMAGE_NT_HEADERS32 nt;
322 } ext_header;
324 /* We do have a DOS image so we will now try to seek into
325 * the file by the amount indicated by the field
326 * "Offset to extended header" and read in the
327 * "magic" field information at that location.
328 * This will tell us if there is more header information
329 * to read or not.
331 info->type = BINARY_DOS;
332 info->arch = IMAGE_FILE_MACHINE_I386;
333 if (SetFilePointer( hfile, header.mz.e_lfanew, NULL, SEEK_SET ) == -1) return;
334 if (!ReadFile( hfile, &ext_header, sizeof(ext_header), &len, NULL ) || len < 4) return;
336 /* Reading the magic field succeeded so
337 * we will try to determine what type it is.
339 if (!memcmp( &ext_header.nt.Signature, "PE\0\0", 4 ))
341 if (len >= sizeof(ext_header.nt.FileHeader))
343 static const char fakedll_signature[] = "Wine placeholder DLL";
344 char buffer[sizeof(fakedll_signature)];
346 info->type = BINARY_PE;
347 info->arch = ext_header.nt.FileHeader.Machine;
348 if (ext_header.nt.FileHeader.Characteristics & IMAGE_FILE_DLL)
349 info->flags |= BINARY_FLAG_DLL;
350 if (len < sizeof(ext_header.nt)) /* clear remaining part of header if missing */
351 memset( (char *)&ext_header.nt + len, 0, sizeof(ext_header.nt) - len );
352 switch (ext_header.nt.OptionalHeader.Magic)
354 case IMAGE_NT_OPTIONAL_HDR32_MAGIC:
355 info->res_start = (void *)(ULONG_PTR)ext_header.nt.OptionalHeader.ImageBase;
356 info->res_end = (void *)((ULONG_PTR)ext_header.nt.OptionalHeader.ImageBase +
357 ext_header.nt.OptionalHeader.SizeOfImage);
358 break;
359 case IMAGE_NT_OPTIONAL_HDR64_MAGIC:
360 info->flags |= BINARY_FLAG_64BIT;
361 break;
364 if (header.mz.e_lfanew >= sizeof(header.mz) + sizeof(fakedll_signature) &&
365 SetFilePointer( hfile, sizeof(header.mz), NULL, SEEK_SET ) == sizeof(header.mz) &&
366 ReadFile( hfile, buffer, sizeof(fakedll_signature), &len, NULL ) &&
367 len == sizeof(fakedll_signature) &&
368 !memcmp( buffer, fakedll_signature, sizeof(fakedll_signature) ))
370 info->flags |= BINARY_FLAG_FAKEDLL;
374 else if (!memcmp( &ext_header.os2.ne_magic, "NE", 2 ))
376 /* This is a Windows executable (NE) header. This can
377 * mean either a 16-bit OS/2 or a 16-bit Windows or even a
378 * DOS program (running under a DOS extender). To decide
379 * which, we'll have to read the NE header.
381 if (len >= sizeof(ext_header.os2))
383 if (ext_header.os2.ne_flags & NE_FFLAGS_LIBMODULE) info->flags |= BINARY_FLAG_DLL;
384 switch ( ext_header.os2.ne_exetyp )
386 case 1: info->type = BINARY_OS216; break; /* OS/2 */
387 case 2: info->type = BINARY_WIN16; break; /* Windows */
388 case 3: info->type = BINARY_DOS; break; /* European MS-DOS 4.x */
389 case 4: info->type = BINARY_WIN16; break; /* Windows 386; FIXME: is this 32bit??? */
390 case 5: info->type = BINARY_DOS; break; /* BOSS, Borland Operating System Services */
391 /* other types, e.g. 0 is: "unknown" */
392 default: info->type = MODULE_Decide_OS2_OldWin(hfile, &header.mz, &ext_header.os2); break;
399 /***********************************************************************
400 * GetBinaryTypeW [KERNEL32.@]
402 * Determine whether a file is executable, and if so, what kind.
404 * PARAMS
405 * lpApplicationName [I] Path of the file to check
406 * lpBinaryType [O] Destination for the binary type
408 * RETURNS
409 * TRUE, if the file is an executable, in which case lpBinaryType is set.
410 * FALSE, if the file is not an executable or if the function fails.
412 * NOTES
413 * The type of executable is a property that determines which subsystem an
414 * executable file runs under. lpBinaryType can be set to one of the following
415 * values:
416 * SCS_32BIT_BINARY: A Win32 based application
417 * SCS_64BIT_BINARY: A Win64 based application
418 * SCS_DOS_BINARY: An MS-Dos based application
419 * SCS_WOW_BINARY: A Win16 based application
420 * SCS_PIF_BINARY: A PIF file that executes an MS-Dos based app
421 * SCS_POSIX_BINARY: A POSIX based application ( Not implemented )
422 * SCS_OS216_BINARY: A 16bit OS/2 based application
424 * To find the binary type, this function reads in the files header information.
425 * If extended header information is not present it will assume that the file
426 * is a DOS executable. If extended header information is present it will
427 * determine if the file is a 16, 32 or 64 bit Windows executable by checking the
428 * flags in the header.
430 * ".com" and ".pif" files are only recognized by their file name extension,
431 * as per native Windows.
433 BOOL WINAPI GetBinaryTypeW( LPCWSTR lpApplicationName, LPDWORD lpBinaryType )
435 BOOL ret = FALSE;
436 HANDLE hfile;
437 struct binary_info binary_info;
439 TRACE("%s\n", debugstr_w(lpApplicationName) );
441 /* Sanity check.
443 if ( lpApplicationName == NULL || lpBinaryType == NULL )
444 return FALSE;
446 /* Open the file indicated by lpApplicationName for reading.
448 hfile = CreateFileW( lpApplicationName, GENERIC_READ, FILE_SHARE_READ,
449 NULL, OPEN_EXISTING, 0, 0 );
450 if ( hfile == INVALID_HANDLE_VALUE )
451 return FALSE;
453 /* Check binary type
455 MODULE_get_binary_info( hfile, &binary_info );
456 switch (binary_info.type)
458 case BINARY_UNKNOWN:
460 static const WCHAR comW[] = { '.','C','O','M',0 };
461 static const WCHAR pifW[] = { '.','P','I','F',0 };
462 const WCHAR *ptr;
464 /* try to determine from file name */
465 ptr = strrchrW( lpApplicationName, '.' );
466 if (!ptr) break;
467 if (!strcmpiW( ptr, comW ))
469 *lpBinaryType = SCS_DOS_BINARY;
470 ret = TRUE;
472 else if (!strcmpiW( ptr, pifW ))
474 *lpBinaryType = SCS_PIF_BINARY;
475 ret = TRUE;
477 break;
479 case BINARY_PE:
480 *lpBinaryType = (binary_info.flags & BINARY_FLAG_64BIT) ? SCS_64BIT_BINARY : SCS_32BIT_BINARY;
481 ret = TRUE;
482 break;
483 case BINARY_WIN16:
484 *lpBinaryType = SCS_WOW_BINARY;
485 ret = TRUE;
486 break;
487 case BINARY_OS216:
488 *lpBinaryType = SCS_OS216_BINARY;
489 ret = TRUE;
490 break;
491 case BINARY_DOS:
492 *lpBinaryType = SCS_DOS_BINARY;
493 ret = TRUE;
494 break;
495 case BINARY_UNIX_EXE:
496 case BINARY_UNIX_LIB:
497 ret = FALSE;
498 break;
501 CloseHandle( hfile );
502 return ret;
505 /***********************************************************************
506 * GetBinaryTypeA [KERNEL32.@]
507 * GetBinaryType [KERNEL32.@]
509 * See GetBinaryTypeW.
511 BOOL WINAPI GetBinaryTypeA( LPCSTR lpApplicationName, LPDWORD lpBinaryType )
513 ANSI_STRING app_nameA;
514 NTSTATUS status;
516 TRACE("%s\n", debugstr_a(lpApplicationName));
518 /* Sanity check.
520 if ( lpApplicationName == NULL || lpBinaryType == NULL )
521 return FALSE;
523 RtlInitAnsiString(&app_nameA, lpApplicationName);
524 status = RtlAnsiStringToUnicodeString(&NtCurrentTeb()->StaticUnicodeString,
525 &app_nameA, FALSE);
526 if (!status)
527 return GetBinaryTypeW(NtCurrentTeb()->StaticUnicodeString.Buffer, lpBinaryType);
529 SetLastError(RtlNtStatusToDosError(status));
530 return FALSE;
533 /***********************************************************************
534 * GetModuleHandleExA (KERNEL32.@)
536 BOOL WINAPI GetModuleHandleExA( DWORD flags, LPCSTR name, HMODULE *module )
538 WCHAR *nameW;
540 if (!name || (flags & GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS))
541 return GetModuleHandleExW( flags, (LPCWSTR)name, module );
543 if (!(nameW = FILE_name_AtoW( name, FALSE ))) return FALSE;
544 return GetModuleHandleExW( flags, nameW, module );
547 /***********************************************************************
548 * GetModuleHandleExW (KERNEL32.@)
550 BOOL WINAPI GetModuleHandleExW( DWORD flags, LPCWSTR name, HMODULE *module )
552 NTSTATUS status = STATUS_SUCCESS;
553 HMODULE ret;
554 ULONG_PTR magic;
555 BOOL lock;
557 if (!module)
559 SetLastError( ERROR_INVALID_PARAMETER );
560 return FALSE;
563 /* if we are messing with the refcount, grab the loader lock */
564 lock = (flags & GET_MODULE_HANDLE_EX_FLAG_PIN) || !(flags & GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT);
565 if (lock)
566 LdrLockLoaderLock( 0, NULL, &magic );
568 if (!name)
570 ret = NtCurrentTeb()->Peb->ImageBaseAddress;
572 else if (flags & GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS)
574 void *dummy;
575 if (!(ret = RtlPcToFileHeader( (void *)name, &dummy ))) status = STATUS_DLL_NOT_FOUND;
577 else
579 UNICODE_STRING wstr;
580 RtlInitUnicodeString( &wstr, name );
581 status = LdrGetDllHandle( NULL, 0, &wstr, &ret );
584 if (status == STATUS_SUCCESS)
586 if (flags & GET_MODULE_HANDLE_EX_FLAG_PIN)
587 LdrAddRefDll( LDR_ADDREF_DLL_PIN, ret );
588 else if (!(flags & GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT))
589 LdrAddRefDll( 0, ret );
591 else SetLastError( RtlNtStatusToDosError( status ) );
593 if (lock)
594 LdrUnlockLoaderLock( 0, magic );
596 if (status == STATUS_SUCCESS) *module = ret;
597 else *module = NULL;
599 return (status == STATUS_SUCCESS);
602 /***********************************************************************
603 * GetModuleHandleA (KERNEL32.@)
605 * Get the handle of a dll loaded into the process address space.
607 * PARAMS
608 * module [I] Name of the dll
610 * RETURNS
611 * Success: A handle to the loaded dll.
612 * Failure: A NULL handle. Use GetLastError() to determine the cause.
614 HMODULE WINAPI DECLSPEC_HOTPATCH GetModuleHandleA(LPCSTR module)
616 HMODULE ret;
618 GetModuleHandleExA( GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT, module, &ret );
619 return ret;
622 /***********************************************************************
623 * GetModuleHandleW (KERNEL32.@)
625 * Unicode version of GetModuleHandleA.
627 HMODULE WINAPI GetModuleHandleW(LPCWSTR module)
629 HMODULE ret;
631 GetModuleHandleExW( GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT, module, &ret );
632 return ret;
636 /***********************************************************************
637 * GetModuleFileNameA (KERNEL32.@)
639 * Get the file name of a loaded module from its handle.
641 * RETURNS
642 * Success: The length of the file name, excluding the terminating NUL.
643 * Failure: 0. Use GetLastError() to determine the cause.
645 * NOTES
646 * This function always returns the long path of hModule
647 * The function doesn't write a terminating '\0' if the buffer is too
648 * small.
650 DWORD WINAPI GetModuleFileNameA(
651 HMODULE hModule, /* [in] Module handle (32 bit) */
652 LPSTR lpFileName, /* [out] Destination for file name */
653 DWORD size ) /* [in] Size of lpFileName in characters */
655 LPWSTR filenameW = HeapAlloc( GetProcessHeap(), 0, size * sizeof(WCHAR) );
656 DWORD len;
658 if (!filenameW)
660 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
661 return 0;
663 if ((len = GetModuleFileNameW( hModule, filenameW, size )))
665 len = FILE_name_WtoA( filenameW, len, lpFileName, size );
666 if (len < size)
667 lpFileName[len] = '\0';
668 else
669 SetLastError( ERROR_INSUFFICIENT_BUFFER );
671 HeapFree( GetProcessHeap(), 0, filenameW );
672 return len;
675 /***********************************************************************
676 * GetModuleFileNameW (KERNEL32.@)
678 * Unicode version of GetModuleFileNameA.
680 DWORD WINAPI GetModuleFileNameW( HMODULE hModule, LPWSTR lpFileName, DWORD size )
682 ULONG len = 0;
683 ULONG_PTR magic;
684 LDR_MODULE *pldr;
685 NTSTATUS nts;
686 WIN16_SUBSYSTEM_TIB *win16_tib;
688 if (!hModule && ((win16_tib = NtCurrentTeb()->Tib.SubSystemTib)) && win16_tib->exe_name)
690 len = min(size, win16_tib->exe_name->Length / sizeof(WCHAR));
691 memcpy( lpFileName, win16_tib->exe_name->Buffer, len * sizeof(WCHAR) );
692 if (len < size) lpFileName[len] = '\0';
693 goto done;
696 LdrLockLoaderLock( 0, NULL, &magic );
698 if (!hModule) hModule = NtCurrentTeb()->Peb->ImageBaseAddress;
699 nts = LdrFindEntryForAddress( hModule, &pldr );
700 if (nts == STATUS_SUCCESS)
702 len = min(size, pldr->FullDllName.Length / sizeof(WCHAR));
703 memcpy(lpFileName, pldr->FullDllName.Buffer, len * sizeof(WCHAR));
704 if (len < size)
706 lpFileName[len] = '\0';
707 SetLastError( 0 );
709 else
710 SetLastError( ERROR_INSUFFICIENT_BUFFER );
712 else SetLastError( RtlNtStatusToDosError( nts ) );
714 LdrUnlockLoaderLock( 0, magic );
715 done:
716 TRACE( "%s\n", debugstr_wn(lpFileName, len) );
717 return len;
721 /***********************************************************************
722 * get_dll_system_path
724 static const WCHAR *get_dll_system_path(void)
726 static WCHAR *cached_path;
728 if (!cached_path)
730 WCHAR *p, *path;
731 int len = 3;
733 len += 2 * GetSystemDirectoryW( NULL, 0 );
734 len += GetWindowsDirectoryW( NULL, 0 );
735 p = path = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
736 *p++ = '.';
737 *p++ = ';';
738 GetSystemDirectoryW( p, path + len - p);
739 p += strlenW(p);
740 /* if system directory ends in "32" add 16-bit version too */
741 if (p[-2] == '3' && p[-1] == '2')
743 *p++ = ';';
744 GetSystemDirectoryW( p, path + len - p);
745 p += strlenW(p) - 2;
747 *p++ = ';';
748 GetWindowsDirectoryW( p, path + len - p);
749 cached_path = path;
751 return cached_path;
754 /******************************************************************
755 * get_module_path_end
757 * Returns the end of the directory component of the module path.
759 static inline const WCHAR *get_module_path_end(const WCHAR *module)
761 const WCHAR *p;
762 const WCHAR *mod_end = module;
763 if (!module) return mod_end;
765 if ((p = strrchrW( mod_end, '\\' ))) mod_end = p;
766 if ((p = strrchrW( mod_end, '/' ))) mod_end = p;
767 if (mod_end == module + 2 && module[1] == ':') mod_end++;
768 if (mod_end == module && module[0] && module[1] == ':') mod_end += 2;
770 return mod_end;
773 /******************************************************************
774 * MODULE_get_dll_load_path
776 * Compute the load path to use for a given dll.
777 * Returned pointer must be freed by caller.
779 WCHAR *MODULE_get_dll_load_path( LPCWSTR module )
781 static const WCHAR pathW[] = {'P','A','T','H',0};
783 const WCHAR *system_path = get_dll_system_path();
784 const WCHAR *mod_end = NULL;
785 UNICODE_STRING name, value;
786 WCHAR *p, *ret;
787 int len = 0, path_len = 0;
789 /* adjust length for module name */
791 if (module)
792 mod_end = get_module_path_end( module );
793 /* if module is NULL or doesn't contain a path, fall back to directory
794 * process was loaded from */
795 if (module == mod_end)
797 module = NtCurrentTeb()->Peb->ProcessParameters->ImagePathName.Buffer;
798 mod_end = get_module_path_end( module );
800 len += (mod_end - module) + 1;
802 len += strlenW( system_path ) + 2;
804 /* get the PATH variable */
806 RtlInitUnicodeString( &name, pathW );
807 value.Length = 0;
808 value.MaximumLength = 0;
809 value.Buffer = NULL;
810 if (RtlQueryEnvironmentVariable_U( NULL, &name, &value ) == STATUS_BUFFER_TOO_SMALL)
811 path_len = value.Length;
813 RtlEnterCriticalSection( &dlldir_section );
814 if (dll_directory) len += strlenW(dll_directory) + 1;
815 if ((p = ret = HeapAlloc( GetProcessHeap(), 0, path_len + len * sizeof(WCHAR) )))
817 if (module)
819 memcpy( ret, module, (mod_end - module) * sizeof(WCHAR) );
820 p += (mod_end - module);
821 *p++ = ';';
823 if (dll_directory)
825 strcpyW( p, dll_directory );
826 p += strlenW(p);
827 *p++ = ';';
830 RtlLeaveCriticalSection( &dlldir_section );
831 if (!ret) return NULL;
833 strcpyW( p, system_path );
834 p += strlenW(p);
835 *p++ = ';';
836 value.Buffer = p;
837 value.MaximumLength = path_len;
839 while (RtlQueryEnvironmentVariable_U( NULL, &name, &value ) == STATUS_BUFFER_TOO_SMALL)
841 WCHAR *new_ptr;
843 /* grow the buffer and retry */
844 path_len = value.Length;
845 if (!(new_ptr = HeapReAlloc( GetProcessHeap(), 0, ret, path_len + len * sizeof(WCHAR) )))
847 HeapFree( GetProcessHeap(), 0, ret );
848 return NULL;
850 value.Buffer = new_ptr + (value.Buffer - ret);
851 value.MaximumLength = path_len;
852 ret = new_ptr;
854 value.Buffer[value.Length / sizeof(WCHAR)] = 0;
855 return ret;
859 /******************************************************************
860 * load_library_as_datafile
862 static BOOL load_library_as_datafile( LPCWSTR name, HMODULE* hmod)
864 static const WCHAR dotDLL[] = {'.','d','l','l',0};
866 WCHAR filenameW[MAX_PATH];
867 HANDLE hFile = INVALID_HANDLE_VALUE;
868 HANDLE mapping;
869 HMODULE module;
871 *hmod = 0;
873 if (SearchPathW( NULL, name, dotDLL, sizeof(filenameW) / sizeof(filenameW[0]),
874 filenameW, NULL ))
876 hFile = CreateFileW( filenameW, GENERIC_READ, FILE_SHARE_READ,
877 NULL, OPEN_EXISTING, 0, 0 );
879 if (hFile == INVALID_HANDLE_VALUE) return FALSE;
881 mapping = CreateFileMappingW( hFile, NULL, PAGE_READONLY, 0, 0, NULL );
882 CloseHandle( hFile );
883 if (!mapping) return FALSE;
885 module = MapViewOfFile( mapping, FILE_MAP_READ, 0, 0, 0 );
886 CloseHandle( mapping );
887 if (!module) return FALSE;
889 /* make sure it's a valid PE file */
890 if (!RtlImageNtHeader(module))
892 UnmapViewOfFile( module );
893 return FALSE;
895 *hmod = (HMODULE)((char *)module + 1); /* set low bit of handle to indicate datafile module */
896 return TRUE;
900 /******************************************************************
901 * load_library
903 * Helper for LoadLibraryExA/W.
905 static HMODULE load_library( const UNICODE_STRING *libname, DWORD flags )
907 NTSTATUS nts;
908 HMODULE hModule;
909 WCHAR *load_path;
910 static const DWORD unsupported_flags =
911 LOAD_IGNORE_CODE_AUTHZ_LEVEL |
912 LOAD_LIBRARY_AS_IMAGE_RESOURCE |
913 LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE |
914 LOAD_LIBRARY_REQUIRE_SIGNED_TARGET |
915 LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR |
916 LOAD_LIBRARY_SEARCH_APPLICATION_DIR |
917 LOAD_LIBRARY_SEARCH_USER_DIRS |
918 LOAD_LIBRARY_SEARCH_SYSTEM32 |
919 LOAD_LIBRARY_SEARCH_DEFAULT_DIRS;
921 if( flags & unsupported_flags)
922 FIXME("unsupported flag(s) used (flags: 0x%08x)\n", flags);
924 load_path = MODULE_get_dll_load_path( flags & LOAD_WITH_ALTERED_SEARCH_PATH ? libname->Buffer : NULL );
926 if (flags & LOAD_LIBRARY_AS_DATAFILE)
928 ULONG_PTR magic;
930 LdrLockLoaderLock( 0, NULL, &magic );
931 if (!LdrGetDllHandle( load_path, flags, libname, &hModule ))
933 LdrAddRefDll( 0, hModule );
934 LdrUnlockLoaderLock( 0, magic );
935 goto done;
937 LdrUnlockLoaderLock( 0, magic );
939 /* The method in load_library_as_datafile allows searching for the
940 * 'native' libraries only
942 if (load_library_as_datafile( libname->Buffer, &hModule )) goto done;
943 flags |= DONT_RESOLVE_DLL_REFERENCES; /* Just in case */
944 /* Fallback to normal behaviour */
947 nts = LdrLoadDll( load_path, flags, libname, &hModule );
948 if (nts != STATUS_SUCCESS)
950 hModule = 0;
951 SetLastError( RtlNtStatusToDosError( nts ) );
953 done:
954 HeapFree( GetProcessHeap(), 0, load_path );
955 return hModule;
959 /******************************************************************
960 * LoadLibraryExA (KERNEL32.@)
962 * Load a dll file into the process address space.
964 * PARAMS
965 * libname [I] Name of the file to load
966 * hfile [I] Reserved, must be 0.
967 * flags [I] Flags for loading the dll
969 * RETURNS
970 * Success: A handle to the loaded dll.
971 * Failure: A NULL handle. Use GetLastError() to determine the cause.
973 * NOTES
974 * The HFILE parameter is not used and marked reserved in the SDK. I can
975 * only guess that it should force a file to be mapped, but I rather
976 * ignore the parameter because it would be extremely difficult to
977 * integrate this with different types of module representations.
979 HMODULE WINAPI DECLSPEC_HOTPATCH LoadLibraryExA(LPCSTR libname, HANDLE hfile, DWORD flags)
981 WCHAR *libnameW;
983 if (!(libnameW = FILE_name_AtoW( libname, FALSE ))) return 0;
984 return LoadLibraryExW( libnameW, hfile, flags );
987 /***********************************************************************
988 * LoadLibraryExW (KERNEL32.@)
990 * Unicode version of LoadLibraryExA.
992 HMODULE WINAPI DECLSPEC_HOTPATCH LoadLibraryExW(LPCWSTR libnameW, HANDLE hfile, DWORD flags)
994 UNICODE_STRING wstr;
995 HMODULE res;
997 if (!libnameW)
999 SetLastError(ERROR_INVALID_PARAMETER);
1000 return 0;
1002 RtlInitUnicodeString( &wstr, libnameW );
1003 if (wstr.Buffer[wstr.Length/sizeof(WCHAR) - 1] != ' ')
1004 return load_library( &wstr, flags );
1006 /* Library name has trailing spaces */
1007 RtlCreateUnicodeString( &wstr, libnameW );
1008 while (wstr.Length > sizeof(WCHAR) &&
1009 wstr.Buffer[wstr.Length/sizeof(WCHAR) - 1] == ' ')
1011 wstr.Length -= sizeof(WCHAR);
1013 wstr.Buffer[wstr.Length/sizeof(WCHAR)] = '\0';
1014 res = load_library( &wstr, flags );
1015 RtlFreeUnicodeString( &wstr );
1016 return res;
1019 /***********************************************************************
1020 * LoadLibraryA (KERNEL32.@)
1022 * Load a dll file into the process address space.
1024 * PARAMS
1025 * libname [I] Name of the file to load
1027 * RETURNS
1028 * Success: A handle to the loaded dll.
1029 * Failure: A NULL handle. Use GetLastError() to determine the cause.
1031 * NOTES
1032 * See LoadLibraryExA().
1034 HMODULE WINAPI DECLSPEC_HOTPATCH LoadLibraryA(LPCSTR libname)
1036 return LoadLibraryExA(libname, 0, 0);
1039 /***********************************************************************
1040 * LoadLibraryW (KERNEL32.@)
1042 * Unicode version of LoadLibraryA.
1044 HMODULE WINAPI DECLSPEC_HOTPATCH LoadLibraryW(LPCWSTR libnameW)
1046 return LoadLibraryExW(libnameW, 0, 0);
1049 /***********************************************************************
1050 * FreeLibrary (KERNEL32.@)
1052 * Free a dll loaded into the process address space.
1054 * PARAMS
1055 * hLibModule [I] Handle to the dll returned by LoadLibraryA().
1057 * RETURNS
1058 * Success: TRUE. The dll is removed if it is not still in use.
1059 * Failure: FALSE. Use GetLastError() to determine the cause.
1061 BOOL WINAPI DECLSPEC_HOTPATCH FreeLibrary(HINSTANCE hLibModule)
1063 BOOL retv = FALSE;
1064 NTSTATUS nts;
1066 if (!hLibModule)
1068 SetLastError( ERROR_INVALID_HANDLE );
1069 return FALSE;
1072 if ((ULONG_PTR)hLibModule & 1)
1074 /* this is a LOAD_LIBRARY_AS_DATAFILE module */
1075 char *ptr = (char *)hLibModule - 1;
1076 return UnmapViewOfFile( ptr );
1079 if ((nts = LdrUnloadDll( hLibModule )) == STATUS_SUCCESS) retv = TRUE;
1080 else SetLastError( RtlNtStatusToDosError( nts ) );
1082 return retv;
1085 /***********************************************************************
1086 * GetProcAddress (KERNEL32.@)
1088 * Find the address of an exported symbol in a loaded dll.
1090 * PARAMS
1091 * hModule [I] Handle to the dll returned by LoadLibraryA().
1092 * function [I] Name of the symbol, or an integer ordinal number < 16384
1094 * RETURNS
1095 * Success: A pointer to the symbol in the process address space.
1096 * Failure: NULL. Use GetLastError() to determine the cause.
1098 FARPROC WINAPI GetProcAddress( HMODULE hModule, LPCSTR function )
1100 NTSTATUS nts;
1101 FARPROC fp;
1103 if (!hModule) hModule = NtCurrentTeb()->Peb->ImageBaseAddress;
1105 if ((ULONG_PTR)function >> 16)
1107 ANSI_STRING str;
1109 RtlInitAnsiString( &str, function );
1110 nts = LdrGetProcedureAddress( hModule, &str, 0, (void**)&fp );
1112 else
1113 nts = LdrGetProcedureAddress( hModule, NULL, LOWORD(function), (void**)&fp );
1114 if (nts != STATUS_SUCCESS)
1116 SetLastError( RtlNtStatusToDosError( nts ) );
1117 fp = NULL;
1119 return fp;
1122 /***********************************************************************
1123 * DelayLoadFailureHook (KERNEL32.@)
1125 FARPROC WINAPI DelayLoadFailureHook( LPCSTR name, LPCSTR function )
1127 ULONG_PTR args[2];
1129 if ((ULONG_PTR)function >> 16)
1130 ERR( "failed to delay load %s.%s\n", name, function );
1131 else
1132 ERR( "failed to delay load %s.%u\n", name, LOWORD(function) );
1133 args[0] = (ULONG_PTR)name;
1134 args[1] = (ULONG_PTR)function;
1135 RaiseException( EXCEPTION_WINE_STUB, EH_NONCONTINUABLE, 2, args );
1136 return NULL;
1139 typedef struct {
1140 HANDLE process;
1141 PLIST_ENTRY head, current;
1142 LDR_MODULE ldr_module;
1143 } MODULE_ITERATOR;
1145 static BOOL init_module_iterator(MODULE_ITERATOR *iter, HANDLE process)
1147 PROCESS_BASIC_INFORMATION pbi;
1148 PPEB_LDR_DATA ldr_data;
1149 NTSTATUS status;
1151 /* Get address of PEB */
1152 status = NtQueryInformationProcess(process, ProcessBasicInformation,
1153 &pbi, sizeof(pbi), NULL);
1154 if (status != STATUS_SUCCESS)
1156 SetLastError(RtlNtStatusToDosError(status));
1157 return FALSE;
1160 /* Read address of LdrData from PEB */
1161 if (!ReadProcessMemory(process, &pbi.PebBaseAddress->LdrData,
1162 &ldr_data, sizeof(ldr_data), NULL))
1163 return FALSE;
1165 /* Read address of first module from LdrData */
1166 if (!ReadProcessMemory(process,
1167 &ldr_data->InLoadOrderModuleList.Flink,
1168 &iter->current, sizeof(iter->current), NULL))
1169 return FALSE;
1171 iter->head = &ldr_data->InLoadOrderModuleList;
1172 iter->process = process;
1174 return TRUE;
1177 static int module_iterator_next(MODULE_ITERATOR *iter)
1179 if (iter->current == iter->head)
1180 return 0;
1182 if (!ReadProcessMemory(iter->process,
1183 CONTAINING_RECORD(iter->current, LDR_MODULE, InLoadOrderModuleList),
1184 &iter->ldr_module, sizeof(iter->ldr_module), NULL))
1185 return -1;
1187 iter->current = iter->ldr_module.InLoadOrderModuleList.Flink;
1188 return 1;
1191 static BOOL get_ldr_module(HANDLE process, HMODULE module, LDR_MODULE *ldr_module)
1193 MODULE_ITERATOR iter;
1194 INT ret;
1196 if (!init_module_iterator(&iter, process))
1197 return FALSE;
1199 while ((ret = module_iterator_next(&iter)) > 0)
1200 /* When hModule is NULL we return the process image - which will be
1201 * the first module since our iterator uses InLoadOrderModuleList */
1202 if (!module || module == iter.ldr_module.BaseAddress)
1204 *ldr_module = iter.ldr_module;
1205 return TRUE;
1208 if (ret == 0)
1209 SetLastError(ERROR_INVALID_HANDLE);
1211 return FALSE;
1214 /***********************************************************************
1215 * K32EnumProcessModules (KERNEL32.@)
1217 * NOTES
1218 * Returned list is in load order.
1220 BOOL WINAPI K32EnumProcessModules(HANDLE process, HMODULE *lphModule,
1221 DWORD cb, DWORD *needed)
1223 MODULE_ITERATOR iter;
1224 INT ret;
1226 if (!init_module_iterator(&iter, process))
1227 return FALSE;
1229 if ((cb && !lphModule) || !needed)
1231 SetLastError(ERROR_NOACCESS);
1232 return FALSE;
1235 *needed = 0;
1237 while ((ret = module_iterator_next(&iter)) > 0)
1239 if (cb >= sizeof(HMODULE))
1241 *lphModule++ = iter.ldr_module.BaseAddress;
1242 cb -= sizeof(HMODULE);
1244 *needed += sizeof(HMODULE);
1247 return ret == 0;
1250 /***********************************************************************
1251 * K32EnumProcessModulesEx (KERNEL32.@)
1253 * NOTES
1254 * Returned list is in load order.
1256 BOOL WINAPI K32EnumProcessModulesEx(HANDLE process, HMODULE *lphModule,
1257 DWORD cb, DWORD *needed, DWORD filter)
1259 FIXME("(%p, %p, %d, %p, %d) semi-stub\n",
1260 process, lphModule, cb, needed, filter);
1261 return K32EnumProcessModules(process, lphModule, cb, needed);
1264 /***********************************************************************
1265 * K32GetModuleBaseNameW (KERNEL32.@)
1267 DWORD WINAPI K32GetModuleBaseNameW(HANDLE process, HMODULE module,
1268 LPWSTR base_name, DWORD size)
1270 LDR_MODULE ldr_module;
1272 if (!get_ldr_module(process, module, &ldr_module))
1273 return 0;
1275 size = min(ldr_module.BaseDllName.Length / sizeof(WCHAR), size);
1276 if (!ReadProcessMemory(process, ldr_module.BaseDllName.Buffer,
1277 base_name, size * sizeof(WCHAR), NULL))
1278 return 0;
1280 base_name[size] = 0;
1281 return size;
1284 /***********************************************************************
1285 * K32GetModuleBaseNameA (KERNEL32.@)
1287 DWORD WINAPI K32GetModuleBaseNameA(HANDLE process, HMODULE module,
1288 LPSTR base_name, DWORD size)
1290 WCHAR *base_name_w;
1291 DWORD len, ret = 0;
1293 if(!base_name || !size) {
1294 SetLastError(ERROR_INVALID_PARAMETER);
1295 return 0;
1298 base_name_w = HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR) * size);
1299 if(!base_name_w)
1300 return 0;
1302 len = K32GetModuleBaseNameW(process, module, base_name_w, size);
1303 TRACE("%d, %s\n", len, debugstr_w(base_name_w));
1304 if (len)
1306 ret = WideCharToMultiByte(CP_ACP, 0, base_name_w, len,
1307 base_name, size, NULL, NULL);
1308 if (ret < size) base_name[ret] = 0;
1310 HeapFree(GetProcessHeap(), 0, base_name_w);
1311 return ret;
1314 /***********************************************************************
1315 * K32GetModuleFileNameExW (KERNEL32.@)
1317 DWORD WINAPI K32GetModuleFileNameExW(HANDLE process, HMODULE module,
1318 LPWSTR file_name, DWORD size)
1320 LDR_MODULE ldr_module;
1321 DWORD len;
1323 if (!size) return 0;
1325 if(!get_ldr_module(process, module, &ldr_module))
1326 return 0;
1328 len = ldr_module.FullDllName.Length / sizeof(WCHAR);
1329 if (!ReadProcessMemory(process, ldr_module.FullDllName.Buffer,
1330 file_name, min( len, size ) * sizeof(WCHAR), NULL))
1331 return 0;
1333 if (len < size)
1335 file_name[len] = 0;
1336 return len;
1338 else
1340 file_name[size - 1] = 0;
1341 return size;
1345 /***********************************************************************
1346 * K32GetModuleFileNameExA (KERNEL32.@)
1348 DWORD WINAPI K32GetModuleFileNameExA(HANDLE process, HMODULE module,
1349 LPSTR file_name, DWORD size)
1351 WCHAR *ptr;
1352 DWORD len;
1354 TRACE("(hProcess=%p, hModule=%p, %p, %d)\n", process, module, file_name, size);
1356 if (!file_name || !size)
1358 SetLastError( ERROR_INVALID_PARAMETER );
1359 return 0;
1362 if ( process == GetCurrentProcess() )
1364 len = GetModuleFileNameA( module, file_name, size );
1365 if (size) file_name[size - 1] = '\0';
1366 return len;
1369 if (!(ptr = HeapAlloc(GetProcessHeap(), 0, size * sizeof(WCHAR)))) return 0;
1371 len = K32GetModuleFileNameExW(process, module, ptr, size);
1372 if (!len)
1374 file_name[0] = '\0';
1376 else
1378 if (!WideCharToMultiByte( CP_ACP, 0, ptr, -1, file_name, size, NULL, NULL ))
1380 file_name[size - 1] = 0;
1381 len = size;
1383 else if (len < size) len = strlen( file_name );
1386 HeapFree(GetProcessHeap(), 0, ptr);
1387 return len;
1390 /***********************************************************************
1391 * K32GetModuleInformation (KERNEL32.@)
1393 BOOL WINAPI K32GetModuleInformation(HANDLE process, HMODULE module,
1394 MODULEINFO *modinfo, DWORD cb)
1396 LDR_MODULE ldr_module;
1398 if (cb < sizeof(MODULEINFO))
1400 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1401 return FALSE;
1404 if (!get_ldr_module(process, module, &ldr_module))
1405 return FALSE;
1407 modinfo->lpBaseOfDll = ldr_module.BaseAddress;
1408 modinfo->SizeOfImage = ldr_module.SizeOfImage;
1409 modinfo->EntryPoint = ldr_module.EntryPoint;
1410 return TRUE;
1413 #ifdef __i386__
1415 /***********************************************************************
1416 * __wine_dll_register_16 (KERNEL32.@)
1418 * No longer used.
1420 void __wine_dll_register_16( const IMAGE_DOS_HEADER *header, const char *file_name )
1422 ERR( "loading old style 16-bit dll %s no longer supported\n", file_name );
1426 /***********************************************************************
1427 * __wine_dll_unregister_16 (KERNEL32.@)
1429 * No longer used.
1431 void __wine_dll_unregister_16( const IMAGE_DOS_HEADER *header )
1435 #endif