1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-07 00:04:57 +03:00

Enable debug messages and memory check with debug configuration

This commit is contained in:
Davide Beatrici
2018-09-15 19:12:21 +02:00
parent 9a6b871a0e
commit 4e30a40ae1
9 changed files with 45 additions and 1 deletions

View File

@ -4565,7 +4565,11 @@ void CALLBACK MsServiceDispatcher(DWORD argc, LPTSTR *argv)
//// Initialization
// Start of the Mayaqua
#ifdef DEBUG
InitMayaqua(true, true, 0, NULL);
#else
InitMayaqua(false, false, 0, NULL);
#endif
// Stop the MS-IME
MsDisableIme();
@ -4740,7 +4744,11 @@ UINT MsService(char *name, SERVICE_FUNCTION *start, SERVICE_FUNCTION *stop, UINT
}
// Start of the Mayaqua
#ifdef DEBUG
InitMayaqua(true, true, 0, NULL);
#else
InitMayaqua(false, false, 0, NULL);
#endif
// Stop the MS-IME
MsDisableIme();