 |
LoadLibrary ..msdn Add comment W32 Constants Translate this page |
 |
 |
The LoadLibrary function maps the specified executable module into the address space of the calling process.
|
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
HMODULE LoadLibrary(
LPCTSTR lpFileName // file name of module
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER LoadLibrary IN kernel32;
STRING lpLibFileName
|
 |
 |
 |
| Parameters: |
 |
lpFileName
[in] Pointer to a null-terminated string that names the executable module (either a .dll or .exe file). |
 |
 |
| Return value: |
 |
| If the function succeeds, the return value is a handle to the module |
 |
 |
| My comment: |
 |
| Once you get a return from this function, you probably know how to use it |
 |
 |
| Word Index links for the LoadLibrary : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2001-07-12 12:00:00 | | Modified: | 2003-05-15 16:31:36 | Visited in last 7 days: 29 |