changed "http" to "https" in URLs
[rocksndiamonds.git] / src / events.h
index 1294689fe413128d32eb20d69840261f993aaed8..30a64877dc3b5a4411b5ceb7c2caa4ae60e1dd87 100644 (file)
@@ -4,7 +4,7 @@
 // (c) 1995-2014 by Artsoft Entertainment
 //                         Holger Schemel
 //                 info@artsoft.org
-//                 http://www.artsoft.org/
+//                 https://www.artsoft.org/
 // ----------------------------------------------------------------------------
 // events.h
 // ============================================================================
 
 #include "main.h"
 
+
+#define USEREVENT_NONE                 0
+#define USEREVENT_ANIM_DELAY_ACTION    1
+#define USEREVENT_ANIM_EVENT_ACTION    2
+#define USEREVENT_GADGET_PRESSED       3
+
+
+int FilterMouseMotionEvents(void *, Event *);
 boolean NextValidEvent(Event *);
+void StopProcessingEvents(void);
 
 void EventLoop(void);
 void HandleOtherEvents(Event *);
@@ -32,6 +41,7 @@ void HandlePauseResumeEvent(PauseResumeEvent *);
 boolean HandleKeysDebug(Key, int);
 void HandleKeyEvent(KeyEvent *);
 void HandleDropEvent(Event *);
+void HandleUserEvent(UserEvent *);
 
 void HandleToonAnimations(void);