From c9a0ef71b2ff4ebf71de8e1b7a7db33057468ec4 Mon Sep 17 00:00:00 2001 From: Tomas 'ZeXx86' Jedrzejek Date: Thu, 3 Mar 2011 19:04:31 +0100 Subject: [PATCH] Fixed ZDE build - missing header file --- apps/zde/bitmap.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100755 apps/zde/bitmap.h diff --git a/apps/zde/bitmap.h b/apps/zde/bitmap.h new file mode 100755 index 0000000..96c31a5 --- /dev/null +++ b/apps/zde/bitmap.h @@ -0,0 +1,37 @@ +/* + * ZeX/OS + * Copyright (C) 2010 Tomas 'ZeXx86' Jedrzejek (zexx86@zexos.org) + * + * 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 3 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, see . + */ + + +#ifndef _BITMAP_H +#define _BITMAP_H + +typedef struct { + unsigned short x; + unsigned short y; + unsigned short resx; + unsigned short resy; + + unsigned short posx; + unsigned short posy; + unsigned short sizex; + unsigned short sizey; + + unsigned short *data; +} zbitmap_t; + +#endif -- 2.11.4.GIT