Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. "Unhandled exception at 0x7689d161 in FrozenSynapse.exe: 0xC0000005: Access violation writing location 0x00cea1ea."
  2.  
  3. ZeroMemory( &mAIStartupInformation, sizeof(mAIStartupInformation) );
  4. mAIStartupInformation.cb = sizeof(mAIStartupInformation);
  5. ZeroMemory( &mAIProcessInformation, sizeof(mAIProcessInformation) );
  6.  
  7.  
  8. return CreateProcess( NULL,
  9. L"frozenSynapse.exe -dedicated", // Command line
  10. NULL, // Process handle not inheritable
  11. NULL, // Thread handle not inheritable
  12. FALSE, // Set handle inheritance to FALSE
  13. 0, // No creation flags
  14. NULL, // Use parent's environment block
  15. NULL, // Use parent's starting directory
  16. &mAIStartupInformation, // Pointer to STARTUPINFO structure
  17. &mAIProcessInformation ); // Pointer to PROCESS_INFORMATION structure
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement