aboutsummaryrefslogtreecommitdiff
path: root/TestDLL/dllmain.cpp
blob: 39075b7feec5ca21a87de25fd0dd51df28dd5476 (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
#include "stdafx.h"

void APIENTRY LibEntry(void)
{
	static bool firstEntry = true;

	if (firstEntry) {
		firstEntry = false;

		MessageBoxA(NULL,
			"DllMain from TestDLL",
			"TestDLL Notification",
			MB_OK | MB_ICONINFORMATION);
	}
}

extern "C" __declspec(dllexport)
DWORD WINAPI LibEntryThreaded(_In_ LPVOID lpParameter)
{
	LibEntry();

	ExitThread(0);
	return 0;
}