ReactOS 0.4.15-dev-7924-g5949c20
arcsupp.c File Reference
#include <freeldr.h>
Include dependency graph for arcsupp.c:

Go to the source code of this file.

Functions

PSTR GetNextArgumentValue (_In_ ULONG Argc, _In_ PCHAR Argv[], _Inout_opt_ PULONG LastIndex, _In_ PCSTR ArgumentName)
 
PSTR GetArgumentValue (_In_ ULONG Argc, _In_ PCHAR Argv[], _In_ PCSTR ArgumentName)
 

Function Documentation

◆ GetArgumentValue()

PSTR GetArgumentValue ( _In_ ULONG  Argc,
_In_ PCHAR  Argv[],
_In_ PCSTR  ArgumentName 
)

Definition at line 42 of file arcsupp.c.

46{
47 return GetNextArgumentValue(Argc, Argv, NULL, ArgumentName);
48}
PSTR GetNextArgumentValue(_In_ ULONG Argc, _In_ PCHAR Argv[], _Inout_opt_ PULONG LastIndex, _In_ PCSTR ArgumentName)
Definition: arcsupp.c:15
#define NULL
Definition: types.h:112

Referenced by LoadAndBootWindows(), and LoadReactOSSetup().

◆ GetNextArgumentValue()

PSTR GetNextArgumentValue ( _In_ ULONG  Argc,
_In_ PCHAR  Argv[],
_Inout_opt_ PULONG  LastIndex,
_In_ PCSTR  ArgumentName 
)

Definition at line 15 of file arcsupp.c.

20{
21 ULONG i;
22 SIZE_T ArgNameLen = strlen(ArgumentName);
23
24 for (i = (LastIndex ? *LastIndex : 0); i < Argc; ++i)
25 {
26 if (Argv[i] /* NULL pointer is a valid entry in Argv: skip it */ &&
27 (strlen(Argv[i]) >= ArgNameLen + 1 /* Count the '=' sign */) &&
28 (_strnicmp(Argv[i], ArgumentName, ArgNameLen) == 0) &&
29 (Argv[i][ArgNameLen] == '='))
30 {
31 /* Found it, return the value */
32 if (LastIndex) *LastIndex = i;
33 return &Argv[i][ArgNameLen + 1];
34 }
35 }
36
37 if (LastIndex) *LastIndex = (ULONG)-1;
38 return NULL;
39}
ACPI_SIZE strlen(const char *String)
Definition: utclib.c:269
#define _strnicmp(_String1, _String2, _MaxCount)
Definition: compat.h:23
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
ULONG_PTR SIZE_T
Definition: typedefs.h:80
uint32_t ULONG
Definition: typedefs.h:59

Referenced by GetArgumentValue(), and UiShowMessageBoxesInArgv().