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

Go to the source code of this file.

Functions

PCHAR GetNextArgumentValue (IN ULONG Argc, IN PCHAR Argv[], IN OUT PULONG LastIndex OPTIONAL, IN PCHAR ArgumentName)
 
PCHAR GetArgumentValue (IN ULONG Argc, IN PCHAR Argv[], IN PCHAR ArgumentName)
 

Function Documentation

◆ GetArgumentValue()

PCHAR GetArgumentValue ( IN ULONG  Argc,
IN PCHAR  Argv[],
IN PCHAR  ArgumentName 
)

Definition at line 41 of file arcsupp.c.

45{
46 return GetNextArgumentValue(Argc, Argv, NULL, ArgumentName);
47}
PCHAR GetNextArgumentValue(IN ULONG Argc, IN PCHAR Argv[], IN OUT PULONG LastIndex OPTIONAL, IN PCHAR ArgumentName)
Definition: arcsupp.c:15
#define NULL
Definition: types.h:112

Referenced by LoadAndBootWindows(), and LoadReactOSSetup().

◆ GetNextArgumentValue()

PCHAR GetNextArgumentValue ( IN ULONG  Argc,
IN PCHAR  Argv[],
IN OUT PULONG LastIndex  OPTIONAL,
IN PCHAR  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 (strlen(Argv[i]) >= ArgNameLen + 1 /* Count the '=' sign */ &&
27 _strnicmp(Argv[i], ArgumentName, ArgNameLen) == 0 &&
28 Argv[i][ArgNameLen] == '=')
29 {
30 /* Found it, return the value */
31 if (LastIndex) *LastIndex = i;
32 return &Argv[i][ArgNameLen + 1];
33 }
34 }
35
36 if (LastIndex) *LastIndex = (ULONG)-1;
37 return NULL;
38}
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().