ReactOS 0.4.15-dev-8058-ga7cbb60
arcsupp.h
Go to the documentation of this file.
1/*
2 * PROJECT: FreeLoader
3 * LICENSE: MIT (https://spdx.org/licenses/MIT)
4 * PURPOSE: Generic ARC Support Functions
5 * COPYRIGHT: Copyright 2019-2024 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
6 */
7
8#pragma once
9
10typedef
13 _In_ ULONG Argc,
14 _In_ PCHAR Argv[],
15 _In_ PCHAR Envp[]);
16
17PSTR
19 _In_ ULONG Argc,
20 _In_ PCHAR Argv[],
21 _Inout_opt_ PULONG LastIndex,
22 _In_ PCSTR ArgumentName);
23
24PSTR
26 _In_ ULONG Argc,
27 _In_ PCHAR Argv[],
28 _In_ PCSTR ArgumentName);
29
30/* EOF */
#define __cdecl
Definition: accygwin.h:79
ARC_STATUS(__cdecl * ARC_ENTRY_POINT)(_In_ ULONG Argc, _In_ PCHAR Argv[], _In_ PCHAR Envp[])
Definition: arcsupp.h:12
PSTR GetNextArgumentValue(_In_ ULONG Argc, _In_ PCHAR Argv[], _Inout_opt_ PULONG LastIndex, _In_ PCSTR ArgumentName)
Definition: arcsupp.c:15
PSTR GetArgumentValue(_In_ ULONG Argc, _In_ PCHAR Argv[], _In_ PCSTR ArgumentName)
Definition: arcsupp.c:42
#define _Inout_opt_
Definition: ms_sal.h:379
#define _In_
Definition: ms_sal.h:308
ULONG ARC_STATUS
Definition: arc.h:4
uint32_t * PULONG
Definition: typedefs.h:59
char * PSTR
Definition: typedefs.h:51
const char * PCSTR
Definition: typedefs.h:52
uint32_t ULONG
Definition: typedefs.h:59
char * PCHAR
Definition: typedefs.h:51