Skip to content
Snippets Groups Projects
Commit 404ef263 authored by DarkGod's avatar DarkGod
Browse files

update test

parent 8d978da5
No related branches found
No related tags found
No related merge requests found
......@@ -1522,8 +1522,11 @@ int main(int argc, char *argv[])
printf("Terminating!\n");
te4_web_terminate();
printf("Webcore shutdown complete\n");
SDL_Quit();
printf("SDL shutdown complete\n");
deinit_openal();
printf("OpenAL shutdown complete\n");
printf("Thanks for having fun!\n");
#ifdef SELFEXE_WINDOWS
......
......@@ -12,6 +12,8 @@
@set CXX=cl
@set CXXFLAGS=/nologo /MT /O2 /W3 /D_CRT_SECURE_NO_DEPRECATE /EHsc /DSELFEXE_WINDOWS
@rem @set CXXFLAGS=/nologo /MT /Od /Zi /Wall /D_CRT_SECURE_NO_DEPRECATE /EHsc
@set SPAWNNAME=cef3spawn.exe
@set SPAWN_C=spawn.cpp
@set DLLNAME=te4-web.dll
@set LIBNAME=te4-web.lib
@set TE4_WEB_C=web.cpp web-utils.cpp
......@@ -20,6 +22,8 @@
%CXX% %CXXFLAGS% /LD /Fe%DLLNAME% %TE4_WEB_INCLUDES% %TE4_WEB_C% %TE4_WEB_LIBS%
%CXX% %CXXFLAGS% /Fe%SPAWNNAME% %TE4_WEB_INCLUDES% %SPAWN_C% %TE4_WEB_LIBS%
@if errorlevel 1 goto :COMPILATION_ERROR
@rem All done.
......
......@@ -19,6 +19,10 @@
darkgod@te4.org
*/
#ifdef _WIN32
#pragma comment(linker, "/SUBSYSTEM:windows /ENTRY:mainCRTStartup")
#endif
extern "C" {
#include "web-external.h"
#include <stdio.h>
......
......@@ -870,7 +870,9 @@ void te4_web_shutdown() {
all[it->first] = it->second;
}
fprintf(logfile, "[WEBCORE] Sending kill to all browsers (%d)\n", all_browsers_nb);
for (std::map<BrowserClient*, bool>::iterator it=all.begin(); it != all.end(); ++it) {
fprintf(logfile, "[WEBCORE] Sending kill to a browser (crash status %d)\n", it->first->opaque->crashed);
if (!it->first->opaque->crashed) {
it->first->browser->GetHost()->CloseBrowser(true);
}
......@@ -880,7 +882,10 @@ void te4_web_shutdown() {
CefDoMessageLoopWork();
fprintf(logfile, "Waiting browsers to close: %d left\n", all_browsers.size());
}
fprintf(logfile, "[WEBCORE] all browsers dead, shutting down\n");
CefShutdown();
fprintf(logfile, "[WEBCORE] all browsers dead, shutdown completed\n");
fclose(logfile);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment