Advertisement
JademusSreg

New Native Proposals

Sep 17th, 2011
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.71 KB | None | 0 0
  1. // TriggerAddEventTriggerRun
  2. const int c_triggerStageComplete           = -6;
  3. const int c_triggerStagePreempt            = -5;
  4. const int c_triggerStageDestroy             = -4;
  5. const int c_triggerStageExecute            = -3;
  6. const int c_triggerStageQueue              = -2;
  7. const int c_triggerStageAll                = -1;
  8.  
  9. native void TriggerAddEventTriggerRun(trigger t, int runStage);
  10.  
  11. // TriggerAddEventFunctionRun
  12. const string c_functionAny = "";
  13.  
  14. native void TriggerAddEventFunctionRun(trigger t, string inFunction);
  15.  
  16. // TriggerAddEventSignal
  17. const int c_signalAny = 0;
  18.  
  19. native void TriggerAddEventSignal(trigger t, int inSignal);
  20. native bool SignalSend(int inSignal);
  21. native int EventSignal ();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement