cabinet/tests: Make some variables static.

This commit is contained in:
Alexandre Julliard 2010-10-01 13:38:58 +02:00
parent 95e095ba31
commit 9a39cb94e4
2 changed files with 3 additions and 3 deletions

View File

@ -55,10 +55,10 @@ typedef struct {
} SESSION;
/* function pointers */
HMODULE hCabinet;
static HMODULE hCabinet;
static HRESULT (WINAPI *pExtract)(SESSION*, LPCSTR);
CHAR CURR_DIR[MAX_PATH];
static CHAR CURR_DIR[MAX_PATH];
static void init_function_pointers(void)
{

View File

@ -28,7 +28,7 @@
#define MEDIA_SIZE 999999999
#define FOLDER_THRESHOLD 900000
CHAR CURR_DIR[MAX_PATH];
static CHAR CURR_DIR[MAX_PATH];
/* FDI callbacks */