Commit 5c4c6544 authored by Alexandre Julliard's avatar Alexandre Julliard

setupapi/tests: Make some variables static.

parent bc8e70c0
...@@ -23,8 +23,8 @@ ...@@ -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 ...@@ -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};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment