setupapi/tests: Make some variables static.
This commit is contained in:
parent
bc8e70c089
commit
5c4c6544ae
|
@ -23,8 +23,8 @@
|
||||||
#include <setupapi.h>
|
#include <setupapi.h>
|
||||||
#include "wine/test.h"
|
#include "wine/test.h"
|
||||||
|
|
||||||
CHAR CURR_DIR[MAX_PATH];
|
static CHAR CURR_DIR[MAX_PATH];
|
||||||
CHAR WIN_DIR[MAX_PATH];
|
static CHAR WIN_DIR[MAX_PATH];
|
||||||
|
|
||||||
static void get_directories(void)
|
static void get_directories(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -53,7 +53,7 @@ static BOOL (WINAPI *pStringTableStringFromIdEx)(HSTRING_TABLE, DWORD, LPWST
|
||||||
static VOID (WINAPI *pStringTableTrim)(HSTRING_TABLE);
|
static VOID (WINAPI *pStringTableTrim)(HSTRING_TABLE);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
HMODULE hdll;
|
static HMODULE hdll;
|
||||||
static WCHAR string[] = {'s','t','r','i','n','g',0};
|
static WCHAR string[] = {'s','t','r','i','n','g',0};
|
||||||
static WCHAR String[] = {'S','t','r','i','n','g',0};
|
static WCHAR String[] = {'S','t','r','i','n','g',0};
|
||||||
static WCHAR foo[] = {'f','o','o',0};
|
static WCHAR foo[] = {'f','o','o',0};
|
||||||
|
|
Loading…
Reference in New Issue