home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Loisirs 18
/
cd.iso
/
PLANETE
/
MUDWIN
/
SOURCE.ZIP
/
GLOBAL.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-09-05
|
2KB
|
56 lines
//
// MODULE Global.c
//
// PURPOSE Global variables for the Windows Mud Player
//
// FUNCTIONS None
//
#include "defcon.h"
#include "global.h"
#pragma hdrstop
/* note when we were last compiled */
TS(Global)
char szTools[] = "ToolBar:MudWin"; // Class name for tool bar
char szEdit[] = "Edit:MudWin"; // Class name for edit control
char szCombo[] = "Combo:MudWin"; // Class name for combobox ctrl */
char szYesNo[] = "YesNo:MudWin"; // Class name for Yes/No ctrl */
char szStat[] = "Status:MudWin"; // Class name for status line */
char szFrame[] = "Frame:MudWin"; // Class name for "frame" window */
char szPlayer[] = "Player:MudWin"; // Class name for MDI window */
UINT uFindReplaceMsg; // FindReplace message id
WNDPROC gComboProc;
WNDPROC gEditProc;
HANDLE hInst; /* Program instance handle */
HANDLE hAbout; /* Modeless About... box handle */
HANDLE hAccel; /* Main accelerator resource */
LONG styleDefault = WS_MAXIMIZE; /* Default style bits for players */
WORD wFlags = SHOW_INITIAL;
HWND hMainWnd; // Handle to main window
HWND hClient; // Handle to MDI client
HWND hActive; // Handle to currently activated child
HWND hActiveEdit; // Handle to edit control
HWND hYesNo;
HWND hCmdLine;
HWND hStatBar;
HWND hToolBar;
HANDLE hinstCtl3d;
FARPROC lpfnCtl3dRegister;
FARPROC lpfnCtl3dAutoSubclass;
FARPROC lpfnCtl3dColorChange;
FARPROC lpfnCtl3dUnregister;
char szFindWhat[128];/* search string */
LPSTR lpszWinSockDesc;
int iPrinter; /* level of printing capability */
HBRUSH hbrHilite, hbrNormal, hbrShadow;
int tmWidth, tmHeight, tmHt5, tmHt6, tmHt7, tmHt8;
COLORREF aclrCustom[16];