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
ded7028c
Commit
ded7028c
authored
10 years ago
by
DarkGod
Browse files
Options
Downloads
Patches
Plain Diff
test
parent
25686110
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/web-awesomium/web.cpp
+4
-1
4 additions, 1 deletion
src/web-awesomium/web.cpp
src/web-awesomium/web.h
+2
-1
2 additions, 1 deletion
src/web-awesomium/web.h
src/web.c
+1
-1
1 addition, 1 deletion
src/web.c
with
7 additions
and
3 deletions
src/web-awesomium/web.cpp
+
4
−
1
View file @
ded7028c
...
...
@@ -499,6 +499,9 @@ void te4_web_setup(
}
}
void
te4_web_initialize
()
{
void
te4_web_initialize
(
const
char
*
locales
,
const
char
*
pak
)
{
te4_web_init_utils
();
}
void
te4_web_shutdown
()
{
}
This diff is collapsed.
Click to expand it.
src/web-awesomium/web.h
+
2
−
1
View file @
ded7028c
...
...
@@ -29,7 +29,8 @@ WEB_TE4_API void te4_web_setup(
void
(
*
key_mods
)(
bool
*
,
bool
*
,
bool
*
,
bool
*
),
void
(
*
web_instant_js
)(
int
handlers
,
const
char
*
fct
,
int
nb_args
,
WebJsValue
*
args
,
WebJsValue
*
ret
)
);
WEB_TE4_API
void
te4_web_initialize
();
WEB_TE4_API
void
te4_web_initialize
(
const
char
*
locales
,
const
char
*
pak
);
WEB_TE4_API
void
te4_web_shutdown
();
WEB_TE4_API
void
te4_web_do_update
(
void
(
*
cb
)(
WebEvent
*
));
WEB_TE4_API
void
te4_web_new
(
web_view_type
*
view
,
int
w
,
int
h
);
WEB_TE4_API
bool
te4_web_close
(
web_view_type
*
view
);
...
...
This diff is collapsed.
Click to expand it.
src/web.c
+
1
−
1
View file @
ded7028c
...
...
@@ -391,7 +391,7 @@ void te4_web_init(lua_State *L) {
auxiliar_newclass
(
L
,
"web{view}"
,
view_reg
);
luaL_openlib
(
L
,
"core.webview"
,
weblib
,
0
);
lua_pushstring
(
L
,
"kind"
);
lua_pushstring
(
L
,
"
cef3
"
);
lua_pushstring
(
L
,
"
awesomium
"
);
lua_settable
(
L
,
-
3
);
lua_settop
(
L
,
0
);
}
...
...
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