/*---------------------------------------------------------------------------- | | global.c | ---------------------------------------------------------------------------*/ #include "precomp.h" #include "demo.h" // Global variables. const L_TCHAR g_szTitle[] = TEXT("Vector Demo"); const L_TCHAR g_szFrameClass[] = TEXT("Lead_Vector_Demo_Frame"); const L_TCHAR g_szChildClass[] = TEXT("Lead_Vector_Demo_Child"); HINSTANCE g_hInstance = NULL; HWND g_hWndFrame = NULL; HWND g_hWndClient = NULL; HWND g_hWndStatus = NULL; HMENU g_hMenuFrame = NULL; HMENU g_hMenuFrameWindow = NULL; HMENU g_hMenuChild = NULL; HMENU g_hMenuChildWindow = NULL; L_BOOL g_bViewOnly = FALSE; L_BOOL g_bIsToolBarVisible = TRUE; /* EOF ----------------------------------------------------------------------*/