summaryrefslogtreecommitdiffhomepage
path: root/windows/nsis-plugins/src/cleanup/dllmain.cpp
blob: f11c65c519fbd6f4292a782edab4fa8bce0a9df6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "stdafx.h"
#include <windows.h>

BOOL APIENTRY DllMain(HMODULE, DWORD, LPVOID)
{
	//
	// Avoid doing work in DllMain since the loader lock is held
	//

	return TRUE;
}