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,
|
RtlStringFromGUID (IN REFGUID Guid,
|
||||||
OUT PUNICODE_STRING GuidString)
|
OUT PUNICODE_STRING GuidString)
|
||||||
{
|
{
|
||||||
STATIC CONST PWCHAR Hex = L"0123456789ABCDEF";
|
static CONST PWCHAR Hex = L"0123456789ABCDEF";
|
||||||
WCHAR Buffer[40];
|
WCHAR Buffer[40];
|
||||||
PWCHAR BufferPtr;
|
PWCHAR BufferPtr;
|
||||||
ULONG i;
|
ULONG i;
|
||||||
|
|
|
@ -25,7 +25,7 @@ typedef USHORT NODE_TYPE_CODE;
|
||||||
|
|
||||||
/* FUNCTIONS ***************************************************************/
|
/* FUNCTIONS ***************************************************************/
|
||||||
|
|
||||||
STATIC
|
static
|
||||||
ULONG
|
ULONG
|
||||||
NTAPI
|
NTAPI
|
||||||
ComputeUnicodeNameLength(IN PUNICODE_STRING UnicodeName)
|
ComputeUnicodeNameLength(IN PUNICODE_STRING UnicodeName)
|
||||||
|
@ -44,8 +44,7 @@ ComputeUnicodeNameLength(IN PUNICODE_STRING UnicodeName)
|
||||||
return NamesFound;
|
return NamesFound;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static
|
||||||
STATIC
|
|
||||||
RTL_GENERIC_COMPARE_RESULTS
|
RTL_GENERIC_COMPARE_RESULTS
|
||||||
NTAPI
|
NTAPI
|
||||||
CompareUnicodeStrings(IN PUNICODE_STRING Prefix,
|
CompareUnicodeStrings(IN PUNICODE_STRING Prefix,
|
||||||
|
|
Loading…
Reference in a new issue