From 4ce6b4e730335f16b5c107c8327a2572a95f7c6d Mon Sep 17 00:00:00 2001 From: black Date: Wed, 5 Dec 2007 22:02:42 +0000 Subject: [PATCH] Add the gecko builtins to csqc, too. (#ifdefed again) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7763 d7cf8633-e32d-0410-b094-e92efae38249 --- clvm_cmds.c | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/clvm_cmds.c b/clvm_cmds.c index 11178bfa..478bcabe 100644 --- a/clvm_cmds.c +++ b/clvm_cmds.c @@ -3239,11 +3239,19 @@ VM_CL_pointsound, // #483 void(vector origin, string sample, float volume, fl VM_strreplace, // #484 string(string search, string replace, string subject) strreplace (DP_QC_STRREPLACE) VM_strireplace, // #485 string(string search, string replace, string subject) strireplace (DP_QC_STRREPLACE) NULL, // #486 -NULL, // #487 -NULL, // #488 -NULL, // #489 -NULL, // #490 -NULL, // #491 +#ifdef SUPPORT_GECKO +VM_gecko_create, // #487 +VM_gecko_destroy, // #488 +VM_gecko_navigate, // #489 +VM_gecko_keyevent, // #490 +VM_gecko_movemouse, // #491 +#else +NULL, // #487 +NULL, // #488 +NULL, // #489 +NULL, // #490 +NULL, // #491 +#endif NULL, // #492 NULL, // #493 NULL, // #494 -- 2.39.2