 |
LoadLibraryEx Add comment W32 Constants Translate this page |
 |
 |
Maps the specified executable module into the address space of the calling process. The executable module can be a .dll or an .exe file. The specified module may cause other modules to be mapped into the address space.
|
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
HMODULE LoadLibraryEx(
LPCTSTR lpFileName,
HANDLE hFile,
DWORD dwFlags
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER LoadLibraryEx IN kernel32;
STRING lpFileName,;
INTEGER hFile,;
INTEGER dwFlags
|
 |
 |
 |
| Parameters: |
 |
lpFileName
[in] Pointer to a null-terminated string that names the executable module (either a .dll or an .exe file).
hFile
This parameter is reserved for future use. It must be NULL.
dwFlags
[in] Action to take when loading the module. If no flags are specified, the behavior of this function is identical to that of the LoadLibrary function. |
 |
 |
| Return value: |
 |
| If the function succeeds, the return value is a handle to the mapped executable module. |
 |
 |
| Word Index links for the LoadLibraryEx : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2003-05-16 10:18:09 | | Modified: | 2003-05-16 10:20:11 | Visited in last 7 days: 34 |