예제 #1
0
파일: SDLI.cs 프로젝트: razorware/netcore
 internal static extern byte SDL_EventState(SDL_EVENTTYPE type, int state);
예제 #2
0
파일: SDLI.cs 프로젝트: razorware/netcore
 /// <summary>
 /// TODO: Move out of interface
 /// Get the state of an event
 /// </summary>
 /// <param name="type"></param>
 /// <returns></returns>
 public static byte SDL_GetEventState(SDL_EVENTTYPE type)
 {
     return(SDL_EventState(type, SDL_QUERY));
 }
예제 #3
0
파일: SDLI.cs 프로젝트: razorware/netcore
 internal static extern void SDL_FlushEvents(SDL_EVENTTYPE min, SDL_EVENTTYPE max);
예제 #4
0
파일: SDLI.cs 프로젝트: razorware/netcore
 internal static extern void SDL_FlushEvent(SDL_EVENTTYPE type);
예제 #5
0
파일: SDLI.cs 프로젝트: razorware/netcore
 internal static extern SDL_BOOL SDL_HasEvents(SDL_EVENTTYPE minType, SDL_EVENTTYPE maxType);
예제 #6
0
파일: SDLI.cs 프로젝트: razorware/netcore
 internal static extern SDL_BOOL SDL_HasEvent(SDL_EVENTTYPE type);
예제 #7
0
파일: SDLI.cs 프로젝트: razorware/netcore
 internal static extern int SDL_PeepEvents([Out()][MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 1)] SDL_Event[] events,
                                           int numevents, SDL_EVENTACTION action, SDL_EVENTTYPE minType, SDL_EVENTTYPE maxType);