author | Sam Lantinga |
Sun, 01 Jan 2017 18:33:28 -0800 | |
changeset 10737 | 3406a0f8b041 |
parent 9998 | f67cf37e9cd4 |
child 11382 | 2c50e79b19e0 |
permissions | -rw-r--r-- |
eligottlieb@4797 | 1 |
/* |
slouken@5535 | 2 |
Simple DirectMedia Layer |
slouken@10737 | 3 |
Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org> |
eligottlieb@4797 | 4 |
|
slouken@5535 | 5 |
This software is provided 'as-is', without any express or implied |
slouken@5535 | 6 |
warranty. In no event will the authors be held liable for any damages |
slouken@5535 | 7 |
arising from the use of this software. |
eligottlieb@4797 | 8 |
|
slouken@5535 | 9 |
Permission is granted to anyone to use this software for any purpose, |
slouken@5535 | 10 |
including commercial applications, and to alter it and redistribute it |
slouken@5535 | 11 |
freely, subject to the following restrictions: |
eligottlieb@4797 | 12 |
|
slouken@5535 | 13 |
1. The origin of this software must not be misrepresented; you must not |
slouken@5535 | 14 |
claim that you wrote the original software. If you use this software |
slouken@5535 | 15 |
in a product, an acknowledgment in the product documentation would be |
slouken@5535 | 16 |
appreciated but is not required. |
slouken@5535 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
slouken@5535 | 18 |
misrepresented as being the original software. |
slouken@5535 | 19 |
3. This notice may not be removed or altered from any source distribution. |
eligottlieb@4797 | 20 |
*/ |
eligottlieb@4797 | 21 |
|
icculus@8093 | 22 |
#include "../../SDL_internal.h" |
eligottlieb@4797 | 23 |
|
slouken@5062 | 24 |
#ifndef _SDL_windowsshape_h |
slouken@5062 | 25 |
#define _SDL_windowsshape_h |
eligottlieb@4797 | 26 |
|
eligottlieb@4797 | 27 |
#include "SDL_video.h" |
eligottlieb@4797 | 28 |
#include "SDL_shape.h" |
eligottlieb@4797 | 29 |
#include "../SDL_sysvideo.h" |
eligottlieb@4813 | 30 |
#include "../SDL_shape_internals.h" |
eligottlieb@4797 | 31 |
|
eligottlieb@4797 | 32 |
typedef struct { |
slouken@7191 | 33 |
SDL_ShapeTree *mask_tree; |
eligottlieb@4797 | 34 |
} SDL_ShapeData; |
eligottlieb@4797 | 35 |
|
eligottlieb@4797 | 36 |
extern SDL_WindowShaper* Win32_CreateShaper(SDL_Window * window); |
egottlieb@4849 | 37 |
extern int Win32_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shape_mode); |
eligottlieb@4797 | 38 |
extern int Win32_ResizeWindowShape(SDL_Window *window); |
eligottlieb@4797 | 39 |
|
slouken@5062 | 40 |
#endif /* _SDL_windowsshape_h */ |