96 lines
3.9 KiB
C++
96 lines
3.9 KiB
C++
![]() |
/*
|
|||
|
** Command & Conquer Red Alert(tm)
|
|||
|
** Copyright 2025 Electronic Arts Inc.
|
|||
|
**
|
|||
|
** This program is free software: you can redistribute it and/or modify
|
|||
|
** it under the terms of the GNU General Public License as published by
|
|||
|
** the Free Software Foundation, either version 3 of the License, or
|
|||
|
** (at your option) any later version.
|
|||
|
**
|
|||
|
** This program is distributed in the hope that it will be useful,
|
|||
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
|
** GNU General Public License for more details.
|
|||
|
**
|
|||
|
** You should have received a copy of the GNU General Public License
|
|||
|
** along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
*/
|
|||
|
|
|||
|
/***************************************************************************
|
|||
|
** C O N F I D E N T I A L --- W E S T W O O D A S S O C I A T E S **
|
|||
|
***************************************************************************
|
|||
|
* *
|
|||
|
* Project Name : Part of the WINDOWS Library *
|
|||
|
* *
|
|||
|
* File Name : WINDOWS.H *
|
|||
|
* *
|
|||
|
* Programmer : Barry W. Green *
|
|||
|
* *
|
|||
|
* Start Date : February 16, 1995 *
|
|||
|
* *
|
|||
|
* Last Update : February 16, 1995 [BWG] *
|
|||
|
* *
|
|||
|
*-------------------------------------------------------------------------*
|
|||
|
* Functions: *
|
|||
|
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
|
|||
|
|
|||
|
#ifndef WINDOWS_H
|
|||
|
#define WINDOWS_H
|
|||
|
|
|||
|
/*=========================================================================*/
|
|||
|
/* The following prototypes are for the file: WINHIDE.CPP */
|
|||
|
/*=========================================================================*/
|
|||
|
void Window_Hide_Mouse(int window);
|
|||
|
void Window_Show_Mouse(void);
|
|||
|
|
|||
|
/*=========================================================================*/
|
|||
|
/* The following prototypes are for the file: WINDOWS.CPP */
|
|||
|
/*=========================================================================*/
|
|||
|
void Standard_More_Prompt(char const *prompt, int space, int fcolor, int bcolor);
|
|||
|
void Set_More_Prompt(char const *prompt, int space, int fcolor, int bcolor);
|
|||
|
void Set_More_On(void);
|
|||
|
void Set_More_Off(void);
|
|||
|
int Change_Window(int windnum);
|
|||
|
int Change_New_Window(int windnum);
|
|||
|
void New_Window(void);
|
|||
|
void Window_Int_Print(int num);
|
|||
|
void Window_Print(char const string[], ...);
|
|||
|
|
|||
|
/*
|
|||
|
** The WindowList[][8] array contains the following elements. Use these
|
|||
|
** defines when accessing the WindowList.
|
|||
|
*/
|
|||
|
typedef enum {
|
|||
|
WINDOWX, // X byte position of left edge.
|
|||
|
WINDOWY, // Y pixel position of top edge.
|
|||
|
WINDOWWIDTH, // Width in bytes of the window.
|
|||
|
WINDOWHEIGHT, // Height in pixels of the window.
|
|||
|
WINDOWFCOL, // Default foreground color.
|
|||
|
WINDOWBCOL, // Default background color.
|
|||
|
WINDOWCURSORX, // Current cursor X position (in rows).
|
|||
|
WINDOWCURSORY, // Current cursor Y position (in lines).
|
|||
|
WINDOWPADDING=0x1000
|
|||
|
} WindowIndexType;
|
|||
|
|
|||
|
extern int WindowList[][8];
|
|||
|
extern int WindowColumns;
|
|||
|
extern int WindowLines;
|
|||
|
extern int WindowWidth;
|
|||
|
extern unsigned int WinB;
|
|||
|
extern unsigned int WinC;
|
|||
|
extern unsigned int WinX;
|
|||
|
extern unsigned int WinY;
|
|||
|
extern unsigned int WinCx;
|
|||
|
extern unsigned int WinCy;
|
|||
|
extern unsigned int WinH;
|
|||
|
extern unsigned int WinW;
|
|||
|
extern unsigned int Window;
|
|||
|
|
|||
|
extern int MoreOn;
|
|||
|
extern char *TXT_MoreText;
|
|||
|
|
|||
|
extern void (*Window_More_Ptr)(char const *, int, int, int);
|
|||
|
|
|||
|
#endif //WINDOWS_H
|
|||
|
|
|||
|
|