diff options
| author | Max Horn | 2004-06-25 20:01:31 +0000 | 
|---|---|---|
| committer | Max Horn | 2004-06-25 20:01:31 +0000 | 
| commit | bb3ef09efad34d8263f90cc76fd5de449bf5c722 (patch) | |
| tree | 28cbef15401dd07c22adca40f04fc7f7dfaa416e /saga/reinherit.h | |
| parent | c399ca84860d55f85da13fe480c4ae06fd32f3a2 (diff) | |
| download | scummvm-rg350-bb3ef09efad34d8263f90cc76fd5de449bf5c722.tar.gz scummvm-rg350-bb3ef09efad34d8263f90cc76fd5de449bf5c722.tar.bz2 scummvm-rg350-bb3ef09efad34d8263f90cc76fd5de449bf5c722.zip  | |
Removed unused stuff; cleanup
svn-id: r14052
Diffstat (limited to 'saga/reinherit.h')
| -rw-r--r-- | saga/reinherit.h | 15 | 
1 files changed, 1 insertions, 14 deletions
diff --git a/saga/reinherit.h b/saga/reinherit.h index 896286e21d..af5c1b9bef 100644 --- a/saga/reinherit.h +++ b/saga/reinherit.h @@ -71,14 +71,6 @@ struct R_SURFACE {  #define R_RGB_GREEN 0x0000FF00UL  #define R_RGB_BLUE  0x000000FFUL -struct SAGA_COLOR { -	byte r; -	byte g; -	byte b; -}; - -#define SAGA_COLOR_LEN 3 -  struct PALENTRY {  	byte red;  	byte green; @@ -86,7 +78,6 @@ struct PALENTRY {  };  enum R_ERRORCODE { -	R_STOP = -3,  	R_MEM = -2,  	R_FAILURE = -1,  	R_SUCCESS = 0 @@ -102,7 +93,6 @@ int TRANSITION_Dissolve(byte *dst_img, int dst_w, int dst_h,  #define R_PAL_ENTRIES 256  int GFX_Init(OSystem *system, int width, int height); -R_SURFACE *GFX_GetScreenSurface();  R_SURFACE *GFX_GetBackBuffer();  int GFX_GetWhite();  int GFX_GetBlack(); @@ -113,11 +103,8 @@ int GFX_PalToBlack(R_SURFACE *surface, PALENTRY *src_pal, double percent);  int GFX_BlackToPal(R_SURFACE *surface, PALENTRY *src_pal, double percent);  // System : Input  -int SYSINPUT_Init();  int SYSINPUT_ProcessInput(void); -int SYSINPUT_GetMousePos(int *mouse_x, int *mouse_y); -int SYSINPUT_HideMouse(void); -int SYSINPUT_ShowMouse(void); +R_POINT SYSINPUT_GetMousePos();  } // End of namespace Saga  | 
