- Don't use STATIC

svn path=/trunk/; revision=19441
This commit is contained in:
Alex Ionescu 2005-11-22 00:50:12 +00:00
parent 8136033064
commit 8bebf65a42
2 changed files with 3 additions and 4 deletions

View file

@ -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;

View file

@ -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,