Beispiel #1
0
 public static extern OSErr AECallObjectAccessor(DescType desiredClass, ref AEDesc containerToken,
                                                 DescType containerClass, DescType keyForm, ref AEDesc keyData, ref AEDesc token);
Beispiel #2
0
		public static extern Size AEGetDescDataSize (ref AEDesc desc);
Beispiel #3
0
		public static extern OSStatus AEPrintDescToHandle (ref AEDesc desc, out IntPtr resultHandle);
Beispiel #4
0
		public static extern OSErr AEGetKeyDesc (ref AERecord record, AEKeyword keyword, DescType desiredType,
			out AEDesc result);
Beispiel #5
0
		public static extern Size SizeOfFlattenedDesc (ref AEDesc desc);
Beispiel #6
0
		public static extern OSErr AECreateDesc (DescType typeCode, IntPtr dataPtr, Size dataSize, out AEDesc result);
Beispiel #7
0
		public static extern OSErr AEPutDesc (ref AEDescList descList, Index index, out AEDesc desc);
Beispiel #8
0
 public static extern OSErr AECreateDesc(DescType typeCode, IntPtr dataPtr, Size dataSize, out AEDesc result);
Beispiel #9
0
 public static extern OSErr AEDisposeDesc(ref AEDesc desc);
Beispiel #10
0
 public static extern OSErr CreateObjSpecifier(DescType desiredClass, ref AEDesc theContainer,
                                               DescType keyForm, ref AEDesc keyData, bool disposeInputs, out AEDesc objSpecifier);
Beispiel #11
0
 public static extern OSErr CreateRangeDescriptor(ref AEDesc rangeStart, ref AEDesc rangeStop,
                                                  bool disposeInputs, out AEDesc theDescriptor);
Beispiel #12
0
 public static extern OSErr CreateLogicalDescriptor(ref AEDescList theLogicalTerms,
                                                    DescType theLogicOperator, bool disposeInputs, out AEDesc theDescriptor);
Beispiel #13
0
 public static extern OSErr CreateCompDescriptor(DescType comparisonOperator, ref AEDesc operand1,
                                                 ref AEDesc operand2, bool disposeInputs, out AEDesc theDescriptor);
Beispiel #14
0
 public static extern OSErr CreateOffsetDescriptor(Index theOffset, out AEDesc theDescriptor);
Beispiel #15
0
		public static extern OSErr CreateObjSpecifier (DescType desiredClass, ref AEDesc theContainer,
			DescType keyForm, ref AEDesc keyData, bool disposeInputs, out AEDesc objSpecifier);
Beispiel #16
0
 public static extern OSErr AEDuplicateDesc(ref AEDesc desc, out AEDesc result);
Beispiel #17
0
		public static extern OSErr CreateRangeDescriptor (ref AEDesc rangeStart, ref AEDesc rangeStop,
			bool disposeInputs, out AEDesc theDescriptor);
Beispiel #18
0
 public static extern OSStatus AECreateDescFromExternalPtr(OSType descriptorType, IntPtr dataPtr, Size dataLength,
                                                           AEDisposeExternalUPP disposeCallback, uint disposeRefcon, out AEDesc result);
Beispiel #19
0
		public static extern OSErr AEDuplicateDesc (ref AEDesc desc, out AEDesc result);
Beispiel #20
0
 public static extern OSErr AEPutDesc(ref AEDescList descList, Index index, out AEDesc desc);
Beispiel #21
0
		public static extern bool AECheckIsRecord (ref AEDesc desc);
Beispiel #22
0
 public static extern OSErr AEGetNthDesc(ref AEDescList descList, Index index, DescType desiredType,
                                         ref AEKeyword keyword, out AEDesc result);
Beispiel #23
0
		public static extern OSErr AEGetAttributeDesc (ref AppleEvent evt, AEKeyword keyword, DescType desiredType,
			out AEDesc result);
Beispiel #24
0
 public static extern bool AECheckIsRecord(ref AEDesc desc);
Beispiel #25
0
		public static extern OSStatus AEUnflattenDesc (IntPtr buffer, out AEDesc result);
Beispiel #26
0
 public static extern OSErr AEPutKeyDesc(ref AERecord record, AEKeyword keyword, ref AEDesc desc);
Beispiel #27
0
		public static extern OSStatus AEGetDescDataRange (ref AEDesc dataDesc, IntPtr buffer, Size offset, Size length);
Beispiel #28
0
 public static extern OSErr AEGetKeyDesc(ref AERecord record, AEKeyword keyword, DescType desiredType,
                                         out AEDesc result);
Beispiel #29
0
		public static extern OSStatus AEStreamWriteAEDesc (AEStreamRef streamRef, ref AEDesc desc);
Beispiel #30
0
 public static extern OSErr AEPutParamDesc(ref AppleEvent evt, AEKeyword keyword, ref AEDesc desc);
Beispiel #31
0
		public static extern OSErr CreateLogicalDescriptor (ref AEDescList theLogicalTerms,
			DescType theLogicOperator, bool disposeInputs, out AEDesc theDescriptor);
Beispiel #32
0
 public static extern OSErr AEGetAttributeDesc(ref AppleEvent evt, AEKeyword keyword, DescType desiredType,
                                               out AEDesc result);
Beispiel #33
0
		public static extern void AEInitializeDesc (ref AEDesc desc);
Beispiel #34
0
 public static extern OSErr AEPutAttributeDesc(ref AppleEvent evt, AEKeyword keyword, ref AEDesc desc);
Beispiel #35
0
		public static void AEInitializeDescInline (ref AEDesc desc)
		{
			desc.descriptorType = (int) AEDescriptorType.Null;
			desc.dataHandle = IntPtr.Zero;
		}
Beispiel #36
0
 public static extern Size SizeOfFlattenedDesc(ref AEDesc desc);
Beispiel #37
0
		public static extern OSErr AEDisposeDesc (ref AEDesc desc);
Beispiel #38
0
 public static extern OSStatus AEFlattenDesc(ref AEDesc desc, IntPtr buffer, Size bufferSize, out Size actualSize);
Beispiel #39
0
		public static extern OSStatus AECreateDescFromExternalPtr (OSType descriptorType, IntPtr dataPtr, Size dataLength,
			AEDisposeExternalUPP disposeCallback, uint disposeRefcon, out AEDesc result);
Beispiel #40
0
 public static extern OSStatus AEUnflattenDesc(IntPtr buffer, out AEDesc result);
Beispiel #41
0
		public static extern OSErr AEGetNthDesc (ref AEDescList descList, Index index, DescType desiredType,
			ref AEKeyword keyword, out AEDesc result);
Beispiel #42
0
 public static extern OSErr AEGetDescData(ref AEDesc desc, IntPtr dataPtr, Size maximumSize);
Beispiel #43
0
		public static extern OSErr AEPutKeyDesc (ref AERecord record, AEKeyword keyword, ref AEDesc desc);
Beispiel #44
0
 public static extern Size AEGetDescDataSize(ref AEDesc desc);
Beispiel #45
0
		public static extern OSErr AEPutParamDesc (ref AppleEvent evt, AEKeyword keyword, ref AEDesc desc);
Beispiel #46
0
 public static extern OSErr AEReplaceDescData(DescType typeCode, IntPtr dataPtr, Size dataSize, ref AEDesc desc);
Beispiel #47
0
		public static extern OSErr AEPutAttributeDesc (ref AppleEvent evt, AEKeyword keyword, ref AEDesc desc);
Beispiel #48
0
 public static extern OSStatus AEGetDescDataRange(ref AEDesc dataDesc, IntPtr buffer, Size offset, Size length);
Beispiel #49
0
		public static extern OSStatus AEFlattenDesc (ref AEDesc desc, IntPtr buffer, Size bufferSize, out Size actualSize);
Beispiel #50
0
 public static extern OSStatus AEBuildDesc(ref AEDesc dst, out AEBuildError error, string src, __arglist);
Beispiel #51
0
		public static extern OSErr AEGetDescData (ref AEDesc desc, IntPtr dataPtr, Size maximumSize);
Beispiel #52
0
 public static extern OSStatus AEPrintDescToHandle(ref AEDesc desc, out IntPtr resultHandle);
Beispiel #53
0
		public static extern OSErr AEReplaceDescData (DescType typeCode, IntPtr dataPtr, Size dataSize, ref AEDesc desc);
Beispiel #54
0
 public static extern OSStatus AEStreamClose(AEStreamRef streamRef, out AEDesc desc);
Beispiel #55
0
		public static extern OSStatus AEBuildDesc (ref AEDesc dst, out AEBuildError error, string src, __arglist);
Beispiel #56
0
 public static extern OSStatus AEStreamWriteAEDesc(AEStreamRef streamRef, ref AEDesc desc);
Beispiel #57
0
		public static extern OSStatus AEStreamClose (AEStreamRef streamRef, out AEDesc desc);
Beispiel #58
0
		public static extern OSErr CreateCompDescriptor (DescType comparisonOperator, ref AEDesc operand1,
			ref AEDesc operand2, bool disposeInputs, out AEDesc theDescriptor);
Beispiel #59
0
		public static extern OSErr AECoercePtr (DescType typeCode, IntPtr data, Size dataSize, DescType toType,
			out AEDesc result);
Beispiel #60
0
 public static void AEInitializeDescInline(ref AEDesc desc)
 {
     desc.descriptorType = (int)AEDescriptorType.Null;
     desc.dataHandle     = IntPtr.Zero;
 }