public void RemoveEventHandler(AEEventClass eventClass, AEEventID eventID)
 {
     RemoveEventHandlerForEventClassandEventID(eventClass, eventID);
 }
Example #2
0
		public static extern OSStatus AEBuildAppleEvent (AEEventClass theClass, AEEventID theID, DescType addressType,
			IntPtr addressData, Size addressLength, AEReturnID returnID, AETransactionID transactionID,
			out AppleEvent result, out AEBuildError error, string paramsFmt, __arglist);
Example #3
0
		public static extern AEStreamRef AEStreamCreateEvent (AEEventClass clazz, AEEventID id, DescType targetType,
			IntPtr targetData, Size targetLength, AEReturnID returnID, AETransactionID transactionID);
Example #4
0
		public static extern OSErr AERemoveEventHandler (AEEventClass eventClass, AEEventID eventID,
			AEEventHandlerUPP handler, bool isSysHandler);
Example #5
0
		public static extern OSErr AEGetEventHandler (AEEventClass eventClass, AEEventID eventID,
			out AEEventHandlerUPP handler, out uint handlerRefcon, Boolean isSysHandler);
Example #6
0
		public static extern OSErr AECreateAppleEvent (AEEventClass eventClass, AEEventID eventID, ref AEAddressDesc target,
			AEReturnID returnID, AETransactionID transactionID, out AppleEvent result);
Example #7
0
		public static extern OSErr AEInstallEventHandler (AEEventClass eventClass, AEEventID eventID,
			AEEventHandlerUPP handler, uint handlerRefcon, bool isSysHandler);
Example #8
0
 public static extern OSStatus AEBuildAppleEvent(AEEventClass theClass, AEEventID theID, DescType addressType,
                                                 IntPtr addressData, Size addressLength, AEReturnID returnID, AETransactionID transactionID,
                                                 out AppleEvent result, out AEBuildError error, string paramsFmt, __arglist);
Example #9
0
 public static extern AEStreamRef AEStreamCreateEvent(AEEventClass clazz, AEEventID id, DescType targetType,
                                                      IntPtr targetData, Size targetLength, AEReturnID returnID, AETransactionID transactionID);
Example #10
0
 public static extern OSErr AEGetEventHandler(AEEventClass eventClass, AEEventID eventID,
                                              out AEEventHandlerUPP handler, out uint handlerRefcon, Boolean isSysHandler);
Example #11
0
 public static extern OSErr AERemoveEventHandler(AEEventClass eventClass, AEEventID eventID,
                                                 AEEventHandlerUPP handler, bool isSysHandler);
Example #12
0
 public static extern OSErr AEInstallEventHandler(AEEventClass eventClass, AEEventID eventID,
                                                  AEEventHandlerUPP handler, uint handlerRefcon, bool isSysHandler);
Example #13
0
 public static extern OSErr AECreateAppleEvent(AEEventClass eventClass, AEEventID eventID, ref AEAddressDesc target,
                                               AEReturnID returnID, AETransactionID transactionID, out AppleEvent result);
Example #14
0
 public void RemoveEventHandler(AEEventClass eventClass, AEEventID eventID)
 {
     RemoveEventHandlerForEventClassandEventID (eventClass, eventID);
 }