Sha256: d7cf8a0c16afd9c1c1adf8053a53d94a83b86763ac045981e53f42b7ec11f94c
Contents?: true
Size: 419 Bytes
Versions: 2
Compression:
Stored size: 419 Bytes
Contents
#pragma once #include <SDKDDKVer.h> #define WIN32_LEAN_AND_MEAN #include <windows.h> BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
embulk-output-oracle-0.4.1 | src/main/cpp/win/dllmain.cpp |
embulk-output-oracle-0.2.4 | src/main/cpp/win/dllmain.cpp |