netapi32/tests: Make some variables static.
This commit is contained in:
parent
d1d1d0205d
commit
7c2de56ccd
|
@ -29,8 +29,8 @@
|
|||
|
||||
#include "wine/test.h"
|
||||
|
||||
WCHAR user_name[UNLEN + 1];
|
||||
WCHAR computer_name[MAX_COMPUTERNAME_LENGTH + 1];
|
||||
static WCHAR user_name[UNLEN + 1];
|
||||
static WCHAR computer_name[MAX_COMPUTERNAME_LENGTH + 1];
|
||||
|
||||
static const WCHAR sNonexistentUser[] = {'N','o','n','e','x','i','s','t','e','n','t',' ',
|
||||
'U','s','e','r',0};
|
||||
|
|
|
@ -39,8 +39,8 @@ static NET_API_STATUS (WINAPI *pNetWkstaUserGetInfo)(LPWSTR,DWORD,PBYTE*)=NULL;
|
|||
static NET_API_STATUS (WINAPI *pNetWkstaTransportEnum)(LPWSTR,DWORD,LPBYTE*,
|
||||
DWORD,LPDWORD,LPDWORD,LPDWORD)=NULL;
|
||||
|
||||
WCHAR user_name[UNLEN + 1];
|
||||
WCHAR computer_name[MAX_COMPUTERNAME_LENGTH + 1];
|
||||
static WCHAR user_name[UNLEN + 1];
|
||||
static WCHAR computer_name[MAX_COMPUTERNAME_LENGTH + 1];
|
||||
|
||||
static int init_wksta_tests(void)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue