printui: Mark hInstance as static.

This commit is contained in:
Marcus Meissner 2011-05-13 17:47:14 +02:00 committed by Alexandre Julliard
parent 2f2b573259
commit 526cb9c8f6
2 changed files with 1 additions and 7 deletions

View file

@ -38,7 +38,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(printui);
HINSTANCE PRINTUI_hInstance = NULL;
static HINSTANCE PRINTUI_hInstance = NULL;
/* ################################# */

View file

@ -63,10 +63,4 @@ typedef struct tag_context {
LPWSTR options[OPT_MAX];
BOOL flags[FLAG_MAX];
} context_t;
/* ## DLL-wide Globals ## */
extern HINSTANCE PRINTUI_hInstance;
#endif