Notepad3/minipath/language/mp_pt_pt/dllmain.cpp
Pairi Daiza 0c8e03856e MUI - Prepare "Resources files for "pt-PT" languages
+ chg: Minor correction in sv-SV and pt-BR languages
2020-05-02 07:23:19 +02:00

24 lines
449 B
C++

// encoding: UTF-8
// dllmain.cpp : Definiert den Einstiegspunkt für die DLL-Anwendung.
#include "stdafx.h"
BOOL APIENTRY DllMain(HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
UNREFERENCED_PARAMETER(hModule);
UNREFERENCED_PARAMETER(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;
}