~ubuntu-branches/ubuntu/karmic/rott/karmic-proposed

« back to all changes in this revision

Viewing changes to rt_dr_a.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabian Greffrath
  • Date: 2008-01-27 20:00:00 UTC
  • mfrom: (1.1.1 upstream) (2.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080127200000-myle9y0099o45sfv
Tags: 1.0+dfsg-2
* debian/patches/01-custom-datapath.dpatch,
  debian/patches/13-improve-makefile.dpatch:
  + Changed DATADIR back to "/usr/share/games/rott/".

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (C) 1994-1995 Apogee Software, Ltd.
 
3
 
 
4
This program is free software; you can redistribute it and/or
 
5
modify it under the terms of the GNU General Public License
 
6
as published by the Free Software Foundation; either version 2
 
7
of the License, or (at your option) any later version.
 
8
 
 
9
This program is distributed in the hope that it will be useful,
 
10
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
12
 
 
13
See the GNU General Public License for more details.
 
14
 
 
15
You should have received a copy of the GNU General Public License
 
16
along with this program; if not, write to the Free Software
 
17
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
18
 
 
19
*/
 
20
#ifndef _rt_dr_a_public
 
21
#define _rt_dr_a_public
 
22
 
 
23
//***************************************************************************
 
24
//
 
25
//    RT_DR_A.ASM - Low level draw stuff, DrawPost
 
26
//
 
27
//***************************************************************************
 
28
 
 
29
void SetMode240(void);
 
30
void RefreshClear(void);
 
31
void DrawPost (int height, char * column, char * buf);
 
32
void  DrawHeightPost (int height, byte * src, byte * buf); // IN rt_dr_a.asm
 
33
void R_DrawWallColumn (byte * buf);
 
34
void  DrawMenuPost (int height, byte * src, byte * buf); // IN rt_dr_a.asm
 
35
void  DrawMapPost (int height, byte * src, byte * buf); // IN rt_dr_a.asm
 
36
 
 
37
#if defined(__WATCOMC__)
 
38
#pragma aux DrawPost parm [ECX] [ESI] [EDI] modify exact [eax ebx ecx edx esi edi]
 
39
#pragma aux DrawHeightPost parm [ECX] [ESI] [EDI] modify exact [eax ebx ecx edx edi]
 
40
#pragma aux R_DrawWallColumn parm [EDI] modify exact [eax ebx ecx edx esi edi]
 
41
#pragma aux DrawMenuPost parm [ECX] [ESI] [EDI] modify exact [eax ebx ecx edx edi]
 
42
#pragma aux DrawMapPost parm [ECX] [ESI] [EDI] modify exact [eax ebx ecx edx edi]
 
43
#endif
 
44
 
 
45
#endif