Common/MemTools: Make handler function internally linked on Windows

This doesn't need to be an externally linked function.
This commit is contained in:
Lioncash 2018-04-28 12:55:35 -04:00
parent 28138cfde9
commit 8183360832
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ namespace EMM
{ {
#ifdef _WIN32 #ifdef _WIN32
LONG NTAPI Handler(PEXCEPTION_POINTERS pPtrs) static LONG NTAPI Handler(PEXCEPTION_POINTERS pPtrs)
{ {
switch (pPtrs->ExceptionRecord->ExceptionCode) switch (pPtrs->ExceptionRecord->ExceptionCode)
{ {