aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/window.h
diff options
context:
space:
mode:
authorStrangerke2012-05-14 07:43:50 +0200
committerStrangerke2012-05-14 07:43:50 +0200
commit099fe1e9e62ada666a312e08d7dca5cd2083de0b (patch)
treee8682ebbe2ae2fd8bc9d7bd1187fe54200877a37 /engines/tony/window.h
parentcf3d2cd3562a6d30690f6e8acb8fb4f17739fa35 (diff)
downloadscummvm-rg350-099fe1e9e62ada666a312e08d7dca5cd2083de0b.tar.gz
scummvm-rg350-099fe1e9e62ada666a312e08d7dca5cd2083de0b.tar.bz2
scummvm-rg350-099fe1e9e62ada666a312e08d7dca5cd2083de0b.zip
TONY: Remove original header
Diffstat (limited to 'engines/tony/window.h')
-rw-r--r--engines/tony/window.h39
1 files changed, 10 insertions, 29 deletions
diff --git a/engines/tony/window.h b/engines/tony/window.h
index 56f48d7698..ea26df3920 100644
--- a/engines/tony/window.h
+++ b/engines/tony/window.h
@@ -19,31 +19,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
-/**************************************************************************
- * 様様様様様様様様様様様様様様様様様 *
- * Nayma Software srl *
- * e -= We create much MORE than ALL =- *
- * u- z$$$c '. 様様様様様様様様様様様様様様様様様 *
- * .d" d$$$$$b "b. *
- * .z$* d$$$$$$$L ^*$c. *
- * #$$$. $$$$$$$$$ .$$$" Project: Roasted Moths........ *
- * ^*$b 4$$$$$$$$$F .d$*" *
- * ^$$. 4$$$$$$$$$F .$P" Module: Window.HPP........... *
- * *$. '$$$$$$$$$ 4$P 4 *
- * J *$ "$$$$$$$" $P r Author: Giovanni Bajo........ *
- * z$ '$$$P*4c.*$$$*.z@*R$$$ $. *
- * z$" "" #$F^ "" '$c Desc: Classi per la gestione *
- * z$$beu .ue=" $ "=e.. .zed$$c di una finestra Direct
- * "#$e z$*" . `. ^*Nc e$"" Draw................. *
- * "$$". .r" ^4. .^$$" ..................... *
- * ^.@*"6L=\ebu^+C$"*b." *
- * "**$. "c 4$$$ J" J$P*" OS: [ ] DOS [X] WIN95 [ ] PORT *
- * ^"--.^ 9$" .--"" COMP: [ ] WATCOM [X] VISUAL C++ *
- * " [ ] EIFFEL [ ] GCC/GXX/DJGPP *
- * *
- * This source code is Copyright (C) Nayma Software. ALL RIGHTS RESERVED *
- * *
- **************************************************************************/
+
+/*
+ * This code is based on original Tony Tough source code
+ *
+ * Copyright (c) 1997-2003 Nayma Software
+ */
#ifndef TONY_WINDOW_H
#define TONY_WINDOW_H
@@ -60,18 +41,18 @@ struct DDSURFACEDESC {
class RMSnapshot {
private:
- // Buffer per la creazione dei path
+ // Buffer used to create a path
static char bufDrive[MAX_DRIVE], bufDir[MAX_DIR], bufName[MAX_FNAME], bufExt[MAX_EXT];
static char filename[512];
- // Buffer per la conversione a RGB
+ // Buffer used to convert a RGB
static byte rgb[RM_SX * RM_SY * 3];
private:
bool GetFreeSnapName(char *fn);
public:
- // Prende uno screenshot
+ // Take a screenshot
void GrabScreenshot(byte *lpBuf, int dezoom = 1, uint16 *lpDestBuf = NULL);
};
@@ -105,7 +86,7 @@ public:
RMWindow();
~RMWindow();
- // Inizializzazione
+ // Initialization
void Init(/*HINSTANCE hInst*/);
void InitDirectDraw(void);
void Close(void);