secur32: Declare a function static.
This commit is contained in:
parent
cdabde7a04
commit
247b7c5a83
|
@ -163,7 +163,7 @@ PSecurityFunctionTableW WINAPI InitSecurityInterfaceW(void)
|
|||
return &securityFunctionTableW;
|
||||
}
|
||||
|
||||
PWSTR SECUR32_strdupW(PCWSTR str)
|
||||
static PWSTR SECUR32_strdupW(PCWSTR str)
|
||||
{
|
||||
PWSTR ret;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue