public void RemoveEventHandler(AEEventClass eventClass, AEEventID eventID)
 {
     RemoveEventHandlerForEventClassandEventID(eventClass, eventID);
 }
Esempio n. 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);
Esempio n. 3
0
		public static extern AEStreamRef AEStreamCreateEvent (AEEventClass clazz, AEEventID id, DescType targetType,
			IntPtr targetData, Size targetLength, AEReturnID returnID, AETransactionID transactionID);
Esempio n. 4
0
		public static extern OSErr AERemoveEventHandler (AEEventClass eventClass, AEEventID eventID,
			AEEventHandlerUPP handler, bool isSysHandler);
Esempio n. 5
0
		public static extern OSErr AEGetEventHandler (AEEventClass eventClass, AEEventID eventID,
			out AEEventHandlerUPP handler, out uint handlerRefcon, Boolean isSysHandler);
Esempio n. 6
0
		public static extern OSErr AECreateAppleEvent (AEEventClass eventClass, AEEventID eventID, ref AEAddressDesc target,
			AEReturnID returnID, AETransactionID transactionID, out AppleEvent result);
Esempio n. 7
0
		public static extern OSErr AEInstallEventHandler (AEEventClass eventClass, AEEventID eventID,
			AEEventHandlerUPP handler, uint handlerRefcon, bool isSysHandler);
Esempio n. 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);
Esempio n. 9
0
 public static extern AEStreamRef AEStreamCreateEvent(AEEventClass clazz, AEEventID id, DescType targetType,
                                                      IntPtr targetData, Size targetLength, AEReturnID returnID, AETransactionID transactionID);
Esempio n. 10
0
 public static extern OSErr AEGetEventHandler(AEEventClass eventClass, AEEventID eventID,
                                              out AEEventHandlerUPP handler, out uint handlerRefcon, Boolean isSysHandler);
Esempio n. 11
0
 public static extern OSErr AERemoveEventHandler(AEEventClass eventClass, AEEventID eventID,
                                                 AEEventHandlerUPP handler, bool isSysHandler);
Esempio n. 12
0
 public static extern OSErr AEInstallEventHandler(AEEventClass eventClass, AEEventID eventID,
                                                  AEEventHandlerUPP handler, uint handlerRefcon, bool isSysHandler);
Esempio n. 13
0
 public static extern OSErr AECreateAppleEvent(AEEventClass eventClass, AEEventID eventID, ref AEAddressDesc target,
                                               AEReturnID returnID, AETransactionID transactionID, out AppleEvent result);
Esempio n. 14
0
 public void RemoveEventHandler(AEEventClass eventClass, AEEventID eventID)
 {
     RemoveEventHandlerForEventClassandEventID (eventClass, eventID);
 }