r3208 - trunk/data/qcsrc/menu

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Jan 21 04:37:21 EST 2008


Author: kadaverjack
Date: 2008-01-21 04:37:10 -0500 (Mon, 21 Jan 2008)
New Revision: 3208

Modified:
   trunk/data/qcsrc/menu/mbuiltin.qc
Log:
updated mbuiltin.qc for old menu


Modified: trunk/data/qcsrc/menu/mbuiltin.qc
===================================================================
--- trunk/data/qcsrc/menu/mbuiltin.qc	2008-01-21 09:00:03 UTC (rev 3207)
+++ trunk/data/qcsrc/menu/mbuiltin.qc	2008-01-21 09:37:10 UTC (rev 3208)
@@ -4,7 +4,7 @@
 // AK FIXME: Create perhaps a special builtin file for the common cmds
 
 //#define PROFILESTRZONE
-#define FIXEDFOPEN
+//#define FIXEDFOPEN
 
 void 	checkextension(string ext) = #1;
 
@@ -102,12 +102,6 @@
 string	strcat(string s1, ...)  = #53;
 string	substring(string s, float start, float length)  = #54;
 
-float(string str, string sub, float startpos) strstrofs = #221;
-float(string s1, string s2, float len) strncmp = #228;
-float(string s1, string s2) strcasecmp = #229;
-float(string s1, string s2, float len) strncasecmp = #230;
-
-
 vector	stov(string s)  = #55;
 
 #ifdef PROFILESTRZONE
@@ -249,6 +243,22 @@
 void gecko_resize( string name, float w, float h ) = #492;
 vector gecko_get_texture_extent( string name ) = #493;
 
+//FTE_STRINGS
+//idea: many
+//darkplaces implementation: KrimZon
+//description:
+//various string manipulation functions
+float(string str, string sub, float startpos) strstrofs = #221;
+float(string str, float ofs) str2chr = #222;
+string(float c, ...) chr2str = #223;
+string(float ccase, float calpha, float cnum, string s, ...) strconv = #224;
+string(float chars, string s, ...) strpad = #225;
+string(string info, string key, string value, ...) infoadd = #226;
+string(string info, string key) infoget = #227;
+float(string s1, string s2, float len) strncmp = #228;
+float(string s1, string s2) strcasecmp = #229;
+float(string s1, string s2, float len) strncasecmp = #230;
+
 //DP_QC_STRINGBUFFERS
 //idea: ??
 //darkplaces implementation: LordHavoc




More information about the nexuiz-commits mailing list