secur32: Declare a function static.

This commit is contained in:
Andrew Talbot 2009-01-24 13:27:03 +00:00 committed by Alexandre Julliard
parent cdabde7a04
commit 247b7c5a83
2 changed files with 1 additions and 2 deletions

View File

@ -163,7 +163,7 @@ PSecurityFunctionTableW WINAPI InitSecurityInterfaceW(void)
return &securityFunctionTableW;
}
PWSTR SECUR32_strdupW(PCWSTR str)
static PWSTR SECUR32_strdupW(PCWSTR str)
{
PWSTR ret;

View File

@ -115,7 +115,6 @@ SecurePackage *SECUR32_findPackageA(PCSTR packageName);
/* A few string helpers; will return NULL if str is NULL. Free return with
* HeapFree */
PWSTR SECUR32_strdupW(PCWSTR str);
PWSTR SECUR32_AllocWideFromMultiByte(PCSTR str);
PSTR SECUR32_AllocMultiByteFromWide(PCWSTR str);