blob: 5f72e31bacb201b8f6798d2fdc49866a5ecd6094 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
// * Copyright (C) ZenJu (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
#include "load_dll.h"
#define WIN32_LEAN_AND_MEAN
#include <zen/win.h>
void* /*FARPROC*/ dll::loadSymbol(const wchar_t* libraryName, const char* functionName)
{
return ::GetProcAddress(::GetModuleHandle(libraryName), functionName);
//cleanup neither required nor allowed (::FreeLibrary())
}
//note: void* and FARPROC function pointer have same binary size on Windows
void dll::setWin32Error(unsigned long lastError)
{
::SetLastError(lastError);
}
|