1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-22 03:03:18 +00:00
This commit is contained in:
Bryan Roe
2019-04-23 16:32:53 -07:00
parent 43858fe9ec
commit 4fb189fa87
2 changed files with 7 additions and 0 deletions

View File

@@ -108,6 +108,12 @@ int main(int argc, char **argv)
int retCode = 0;
int capabilities = 0;
STARTUPINFOEX si;
printf("sizeof(STARTUPINFOEX) = %u\n", sizeof(STARTUPINFOEX));
printf("si.StartupInfo.cb = %u\n", (char*)&si.StartupInfo.cb - (char*)&si);
printf("si.lpAttributeList = %u\n", (char*)&si.lpAttributeList - (char*)&si);
#if defined (_POSIX)
#ifndef _NOILIBSTACKDEBUG
char* crashMemory = ILib_POSIX_InstallCrashHandler(argv[0]);