Maestro 0.1.0
Unified interface for quantum circuit simulation
Loading...
Searching...
No Matches
dllmain.cpp
Go to the documentation of this file.
1
8
9#define _CRT_SECURE_NO_WARNINGS 1
10
11#include <cassert>
12
14
15#ifndef __linux__
16
17#include "framework.h"
18
19// Defines the entry point for the DLL application.
20
21BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call,
22 LPVOID lpReserved) {
23 switch (ul_reason_for_call) {
24 case DLL_PROCESS_ATTACH:
25 case DLL_THREAD_ATTACH:
26 case DLL_THREAD_DETACH:
27 case DLL_PROCESS_DETACH:
28 break;
29 }
30 return TRUE;
31}
32
33#endif
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
Definition dllmain.cpp:21