home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD1.bin
/
gnu
/
os-include
/
prefs
/
screenmode.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-15
|
959b
|
51 lines
#ifndef PREFS_SCREENMODE_H
#define PREFS_SCREENMODE_H
/*
** $VER: screenmode.h 38.4 (25.6.92)
** Includes Release 40.15
**
** File format for screen mode preferences
**
** (C) Copyright 1991-1993 Commodore-Amiga, Inc.
** All Rights Reserved
*/
/*****************************************************************************/
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifndef LIBRARIES_IFFPARSE_H
#include <libraries/iffparse.h>
#endif
/*****************************************************************************/
#define ID_SCRM MAKE_ID('S','C','R','M')
struct ScreenModePrefs
{
ULONG smp_Reserved[4];
ULONG smp_DisplayID;
UWORD smp_Width;
UWORD smp_Height;
UWORD smp_Depth;
UWORD smp_Control;
};
/* flags for ScreenModePrefs.smp_Control */
#define SMB_AUTOSCROLL 1
#define SMF_AUTOSCROLL (1<<0)
/*****************************************************************************/
#endif /* PREFS_SCREENMODE_H */