ReactOS 0.4.16-dev-937-g7afcd2a
argv_winmain.cpp File Reference
#include <corecrt_internal.h>
#include <mbstring.h>
Include dependency graph for argv_winmain.cpp:

Go to the source code of this file.

Functions

static void do_locale_initialization (unsigned char) throw ()
 
static unsigned charget_command_line (unsigned char) throw ()
 
static wchar_tget_command_line (wchar_t) throw ()
 
static bool __cdecl should_copy_another_character (unsigned char const c) throw ()
 
static bool __cdecl should_copy_another_character (wchar_t) throw ()
 
template<typename Character >
static Character *__cdecl common_wincmdln () throw ()
 
char *__cdecl _get_narrow_winmain_command_line ()
 
wchar_t *__cdecl _get_wide_winmain_command_line ()
 

Variables

static void do_locale_initialization (wchar_t)
 

Function Documentation

◆ _get_narrow_winmain_command_line()

char *__cdecl _get_narrow_winmain_command_line ( void  )

Definition at line 102 of file argv_winmain.cpp.

103{ // Need to use unsigned char so that we correctly handle ASCII characters
104 // above 127, in particular the comparison to ' ' (space - 0x20).
105 return reinterpret_cast<char *>(common_wincmdln<unsigned char>());
106}

Referenced by test__get_narrow_winmain_command_line().

◆ _get_wide_winmain_command_line()

wchar_t *__cdecl _get_wide_winmain_command_line ( void  )

Definition at line 108 of file argv_winmain.cpp.

109{
110 return common_wincmdln<wchar_t>();
111}

◆ common_wincmdln()

template<typename Character >
static Character *__cdecl common_wincmdln ( )
throw (
)
static

Definition at line 68 of file argv_winmain.cpp.

69{
70 do_locale_initialization(Character());
71
72 static Character empty_string[] = { '\0' };
73
74 Character* command_line = get_command_line(Character()) == nullptr
75 ? empty_string
76 : get_command_line(Character());
77
78 // Skip past the program name (the first token in the command line) and
79 // check for and handle a quoted program name:
80 bool in_double_quotes = false;
81 while (*command_line > ' ' || (*command_line != '\0' && in_double_quotes))
82 {
83 // Toggle the in_double_quotes flag if the current character is '"'
84 if (*command_line == '"')
85 in_double_quotes = !in_double_quotes;
86
87 if (should_copy_another_character(*command_line))
88 ++command_line;
89
90 ++command_line;
91 }
92
93 // Skip past any whitespace preceding the next token:
94 while (*command_line != '\0' && *command_line <= ' ')
95 ++command_line;
96
97 return command_line;
98}
static bool __cdecl should_copy_another_character(unsigned char const c)
static unsigned char * get_command_line(unsigned char)
static void do_locale_initialization(wchar_t)

◆ do_locale_initialization()

static void do_locale_initialization ( unsigned char  )
throw (
)
static

Definition at line 18 of file argv_winmain.cpp.

bool __cdecl __acrt_initialize_multibyte(void)
Definition: mbctype.cpp:894

◆ get_command_line() [1/2]

static unsigned char * get_command_line ( unsigned char  )
throw (
)
static

Definition at line 21 of file argv_winmain.cpp.

22{
23 return reinterpret_cast<unsigned char *>(_acmdln);
24}
#define _acmdln

Referenced by common_wincmdln().

◆ get_command_line() [2/2]

static wchar_t * get_command_line ( wchar_t  )
throw (
)
static

Definition at line 26 of file argv_winmain.cpp.

26{ return _wcmdln; }
#define _wcmdln

◆ should_copy_another_character() [1/2]

static bool __cdecl should_copy_another_character ( unsigned char const  c)
throw (
)
static

Definition at line 32 of file argv_winmain.cpp.

33{
34 // This is OK for UTF-8 as a quote is never a trail byte.
35 return _ismbblead(c) != 0;
36}
const GLubyte * c
Definition: glext.h:8905
int __cdecl _ismbblead(unsigned int)
Definition: ismblead.c:20

Referenced by common_wincmdln().

◆ should_copy_another_character() [2/2]

static bool __cdecl should_copy_another_character ( wchar_t  )
throw (
)
static

Definition at line 38 of file argv_winmain.cpp.

39{
40 // This is OK for UTF-16 as a quote is never part of a surrogate pair.
41 return false;
42}

Variable Documentation

◆ do_locale_initialization

void do_locale_initialization(wchar_t) ( wchar_t  )
static

Definition at line 19 of file argv_winmain.cpp.

19{ /* no-op */ }

Referenced by common_wincmdln().