Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
K'van
Tales of MajEyal
Commits
404ef263
Commit
404ef263
authored
10 years ago
by
DarkGod
Browse files
Options
Downloads
Patches
Plain Diff
update test
parent
8d978da5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/main.c
+3
-0
3 additions, 0 deletions
src/main.c
src/web-cef3/build/windows/build.bat
+4
-0
4 additions, 0 deletions
src/web-cef3/build/windows/build.bat
src/web-cef3/spawn.cpp
+4
-0
4 additions, 0 deletions
src/web-cef3/spawn.cpp
src/web-cef3/web.cpp
+5
-0
5 additions, 0 deletions
src/web-cef3/web.cpp
with
16 additions
and
0 deletions
src/main.c
+
3
−
0
View file @
404ef263
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/web-cef3/build/windows/build.bat
+
4
−
0
View file @
404ef263
...
...
@@ -12,6 +12,8 @@
@set
CXX
=
cl
@set
CXXFLAGS
=
/nologo /MT /O
2
/W
3
/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.
...
...
This diff is collapsed.
Click to expand it.
src/web-cef3/spawn.cpp
+
4
−
0
View file @
404ef263
...
...
@@ -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>
...
...
This diff is collapsed.
Click to expand it.
src/web-cef3/web.cpp
+
5
−
0
View file @
404ef263
...
...
@@ -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
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment