SDL 2.0
SDL_clipboardevents_c.h File Reference
#include "../SDL_internal.h"
+ Include dependency graph for SDL_clipboardevents_c.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int SDL_SendClipboardUpdate (void)
 

Function Documentation

◆ SDL_SendClipboardUpdate()

int SDL_SendClipboardUpdate ( void  )

Definition at line 31 of file SDL_clipboardevents.c.

32{
33 int posted;
34
35 /* Post the event, if desired */
36 posted = 0;
39 event.type = SDL_CLIPBOARDUPDATE;
40
41 posted = (SDL_PushEvent(&event) > 0);
42 }
43 return (posted);
44}
#define SDL_PushEvent
@ SDL_CLIPBOARDUPDATE
Definition: SDL_events.h:138
#define SDL_GetEventState(type)
Definition: SDL_events.h:772
#define SDL_ENABLE
Definition: SDL_events.h:759
struct _cl_event * event
General event structure.
Definition: SDL_events.h:558

References SDL_CLIPBOARDUPDATE, SDL_ENABLE, SDL_GetEventState, and SDL_PushEvent.