Changeset 38639 in vbox
- Timestamp:
- Sep 5, 2011 2:04:05 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73846
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/init.cpp
r38638 r38639 92 92 93 93 /** The argument count of the program. */ 94 DECLHIDDEN(int)g_crtArgs = -1;94 static int g_crtArgs = -1; 95 95 /** The arguments of the program (UTF-8). This is "leaked". */ 96 DECLHIDDEN(char **)g_papszrtArgs;96 static char ** g_papszrtArgs; 97 97 /** The original argument vector of the program. */ 98 DECLHIDDEN(char **)g_papszrtOrgArgs;98 static char ** g_papszrtOrgArgs; 99 99 100 100 /**
Note:
See TracChangeset
for help on using the changeset viewer.