author | Ozkan Sezer |
Thu, 26 Nov 2020 10:47:33 +0300 | |
changeset 14393 | 86796edcae76 |
parent 13422 | fd6a12de91c7 |
child 14640 | b2b3343a310d |
permissions | -rw-r--r-- |
slouken@6091 | 1 |
/* |
slouken@6091 | 2 |
Simple DirectMedia Layer |
slouken@13422 | 3 |
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org> |
slouken@6091 | 4 |
|
slouken@6091 | 5 |
This software is provided 'as-is', without any express or implied |
slouken@6091 | 6 |
warranty. In no event will the authors be held liable for any damages |
slouken@6091 | 7 |
arising from the use of this software. |
slouken@6091 | 8 |
|
slouken@6091 | 9 |
Permission is granted to anyone to use this software for any purpose, |
slouken@6091 | 10 |
including commercial applications, and to alter it and redistribute it |
slouken@6091 | 11 |
freely, subject to the following restrictions: |
slouken@6091 | 12 |
|
slouken@6091 | 13 |
1. The origin of this software must not be misrepresented; you must not |
slouken@6091 | 14 |
claim that you wrote the original software. If you use this software |
slouken@6091 | 15 |
in a product, an acknowledgment in the product documentation would be |
slouken@6091 | 16 |
appreciated but is not required. |
slouken@6091 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
slouken@6091 | 18 |
misrepresented as being the original software. |
slouken@6091 | 19 |
3. This notice may not be removed or altered from any source distribution. |
slouken@6091 | 20 |
*/ |
icculus@8093 | 21 |
#include "../SDL_internal.h" |
slouken@6091 | 22 |
|
slouken@10638 | 23 |
#ifndef SDL_dropevents_c_h_ |
slouken@10638 | 24 |
#define SDL_dropevents_c_h_ |
slouken@6091 | 25 |
|
icculus@10022 | 26 |
extern int SDL_SendDropFile(SDL_Window *window, const char *file); |
icculus@10022 | 27 |
extern int SDL_SendDropText(SDL_Window *window, const char *text); |
icculus@10022 | 28 |
extern int SDL_SendDropComplete(SDL_Window *window); |
slouken@6091 | 29 |
|
slouken@10638 | 30 |
#endif /* SDL_dropevents_c_h_ */ |
slouken@6091 | 31 |
|
slouken@6091 | 32 |
/* vi: set ts=4 sw=4 expandtab: */ |