summaryrefslogtreecommitdiff
path: root/zen/FindFilePlus/load_dll.cpp
blob: 9e8dbf177aca08108fc5b31e5667e1751fd0f23f (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 (zhnmju123 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);
}
bgstack15