mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
- Don't use STATIC
svn path=/trunk/; revision=19441
This commit is contained in:
parent
8136033064
commit
8bebf65a42
2 changed files with 3 additions and 4 deletions
|
@ -1770,7 +1770,7 @@ NTAPI
|
|||
RtlStringFromGUID (IN REFGUID Guid,
|
||||
OUT PUNICODE_STRING GuidString)
|
||||
{
|
||||
STATIC CONST PWCHAR Hex = L"0123456789ABCDEF";
|
||||
static CONST PWCHAR Hex = L"0123456789ABCDEF";
|
||||
WCHAR Buffer[40];
|
||||
PWCHAR BufferPtr;
|
||||
ULONG i;
|
||||
|
|
|
@ -25,7 +25,7 @@ typedef USHORT NODE_TYPE_CODE;
|
|||
|
||||
/* FUNCTIONS ***************************************************************/
|
||||
|
||||
STATIC
|
||||
static
|
||||
ULONG
|
||||
NTAPI
|
||||
ComputeUnicodeNameLength(IN PUNICODE_STRING UnicodeName)
|
||||
|
@ -44,8 +44,7 @@ ComputeUnicodeNameLength(IN PUNICODE_STRING UnicodeName)
|
|||
return NamesFound;
|
||||
}
|
||||
|
||||
|
||||
STATIC
|
||||
static
|
||||
RTL_GENERIC_COMPARE_RESULTS
|
||||
NTAPI
|
||||
CompareUnicodeStrings(IN PUNICODE_STRING Prefix,
|
||||
|
|
Loading…
Reference in a new issue