1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/src/video/windows/SDL_windowsshape.h Thu Jan 20 18:04:05 2011 -0800
1.3 @@ -0,0 +1,41 @@
1.4 +/*
1.5 + SDL - Simple DirectMedia Layer
1.6 + Copyright (C) 2010 Eli Gottlieb
1.7 +
1.8 + This library is free software; you can redistribute it and/or
1.9 + modify it under the terms of the GNU Lesser General Public
1.10 + License as published by the Free Software Foundation; either
1.11 + version 2.1 of the License, or (at your option) any later version.
1.12 +
1.13 + This library is distributed in the hope that it will be useful,
1.14 + but WITHOUT ANY WARRANTY; without even the implied warranty of
1.15 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1.16 + Lesser General Public License for more details.
1.17 +
1.18 + You should have received a copy of the GNU Lesser General Public
1.19 + License along with this library; if not, write to the Free Software
1.20 + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1.21 +
1.22 + Eli Gottlieb
1.23 + eligottlieb@gmail.com
1.24 +*/
1.25 +
1.26 +#include "SDL_config.h"
1.27 +
1.28 +#ifndef _SDL_windowsshape_h
1.29 +#define _SDL_windowsshape_h
1.30 +
1.31 +#include "SDL_video.h"
1.32 +#include "SDL_shape.h"
1.33 +#include "../SDL_sysvideo.h"
1.34 +#include "../SDL_shape_internals.h"
1.35 +
1.36 +typedef struct {
1.37 + SDL_ShapeTree *mask_tree;
1.38 +} SDL_ShapeData;
1.39 +
1.40 +extern SDL_WindowShaper* Win32_CreateShaper(SDL_Window * window);
1.41 +extern int Win32_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shape_mode);
1.42 +extern int Win32_ResizeWindowShape(SDL_Window *window);
1.43 +
1.44 +#endif /* _SDL_windowsshape_h */