summaryrefslogtreecommitdiff
path: root/lib/FindFilePlus/dll_main.cpp
blob: 5d64181bb059a50ac6e7e2399f5f8d8a28a274d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// **************************************************************************
// * 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) 2008-2011 ZenJu (zhnmju123 AT gmx.de)                    *
// **************************************************************************


#define WIN32_LEAN_AND_MEAN
#include <zen/win.h>

#include "init_dll_binding.h"


//optional: add init/teardown logic here
BOOL APIENTRY DllMain(HINSTANCE hinstDLL,
                      DWORD     fdwReason,
                      LPVOID    lpvReserved)
{
    switch (fdwReason)
    {
        case DLL_PROCESS_ATTACH:
            if (!findplus::initDllBinding())
                return false;
        case DLL_PROCESS_DETACH:
        case DLL_THREAD_ATTACH:
        case DLL_THREAD_DETACH:
            break;
    }
    return true;
}
bgstack15