diff options
author | Nicolas Bacca | 2004-05-30 13:13:36 +0000 |
---|---|---|
committer | Nicolas Bacca | 2004-05-30 13:13:36 +0000 |
commit | ba2a4a48c425689cdddb63c65f6baea4c078c8ff (patch) | |
tree | 2320dd1d6faabce7bd73902d58e1b5acf64ad37a | |
parent | 72b01684a7808347bd5a8e9a646cd032318606d4 (diff) | |
download | scummvm-rg350-ba2a4a48c425689cdddb63c65f6baea4c078c8ff.tar.gz scummvm-rg350-ba2a4a48c425689cdddb63c65f6baea4c078c8ff.tar.bz2 scummvm-rg350-ba2a4a48c425689cdddb63c65f6baea4c078c8ff.zip |
Some constants for our new friend, Windows Mobile 2003 SE aka Ozone aka oops we broke GAPI
svn-id: r13902
-rw-r--r-- | backends/wince/ozone.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/backends/wince/ozone.h b/backends/wince/ozone.h new file mode 100644 index 0000000000..4f20a2bff5 --- /dev/null +++ b/backends/wince/ozone.h @@ -0,0 +1,38 @@ +/* ScummVM - Scumm Interpreter + * Copyright (C) 2001-2004 The ScummVM project + * + * 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 2 + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Header$ + * + */ + +#define GETRAWFRAMEBUFFER 0x00020001 + +#define FORMAT_565 1 +#define FORMAT_555 2 +#define FORMAT_OTHER 3 + +typedef struct _RawFrameBufferInfo +{ + WORD wFormat; + WORD wBPP; + VOID *pFramePointer; + int cxStride; + int cyStride; + int cxPixels; + int cyPixels; +} RawFrameBufferInfo; + |