/****************************************************************
*								*
*		"TUNA.H"					*
*		"01/05/1987	20:40:40"	(Modified)	*
*		"01/05/1987	15:53:11"	(Created)	*
*		"11/19/1986	12:38:37"	(Based On)	*
*	Copyright (C) 1986, Alan Cooper - All Rights Reserved.	*
*								*
*	Equates and Public Definitions for Tuna.		*
*								*
*****************************************************************/
/* The Application: */
#define ICON_APPLICATION	10	/* the application icon */
#define MENU_MAIN		100	/* the main menu id */
/* The main window: */
#define WNDNAME_MAIN		"tuna_main"
#define WNDSTYLE_MAIN		(WS_TILEDWINDOW | WS_VISIBLE | \
				WS_VSCROLL | WS_HSCROLL)
/****************************************************************
*								*
*	Public Variables for TUNA system.			*
*								*
*****************************************************************/
struct TUNA_PUBLICS
{
	HANDLE inst;		/* handle for this instance */
	HANDLE previnst;	/* handle for previous instance */
	WORD state;		/* current display state (nCmdShow) */
	struct
	{
	  HICON application;
	} icon;
	struct
	{
	  HCURSOR arrow;
	} cursor;
	struct
	{
	  HWND main;
	} wnd;			/* window handles */
	struct
	{
	  HANDLE White;
	} hBrush;		/* brush handles */
};
EXTERN struct TUNA_PUBLICS pub;


/****************************************************************
*								*
*	Menu Commands.						*
*								*
*****************************************************************/
#define CMD_COAP_MAIN_BG		501
#define CMD_COSY_DESKTOP		601
#define CMD_COSY_SCROLLBAR		602
#define CMD_COSY_ACTIVECAPTION		603
#define CMD_COSY_INACTIVECAPTION	604
#define CMD_COSY_MENU			605
#define CMD_COSY_WINDOW			606
#define CMD_COSY_WINDOWFRAME		607
#define CMD_COSY_MENUTEXT		608
#define CMD_COSY_WINDOWTEXT		609
#define CMD_COSY_CAPTIONTEXT		610

#define STR_COAP_MAIN_BG		501
#define STR_COSY_DESKTOP		601
#define STR_COSY_SCROLLBAR		602
#define STR_COSY_ACTIVECAPTION		603
#define STR_COSY_INACTIVECAPTION	604
#define STR_COSY_MENU			605
#define STR_COSY_WINDOW			606
#define STR_COSY_WINDOWFRAME		607
#define STR_COSY_MENUTEXT		608
#define STR_COSY_WINDOWTEXT		609
#define STR_COSY_CAPTIONTEXT		610
