ReactOS 0.4.16-dev-937-g7afcd2a
loaddll.cpp File Reference
#include <corecrt_internal.h>
#include <errno.h>
#include <stdlib.h>
#include <process.h>
Include dependency graph for loaddll.cpp:

Go to the source code of this file.

Macros

#define _CRT_ENABLE_OBSOLETE_LOADLIBRARY_FUNCTIONS
 

Functions

intptr_t __cdecl _loaddll (char *szName)
 
int __cdecl _unloaddll (intptr_t hMod)
 

Macro Definition Documentation

◆ _CRT_ENABLE_OBSOLETE_LOADLIBRARY_FUNCTIONS

#define _CRT_ENABLE_OBSOLETE_LOADLIBRARY_FUNCTIONS

Definition at line 15 of file loaddll.cpp.

Function Documentation

◆ _loaddll()

intptr_t __cdecl _loaddll ( char szName)

Definition at line 36 of file loaddll.cpp.

37{
38 return reinterpret_cast<intptr_t>(__acrt_LoadLibraryExA(szName, nullptr, 0));
39}
HMODULE __cdecl __acrt_LoadLibraryExA(_In_ LPCSTR lpFileName, _Reserved_ HANDLE hFile, _In_ DWORD dwFlags)
static const WCHAR szName[]
Definition: powrprof.c:45
int intptr_t
Definition: vcruntime.h:134

◆ _unloaddll()

int __cdecl _unloaddll ( intptr_t  hMod)

Definition at line 59 of file loaddll.cpp.

60{
61 if (!FreeLibrary(reinterpret_cast<HMODULE>(hMod))) {
62 return ((int)GetLastError());
63 }
64 return (0);
65}
#define FreeLibrary(x)
Definition: compat.h:748
DWORD WINAPI GetLastError(void)
Definition: except.c:1042