[SETUPLIB] Code formatting.

svn path=/branches/setup_improvements/; revision=75631
svn path=/branches/setup_improvements/; revision=75652
This commit is contained in:
Hermès Bélusca-Maïto 2017-08-20 21:02:24 +00:00
parent c8d37c1a0d
commit 1ae3efd738
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -31,6 +31,8 @@
#include <debug.h> #include <debug.h>
/* TYPEDEFS *****************************************************************/
/* Supported adapter types */ /* Supported adapter types */
typedef enum _ADAPTER_TYPE typedef enum _ADAPTER_TYPE
{ {
@ -109,7 +111,7 @@ const PCWSTR PeripheralTypes_U[] =
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
PCSTR /* static */ PCSTR
ArcGetNextTokenA( ArcGetNextTokenA(
IN PCSTR ArcPath, IN PCSTR ArcPath,
OUT PANSI_STRING TokenSpecifier, OUT PANSI_STRING TokenSpecifier,
@ -170,7 +172,7 @@ ArcGetNextTokenA(
return ++p; return ++p;
} }
PCWSTR static PCWSTR
ArcGetNextTokenU( ArcGetNextTokenU(
IN PCWSTR ArcPath, IN PCWSTR ArcPath,
OUT PUNICODE_STRING TokenSpecifier, OUT PUNICODE_STRING TokenSpecifier,
@ -234,7 +236,7 @@ ArcGetNextTokenU(
} }
ULONG /* static */ ULONG
ArcMatchTokenA( ArcMatchTokenA(
IN PCSTR CandidateToken, IN PCSTR CandidateToken,
IN const PCSTR* TokenTable) IN const PCSTR* TokenTable)
@ -249,7 +251,7 @@ ArcMatchTokenA(
return Index; return Index;
} }
ULONG /* static */ ULONG
ArcMatchTokenU( ArcMatchTokenU(
IN PCWSTR CandidateToken, IN PCWSTR CandidateToken,
IN const PCWSTR* TokenTable) IN const PCWSTR* TokenTable)
@ -264,7 +266,7 @@ ArcMatchTokenU(
return Index; return Index;
} }
ULONG static ULONG
ArcMatchToken_UStr( ArcMatchToken_UStr(
IN PCUNICODE_STRING CandidateToken, IN PCUNICODE_STRING CandidateToken,
IN const PCWSTR* TokenTable) IN const PCWSTR* TokenTable)