coreservices

package
v0.6.18 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 22, 2026 License: MIT Imports: 11 Imported by: 0

Documentation

Overview

Package coreservices provides Go bindings for the coreservices framework.

Access and manage key operating system services, such as launch and identity services.

This collection of documents provides the API reference for the Core Services framework, which encompasses many fundamental operating system services used by Carbon applications.

Code generated from Apple documentation. DO NOT EDIT.

Index

Constants

View Source
const (
	// Deprecated.
	RegisterComponentAfterExisting uint32 = 4
	// Deprecated.
	RegisterComponentAliasesOnly uint32 = 8
	// Deprecated.
	RegisterComponentGlobal uint32 = 1
	// Deprecated.
	RegisterComponentNoDuplicates uint32 = 2
)
View Source
const GestaltALMVers uint32 = 'w'<<24 | 'a'<<16 | 'l'<<8 | 'k' // 'walk'
View Source
const GestaltAppearanceVersion uint32 = 'a'<<24 | 'p'<<16 | 'v'<<8 | 'r' // 'apvr'
View Source
const GestaltAppleScriptVersion uint32 = 'a'<<24 | 's'<<16 | 'c'<<8 | 'v' // 'ascv'
View Source
const GestaltControlStripVersion uint32 = 'c'<<24 | 's'<<16 | 'v'<<8 | 'r' // 'csvr'
View Source
const GestaltDisplayMgrVers uint32 = 'd'<<24 | 'p'<<16 | 'l'<<8 | 'v' // 'dplv'
View Source
const GestaltOpenTptVersions uint32 = 'o'<<24 | 't'<<16 | 'v'<<8 | 'r' // 'otvr'
View Source
const GestaltQD3DVersion uint32 = 'q'<<24 | '3'<<16 | 'v'<<8 | ' ' // 'q3v '
View Source
const GestaltQuickTimeStreamingFeatures uint32 = 'q'<<24 | 't'<<16 | 's'<<8 | 'f' // 'qtsf'
View Source
const GestaltQuickTimeStreamingVersion uint32 = 'q'<<24 | 't'<<16 | 's'<<8 | 't' // 'qtst'
View Source
const GestaltROMSize uint32 = 'r'<<24 | 'o'<<16 | 'm'<<8 | ' ' // 'rom '
View Source
const GestaltROMVersion uint32 = 'r'<<24 | 'o'<<16 | 'm'<<8 | 'v' // 'romv'
View Source
const GestaltUSBVersion uint32 = 'u'<<24 | 's'<<16 | 'b'<<8 | 'v' // 'usbv'
View Source
const KAnyPort uint32 = 0
View Source
const KTextEncodingMacUnicode uint32 = 0x7e
View Source
const KUCCollateTypeMask uint32 = 4278190080
View Source
const KUCKeyTranslateNoDeadKeysBit uint32 = 0
View Source
const KUCKeyTranslateNoDeadKeysMask uint32 = 1
View Source
const LangUnspecified uint32 = 32767

Variables

This section is empty.

Functions

func AEBuildAppleEvent

func AEBuildAppleEvent(theClass AEEventClass, theID AEEventID, addressType DescType, addressData unsafe.Pointer, addressLength int, returnID int16, transactionID int32, result *AEDesc, err *AEBuildError, paramsFmt string) int32

AEBuildAppleEvent constructs an entire Apple event in a single call.

See: https://developer.apple.com/documentation/coreservices/1573757-aebuildappleevent

func AEBuildDesc

func AEBuildDesc(dst *AEDesc, err *AEBuildError, src string) int32

AEBuildDesc provides a facility for compiling AEBuild descriptor strings into Apple event descriptors (AEDesc).

See: https://developer.apple.com/documentation/coreservices/1573758-aebuilddesc

func AEBuildParameters

func AEBuildParameters(event *AEDesc, err *AEBuildError, format string) int32

AEBuildParameters adds additional parameters or attributes to an existing Apple event.

See: https://developer.apple.com/documentation/coreservices/1573755-aebuildparameters

func AECallObjectAccessor

func AECallObjectAccessor(desiredClass DescType, containerToken unsafe.Pointer, containerClass DescType, keyForm DescType, keyData unsafe.Pointer, token unsafe.Pointer) int16

AECallObjectAccessor invokes the appropriate object accessor function for a specific desired type and container type.

See: https://developer.apple.com/documentation/coreservices/1447059-aecallobjectaccessor

func AECheckIsRecord

func AECheckIsRecord(theDesc unsafe.Pointer) bool

AECheckIsRecord determines whether a descriptor is truly an AERecord.

See: https://developer.apple.com/documentation/coreservices/1444011-aecheckisrecord

func AECoerceDesc

func AECoerceDesc(theAEDesc unsafe.Pointer, toType DescType, result unsafe.Pointer) int16

AECoerceDesc coerces the data in a descriptor to another descriptor type and creates a descriptor containing the newly coerced data.

See: https://developer.apple.com/documentation/coreservices/1446519-aecoercedesc

func AECoercePtr

func AECoercePtr(typeCode DescType, dataPtr unsafe.Pointer, dataSize int, toType DescType, result unsafe.Pointer) int16

AECoercePtr coerces data to a desired descriptor type and creates a descriptor containing the newly coerced data.

See: https://developer.apple.com/documentation/coreservices/1441846-aecoerceptr

func AECountItems

func AECountItems(theAEDescList unsafe.Pointer, theCount unsafe.Pointer) int16

AECountItems counts the number of descriptors in a descriptor list.

See: https://developer.apple.com/documentation/coreservices/1449533-aecountitems

func AECreateAppleEvent

func AECreateAppleEvent(theAEEventClass AEEventClass, theAEEventID AEEventID, target unsafe.Pointer, returnID AEReturnID, transactionID AETransactionID, result *AEDesc) int16

AECreateAppleEvent creates an Apple event with several important attributes but no parameters.

See: https://developer.apple.com/documentation/coreservices/1448525-aecreateappleevent

func AECreateDesc

func AECreateDesc(typeCode DescType, dataPtr unsafe.Pointer, dataSize int, result unsafe.Pointer) int16

AECreateDesc creates a new descriptor that incorporates the specified data.

See: https://developer.apple.com/documentation/coreservices/1448535-aecreatedesc

func AECreateDescFromExternalPtr

func AECreateDescFromExternalPtr(descriptorType uint32, dataPtr unsafe.Pointer, dataLength int, disposeCallback AEDisposeExternalUPP, disposeRefcon uintptr, theDesc unsafe.Pointer) int32

AECreateDescFromExternalPtr creates a new descriptor that uses a memory buffer supplied by the caller.

See: https://developer.apple.com/documentation/coreservices/1446239-aecreatedescfromexternalptr

func AECreateList

func AECreateList(factoringPtr unsafe.Pointer, factoredSize int, isRecord unsafe.Pointer, resultList unsafe.Pointer) int16

AECreateList creates an empty descriptor list or Apple event record.

See: https://developer.apple.com/documentation/coreservices/1448643-aecreatelist

func AEDecodeMessage

func AEDecodeMessage(header unsafe.Pointer, event *AEDesc, reply *AEDesc) int32

AEDecodeMessage decodes a Mach message and converts it into an Apple event and its related reply.

See: https://developer.apple.com/documentation/coreservices/1447827-aedecodemessage

func AEDeleteItem

func AEDeleteItem(theAEDescList unsafe.Pointer, index unsafe.Pointer) int16

AEDeleteItem deletes a descriptor from a descriptor list, causing all subsequent descriptors to move up one place.

See: https://developer.apple.com/documentation/coreservices/1447164-aedeleteitem

func AEDeleteParam

func AEDeleteParam(theAppleEvent *AEDesc, theAEKeyword AEKeyword) int16

AEDeleteParam deletes a keyword-specified parameter from an Apple event record.

See: https://developer.apple.com/documentation/coreservices/1444338-aedeleteparam

func AEDeterminePermissionToAutomateTarget

func AEDeterminePermissionToAutomateTarget(target unsafe.Pointer, theAEEventClass AEEventClass, theAEEventID AEEventID, askUserIfNeeded unsafe.Pointer) int32

AEDeterminePermissionToAutomateTarget.

See: https://developer.apple.com/documentation/coreservices/3025784-aedeterminepermissiontoautomatet

func AEDisposeDesc

func AEDisposeDesc(theAEDesc unsafe.Pointer) int16

AEDisposeDesc deallocates the memory used by a descriptor.

See: https://developer.apple.com/documentation/coreservices/1444208-aedisposedesc

func AEDisposeToken

func AEDisposeToken(theToken unsafe.Pointer) int16

AEDisposeToken deallocates the memory used by a token.

See: https://developer.apple.com/documentation/coreservices/1446783-aedisposetoken

func AEDuplicateDesc

func AEDuplicateDesc(theAEDesc unsafe.Pointer, result unsafe.Pointer) int16

AEDuplicateDesc creates a copy of a descriptor.

See: https://developer.apple.com/documentation/coreservices/1442661-aeduplicatedesc

func AEFlattenDesc

func AEFlattenDesc(theAEDesc unsafe.Pointer, buffer unsafe.Pointer, bufferSize int, actualSize *int) int32

AEFlattenDesc flattens the specified descriptor and stores the data in the supplied buffer.

See: https://developer.apple.com/documentation/coreservices/1441808-aeflattendesc

func AEGetArray

func AEGetArray(theAEDescList unsafe.Pointer, arrayType AEArrayType, arrayPtr AEArrayDataPointer, maximumSize int, itemType *DescType, itemSize *int, itemCount unsafe.Pointer) int16

AEGetArray extracts data from an Apple event array created with the AEPutArray function and stores it as a standard array of fixed size items in the specified buffer.

See: https://developer.apple.com/documentation/coreservices/1445720-aegetarray

func AEGetAttributeDesc

func AEGetAttributeDesc(theAppleEvent *AEDesc, theAEKeyword AEKeyword, desiredType DescType, result unsafe.Pointer) int16

AEGetAttributeDesc gets a copy of the descriptor for a specified Apple event attribute from an Apple event; typically used when your application needs to pass the descriptor on to another function.

See: https://developer.apple.com/documentation/coreservices/1450314-aegetattributedesc

func AEGetAttributePtr

func AEGetAttributePtr(theAppleEvent *AEDesc, theAEKeyword AEKeyword, desiredType DescType, typeCode *DescType, dataPtr unsafe.Pointer, maximumSize int, actualSize *int) int16

AEGetAttributePtr gets a copy of the data for a specified Apple event attribute from an Apple event; typically used when your application needs to work with the data directly.

See: https://developer.apple.com/documentation/coreservices/1445109-aegetattributeptr

func AEGetCoercionHandler

func AEGetCoercionHandler(fromType DescType, toType DescType, handler unsafe.Pointer, handlerRefcon *uintptr, fromTypeIsDesc unsafe.Pointer, isSysHandler unsafe.Pointer) int16

AEGetCoercionHandler gets the coercion handler for a specified descriptor type.

See: https://developer.apple.com/documentation/coreservices/1445348-aegetcoercionhandler

func AEGetDescData

func AEGetDescData(theAEDesc unsafe.Pointer, dataPtr unsafe.Pointer, maximumSize int) int16

AEGetDescData gets the data from the specified descriptor.

See: https://developer.apple.com/documentation/coreservices/1444427-aegetdescdata

func AEGetDescDataRange

func AEGetDescDataRange(dataDesc unsafe.Pointer, buffer unsafe.Pointer, offset int, length int) int32

AEGetDescDataRange retrieves a specified series of bytes from the specified descriptor.

See: https://developer.apple.com/documentation/coreservices/1446560-aegetdescdatarange

func AEGetDescDataSize

func AEGetDescDataSize(theAEDesc unsafe.Pointer) int

AEGetDescDataSize gets the size, in bytes, of the data in the specified descriptor.

See: https://developer.apple.com/documentation/coreservices/1450119-aegetdescdatasize

func AEGetEventHandler

func AEGetEventHandler(theAEEventClass AEEventClass, theAEEventID AEEventID, handler unsafe.Pointer, handlerRefcon *uintptr, isSysHandler unsafe.Pointer) int16

AEGetEventHandler gets an event handler from an Apple event dispatch table.

See: https://developer.apple.com/documentation/coreservices/1445631-aegeteventhandler

func AEGetNthDesc

func AEGetNthDesc(theAEDescList unsafe.Pointer, index unsafe.Pointer, desiredType DescType, theAEKeyword unsafe.Pointer, result unsafe.Pointer) int16

AEGetNthDesc copies a descriptor from a specified position in a descriptor list into a specified descriptor; typically used when your application needs to pass the extracted data to another function as a descriptor.

See: https://developer.apple.com/documentation/coreservices/1448326-aegetnthdesc

func AEGetNthPtr

func AEGetNthPtr(theAEDescList unsafe.Pointer, index unsafe.Pointer, desiredType DescType, theAEKeyword unsafe.Pointer, typeCode *DescType, dataPtr unsafe.Pointer, maximumSize int, actualSize *int) int16

AEGetNthPtr gets a copy of the data from a descriptor at a specified position in a descriptor list; typically used when your application needs to work with the extracted data directly.

See: https://developer.apple.com/documentation/coreservices/1447539-aegetnthptr

func AEGetObjectAccessor

func AEGetObjectAccessor(desiredClass DescType, containerType DescType, accessor unsafe.Pointer, accessorRefcon *uintptr, isSysHandler unsafe.Pointer) int16

AEGetObjectAccessor gets an object accessor function from an object accessor dispatch table.

See: https://developer.apple.com/documentation/coreservices/1449054-aegetobjectaccessor

func AEGetParamDesc

func AEGetParamDesc(theAppleEvent *AEDesc, theAEKeyword AEKeyword, desiredType DescType, result unsafe.Pointer) int16

AEGetParamDesc gets a copy of the descriptor for a keyword-specified Apple event parameter from an Apple event or an Apple event record.

See: https://developer.apple.com/documentation/coreservices/1449233-aegetparamdesc

func AEGetParamPtr

func AEGetParamPtr(theAppleEvent *AEDesc, theAEKeyword AEKeyword, desiredType DescType, actualType *DescType, dataPtr unsafe.Pointer, maximumSize int, actualSize *int) int16

AEGetParamPtr gets a copy of the data for a specified Apple event parameter from an Apple event or an Apple event record.

See: https://developer.apple.com/documentation/coreservices/1444069-aegetparamptr

func AEGetRegisteredMachPort

func AEGetRegisteredMachPort() uint32

AEGetRegisteredMachPort returns the Mach port (in the form of a `mach_port_t`) that was registered with the bootstrap server for this process.

See: https://developer.apple.com/documentation/coreservices/1449736-aegetregisteredmachport

func AEGetSpecialHandler

func AEGetSpecialHandler(functionClass AEKeyword, handler unsafe.Pointer, isSysHandler unsafe.Pointer) int16

AEGetSpecialHandler gets a specified handler from a special handler dispatch table.

See: https://developer.apple.com/documentation/coreservices/1444274-aegetspecialhandler

func AEInitializeDesc

func AEInitializeDesc(desc unsafe.Pointer)

AEInitializeDesc initializes a new descriptor.

See: https://developer.apple.com/documentation/coreservices/1446047-aeinitializedesc

func AEInstallCoercionHandler

func AEInstallCoercionHandler(fromType DescType, toType DescType, handler AECoercionHandlerUPP, handlerRefcon uintptr, fromTypeIsDesc unsafe.Pointer, isSysHandler unsafe.Pointer) int16

AEInstallCoercionHandler installs a coercion handler in either the application or system coercion handler dispatch table.

See: https://developer.apple.com/documentation/coreservices/1445548-aeinstallcoercionhandler

func AEInstallEventHandler

func AEInstallEventHandler(theAEEventClass AEEventClass, theAEEventID AEEventID, handler AEEventHandlerUPP, handlerRefcon uintptr, isSysHandler unsafe.Pointer) int16

AEInstallEventHandler adds an entry for an event handler to an Apple event dispatch table.

See: https://developer.apple.com/documentation/coreservices/1448596-aeinstalleventhandler

func AEInstallObjectAccessor

func AEInstallObjectAccessor(desiredClass DescType, containerType DescType, theAccessor OSLAccessorUPP, accessorRefcon uintptr, isSysHandler unsafe.Pointer) int16

AEInstallObjectAccessor adds or replaces an entry for an object accessor function to an object accessor dispatch table.

See: https://developer.apple.com/documentation/coreservices/1447905-aeinstallobjectaccessor

func AEInstallSpecialHandler

func AEInstallSpecialHandler(functionClass AEKeyword, handler AEEventHandlerUPP, isSysHandler unsafe.Pointer) int16

AEInstallSpecialHandler installs a callback function in a special handler dispatch table.

See: https://developer.apple.com/documentation/coreservices/1445532-aeinstallspecialhandler

func AEManagerInfo

func AEManagerInfo(keyWord AEKeyword, result unsafe.Pointer) int16

AEManagerInfo provides information about the version of the Apple Event Manager currently available or the number of processes that are currently recording Apple events.

See: https://developer.apple.com/documentation/coreservices/1449373-aemanagerinfo

func AEObjectInit

func AEObjectInit() int16

AEObjectInit initializes the Object Support Library.

See: https://developer.apple.com/documentation/coreservices/1447372-aeobjectinit

func AEPrintDescToHandle

func AEPrintDescToHandle(desc unsafe.Pointer, result *kernel.Handle) int32

AEPrintDescToHandle provides a pretty printer facility for displaying the contents of Apple event descriptors.

See: https://developer.apple.com/documentation/coreservices/1445158-aeprintdesctohandle

func AEProcessMessage

func AEProcessMessage(header unsafe.Pointer) int32

AEProcessMessage decodes and dispatches a low level Mach message event to an event handler, including packaging and returning the reply to the sender.

See: https://developer.apple.com/documentation/coreservices/1444387-aeprocessmessage

func AEPutArray

func AEPutArray(theAEDescList unsafe.Pointer, arrayType AEArrayType, arrayPtr unsafe.Pointer, itemType DescType, itemSize int, itemCount unsafe.Pointer) int16

AEPutArray inserts the data for an Apple event array into a descriptor list, replacing any previous descriptors in the list.

See: https://developer.apple.com/documentation/coreservices/1442535-aeputarray

func AEPutAttributeDesc

func AEPutAttributeDesc(theAppleEvent *AEDesc, theAEKeyword AEKeyword, theAEDesc unsafe.Pointer) int16

AEPutAttributeDesc adds a descriptor and a keyword to an Apple event as an attribute.

See: https://developer.apple.com/documentation/coreservices/1441790-aeputattributedesc

func AEPutAttributePtr

func AEPutAttributePtr(theAppleEvent *AEDesc, theAEKeyword AEKeyword, typeCode DescType, dataPtr unsafe.Pointer, dataSize int) int16

AEPutAttributePtr adds a pointer to data, a descriptor type, and a keyword to an Apple event as an attribute.

See: https://developer.apple.com/documentation/coreservices/1445940-aeputattributeptr

func AEPutDesc

func AEPutDesc(theAEDescList unsafe.Pointer, index unsafe.Pointer, theAEDesc unsafe.Pointer) int16

AEPutDesc adds a descriptor to any descriptor list, possibly replacing an existing descriptor in the list.

See: https://developer.apple.com/documentation/coreservices/1450093-aeputdesc

func AEPutParamDesc

func AEPutParamDesc(theAppleEvent *AEDesc, theAEKeyword AEKeyword, theAEDesc unsafe.Pointer) int16

AEPutParamDesc inserts a descriptor and a keyword into an Apple event or Apple event record as an Apple event parameter.

See: https://developer.apple.com/documentation/coreservices/1447576-aeputparamdesc

func AEPutParamPtr

func AEPutParamPtr(theAppleEvent *AEDesc, theAEKeyword AEKeyword, typeCode DescType, dataPtr unsafe.Pointer, dataSize int) int16

AEPutParamPtr inserts data, a descriptor type, and a keyword into an Apple event or Apple event record as an Apple event parameter.

See: https://developer.apple.com/documentation/coreservices/1449263-aeputparamptr

func AEPutPtr

func AEPutPtr(theAEDescList unsafe.Pointer, index unsafe.Pointer, typeCode DescType, dataPtr unsafe.Pointer, dataSize int) int16

AEPutPtr inserts data specified in a buffer into a descriptor list as a descriptor, possibly replacing an existing descriptor in the list.

See: https://developer.apple.com/documentation/coreservices/1445287-aeputptr

func AERemoteProcessResolverGetProcesses

func AERemoteProcessResolverGetProcesses(ref AERemoteProcessResolverRef, outError unsafe.Pointer) corefoundation.CFArrayRef

AERemoteProcessResolverGetProcesses returns an array of objects containing information about processes running on a remote machine.

See: https://developer.apple.com/documentation/coreservices/1444456-aeremoteprocessresolvergetproces

func AERemoteProcessResolverScheduleWithRunLoop

func AERemoteProcessResolverScheduleWithRunLoop(ref AERemoteProcessResolverRef, runLoop corefoundation.CFRunLoopRef, runLoopMode corefoundation.CFStringRef, callback AERemoteProcessResolverCallback, ctx unsafe.Pointer)

AERemoteProcessResolverScheduleWithRunLoop schedules a resolver for execution on a given run loop in a given mode.

See: https://developer.apple.com/documentation/coreservices/1447259-aeremoteprocessresolverschedulew

func AERemoveCoercionHandler

func AERemoveCoercionHandler(fromType DescType, toType DescType, handler AECoercionHandlerUPP, isSysHandler unsafe.Pointer) int16

AERemoveCoercionHandler removes a coercion handler from a coercion handler dispatch table.

See: https://developer.apple.com/documentation/coreservices/1441907-aeremovecoercionhandler

func AERemoveEventHandler

func AERemoveEventHandler(theAEEventClass AEEventClass, theAEEventID AEEventID, handler AEEventHandlerUPP, isSysHandler unsafe.Pointer) int16

AERemoveEventHandler removes an event handler entry from an Apple event dispatch table.

See: https://developer.apple.com/documentation/coreservices/1445239-aeremoveeventhandler

func AERemoveObjectAccessor

func AERemoveObjectAccessor(desiredClass DescType, containerType DescType, theAccessor OSLAccessorUPP, isSysHandler unsafe.Pointer) int16

AERemoveObjectAccessor removes an object accessor function from an object accessor dispatch table.

See: https://developer.apple.com/documentation/coreservices/1442552-aeremoveobjectaccessor

func AERemoveSpecialHandler

func AERemoveSpecialHandler(functionClass AEKeyword, handler AEEventHandlerUPP, isSysHandler unsafe.Pointer) int16

AERemoveSpecialHandler removes a handler from a special handler dispatch table.

See: https://developer.apple.com/documentation/coreservices/1447960-aeremovespecialhandler

func AEReplaceDescData

func AEReplaceDescData(typeCode DescType, dataPtr unsafe.Pointer, dataSize int, theAEDesc unsafe.Pointer) int16

AEReplaceDescData copies the specified data into the specified descriptor, replacing any previous data.

See: https://developer.apple.com/documentation/coreservices/1446695-aereplacedescdata

func AEResolve

func AEResolve(objectSpecifier unsafe.Pointer, callbackFlags int16, theToken unsafe.Pointer) int16

AEResolve resolves an object specifier.

See: https://developer.apple.com/documentation/coreservices/1449720-aeresolve

func AESendMessage

func AESendMessage(event *AEDesc, reply *AEDesc, sendMode AESendMode, timeOutInTicks unsafe.Pointer) int32

AESendMessage sends an AppleEvent to a target process without some of the overhead required by [AESend].

See: https://developer.apple.com/documentation/coreservices/1442994-aesendmessage

func AESetObjectCallbacks

func AESetObjectCallbacks(myCompareProc OSLCompareUPP, myCountProc OSLCountUPP, myDisposeTokenProc OSLDisposeTokenUPP, myGetMarkTokenProc OSLGetMarkTokenUPP, myMarkProc OSLMarkUPP, myAdjustMarksProc OSLAdjustMarksUPP, myGetErrDescProcPtr OSLGetErrDescUPP) int16

AESetObjectCallbacks specifies the object callback functions for your application.

See: https://developer.apple.com/documentation/coreservices/1447756-aesetobjectcallbacks

func AESizeOfAttribute

func AESizeOfAttribute(theAppleEvent *AEDesc, theAEKeyword AEKeyword, typeCode *DescType, dataSize *int) int16

AESizeOfAttribute gets the size and descriptor type of an Apple event attribute from a descriptor of type AppleEvent.

See: https://developer.apple.com/documentation/coreservices/1445764-aesizeofattribute

func AESizeOfFlattenedDesc

func AESizeOfFlattenedDesc(theAEDesc unsafe.Pointer) int

AESizeOfFlattenedDesc returns the amount of buffer space needed to store the descriptor after flattening it.

See: https://developer.apple.com/documentation/coreservices/1447305-aesizeofflatteneddesc

func AESizeOfNthItem

func AESizeOfNthItem(theAEDescList unsafe.Pointer, index unsafe.Pointer, typeCode *DescType, dataSize *int) int16

AESizeOfNthItem gets the data size and descriptor type of the descriptor at a specified position in a descriptor list.

See: https://developer.apple.com/documentation/coreservices/1447307-aesizeofnthitem

func AESizeOfParam

func AESizeOfParam(theAppleEvent *AEDesc, theAEKeyword AEKeyword, typeCode *DescType, dataSize *int) int16

AESizeOfParam gets the size and descriptor type of an Apple event parameter from a descriptor of type AERecord or AppleEvent.

See: https://developer.apple.com/documentation/coreservices/1449998-aesizeofparam

func AEStreamClose

func AEStreamClose(ref AEStreamRef, desc unsafe.Pointer) int32

AEStreamClose closes and deallocates an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1449821-aestreamclose

func AEStreamCloseDesc

func AEStreamCloseDesc(ref AEStreamRef) int32

AEStreamCloseDesc marks the end of a descriptor in an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1449272-aestreamclosedesc

func AEStreamCloseList

func AEStreamCloseList(ref AEStreamRef) int32

AEStreamCloseList marks the end of a list of descriptors in an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1448185-aestreamcloselist

func AEStreamCloseRecord

func AEStreamCloseRecord(ref AEStreamRef) int32

AEStreamCloseRecord marks the end of a record in an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1449522-aestreamcloserecord

func AEStreamOpenDesc

func AEStreamOpenDesc(ref AEStreamRef, newType DescType) int32

AEStreamOpenDesc marks the beginning of a descriptor in an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1446544-aestreamopendesc

func AEStreamOpenKeyDesc

func AEStreamOpenKeyDesc(ref AEStreamRef, key AEKeyword, newType DescType) int32

AEStreamOpenKeyDesc marks the beginning of a key descriptor in an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1442897-aestreamopenkeydesc

func AEStreamOpenList

func AEStreamOpenList(ref AEStreamRef) int32

AEStreamOpenList marks the beginning of a descriptor list in an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1448594-aestreamopenlist

func AEStreamOpenRecord

func AEStreamOpenRecord(ref AEStreamRef, newType DescType) int32

AEStreamOpenRecord marks the beginning of an Apple event record in an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1447141-aestreamopenrecord

func AEStreamOptionalParam

func AEStreamOptionalParam(ref AEStreamRef, key AEKeyword) int32

AEStreamOptionalParam designates a parameter in an Apple event as optional.

See: https://developer.apple.com/documentation/coreservices/1444481-aestreamoptionalparam

func AEStreamSetRecordType

func AEStreamSetRecordType(ref AEStreamRef, newType DescType) int32

AEStreamSetRecordType sets the type of the most recently created record in an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1447704-aestreamsetrecordtype

func AEStreamWriteAEDesc

func AEStreamWriteAEDesc(ref AEStreamRef, desc unsafe.Pointer) int32

AEStreamWriteAEDesc copies an existing descriptor into an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1448487-aestreamwriteaedesc

func AEStreamWriteData

func AEStreamWriteData(ref AEStreamRef, data unsafe.Pointer, length int) int32

AEStreamWriteData appends data to the current descriptor in an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1442610-aestreamwritedata

func AEStreamWriteDesc

func AEStreamWriteDesc(ref AEStreamRef, newType DescType, data unsafe.Pointer, length int) int32

AEStreamWriteDesc appends the data for a complete descriptor to an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1450387-aestreamwritedesc

func AEStreamWriteKey

func AEStreamWriteKey(ref AEStreamRef, key AEKeyword) int32

AEStreamWriteKey marks the beginning of a keyword/descriptor pair for a descriptor in an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1448750-aestreamwritekey

func AEStreamWriteKeyDesc

func AEStreamWriteKeyDesc(ref AEStreamRef, key AEKeyword, newType DescType, data unsafe.Pointer, length int) int32

AEStreamWriteKeyDesc writes a complete keyword/descriptor pair to an AEStreamRef.

See: https://developer.apple.com/documentation/coreservices/1442568-aestreamwritekeydesc

func AEUnflattenDesc deprecated

func AEUnflattenDesc(buffer unsafe.Pointer, result unsafe.Pointer) int32

AEUnflattenDesc unflattens the data in the passed buffer and creates a descriptor from it.

Deprecated: Deprecated since macOS 11.0.

See: https://developer.apple.com/documentation/coreservices/1448997-aeunflattendesc

func AbsoluteDeltaToDuration deprecated

func AbsoluteDeltaToDuration(leftAbsoluteTime uint64, rightAbsoluteTime uint64) int32

AbsoluteDeltaToDuration.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501245-absolutedeltatoduration

func AbsoluteDeltaToNanoseconds deprecated

func AbsoluteDeltaToNanoseconds(leftAbsoluteTime uint64, rightAbsoluteTime uint64) uint64

AbsoluteDeltaToNanoseconds.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501268-absolutedeltatonanoseconds

func AbsoluteToDuration deprecated

func AbsoluteToDuration(absoluteTime uint64) int32

AbsoluteToDuration.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501266-absolutetoduration

func AbsoluteToNanoseconds deprecated

func AbsoluteToNanoseconds(absoluteTime uint64) uint64

AbsoluteToNanoseconds.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501246-absolutetonanoseconds

func AcquireIconRef deprecated

func AcquireIconRef(theIconRef IconRef) int16

AcquireIconRef.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1441852-acquireiconref

func AddAbsoluteToAbsolute deprecated

func AddAbsoluteToAbsolute(absoluteTime1 uint64, absoluteTime2 uint64) uint64

AddAbsoluteToAbsolute.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501267-addabsolutetoabsolute

func AddAtomic deprecated

func AddAtomic(amount int32, address *int32) int32

AddAtomic.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490591-addatomic

func AddAtomic8 deprecated

func AddAtomic8(amount int32, address *int8) int8

AddAtomic8.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490594-addatomic8

func AddAtomic16 deprecated

func AddAtomic16(amount int32, address *int16) int16

AddAtomic16.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490589-addatomic16

func AddCollectionItem deprecated

func AddCollectionItem(c Collection, tag CollectionTag, id int32, itemSize int32, itemData unsafe.Pointer) int16

AddCollectionItem.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551404-addcollectionitem

func AddCollectionItemHdl deprecated

func AddCollectionItemHdl(aCollection Collection, tag CollectionTag, id int32, itemData kernel.Handle) int16

AddCollectionItemHdl.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551458-addcollectionitemhdl

func AddDurationToAbsolute deprecated

func AddDurationToAbsolute(duration int32, absoluteTime uint64) uint64

AddDurationToAbsolute.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501249-adddurationtoabsolute

func AddFolderDescriptor deprecated

func AddFolderDescriptor(foldType FolderType, flags FolderDescFlags, foldClass FolderClass, foldLocation FolderLocation, badgeSignature uint32, badgeType uint32, name unsafe.Pointer, replaceFlag bool) int16

AddFolderDescriptor.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389301-addfolderdescriptor

func AddNanosecondsToAbsolute deprecated

func AddNanosecondsToAbsolute(nanoseconds uint64, absoluteTime uint64) uint64

AddNanosecondsToAbsolute.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501264-addnanosecondstoabsolute

func AddResource deprecated

func AddResource(theData kernel.Handle, theType uint32, theID ResID, name unsafe.Pointer)

AddResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529276-addresource

func Annuity deprecated

func Annuity(rate float64, periods float64) float64

Annuity.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1492633-annuity

func BatteryCount deprecated

func BatteryCount() int16

BatteryCount.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1427413-batterycount

func BitAnd deprecated

func BitAnd(value1 int, value2 int) int

BitAnd.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1494613-bitand

func BitAndAtomic deprecated

func BitAndAtomic(mask uint32, address *uint32) uint32

BitAndAtomic.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490596-bitandatomic

func BitAndAtomic8 deprecated

func BitAndAtomic8(mask uint32, address []byte) uint8

BitAndAtomic8.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490584-bitandatomic8

func BitAndAtomic16 deprecated

func BitAndAtomic16(mask uint32, address *uint16) uint16

BitAndAtomic16.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490599-bitandatomic16

func BitClr deprecated

func BitClr(bytePtr unsafe.Pointer, bitNum int)

BitClr.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1494616-bitclr

func BitNot deprecated

func BitNot(value int) int

BitNot.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1494611-bitnot

func BitOr deprecated

func BitOr(value1 int, value2 int) int

BitOr.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1494619-bitor

func BitOrAtomic deprecated

func BitOrAtomic(mask uint32, address *uint32) uint32

BitOrAtomic.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490597-bitoratomic

func BitOrAtomic8 deprecated

func BitOrAtomic8(mask uint32, address []byte) uint8

BitOrAtomic8.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490581-bitoratomic8

func BitOrAtomic16 deprecated

func BitOrAtomic16(mask uint32, address *uint16) uint16

BitOrAtomic16.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490587-bitoratomic16

func BitSet deprecated

func BitSet(bytePtr unsafe.Pointer, bitNum int)

BitSet.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1494618-bitset

func BitShift deprecated

func BitShift(value int, count int16) int

BitShift.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1494615-bitshift

func BitTst deprecated

func BitTst(bytePtr unsafe.Pointer, bitNum int) bool

BitTst.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1494606-bittst

func BitXor deprecated

func BitXor(value1 int, value2 int) int

BitXor.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1494620-bitxor

func BitXorAtomic deprecated

func BitXorAtomic(mask uint32, address *uint32) uint32

BitXorAtomic.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490592-bitxoratomic

func BitXorAtomic8 deprecated

func BitXorAtomic8(mask uint32, address []byte) uint8

BitXorAtomic8.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490577-bitxoratomic8

func BitXorAtomic16 deprecated

func BitXorAtomic16(mask uint32, address *uint16) uint16

BitXorAtomic16.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490572-bitxoratomic16

func CSBackupIsItemExcluded

func CSBackupIsItemExcluded(item corefoundation.CFURLRef, excludeByPath unsafe.Pointer) bool

CSBackupIsItemExcluded returns a Boolean value indicating whether an item is currently excluded from the backup.

See: https://developer.apple.com/documentation/coreservices/1443602-csbackupisitemexcluded

func CSBackupSetItemExcluded

func CSBackupSetItemExcluded(item corefoundation.CFURLRef, exclude unsafe.Pointer, excludeByPath unsafe.Pointer) int32

CSBackupSetItemExcluded includes or excludes an item from the backup.

See: https://developer.apple.com/documentation/coreservices/1445043-csbackupsetitemexcluded

func CSCopyMachineName deprecated

func CSCopyMachineName() corefoundation.CFStringRef

CSCopyMachineName.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1533316-cscopymachinename

func CSCopyUserName deprecated

func CSCopyUserName(useShortName bool) corefoundation.CFStringRef

CSCopyUserName.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1533406-cscopyusername

func CSDiskSpaceStartRecovery

func CSDiskSpaceStartRecovery(volumeURL corefoundation.CFURLRef, bytesNeeded uint64, options CSDiskSpaceRecoveryOptions, outOperationUUID *corefoundation.CFUUIDRef, callbackQueue dispatch.Queue, callback unsafe.Pointer)

CSDiskSpaceStartRecovery.

See: https://developer.apple.com/documentation/coreservices/1447968-csdiskspacestartrecovery

func CSIdentityCommitAsynchronously

func CSIdentityCommitAsynchronously(identity CSIdentityRef, clientContext unsafe.Pointer, runLoop corefoundation.CFRunLoopRef, runLoopMode corefoundation.CFStringRef, authorization security.AuthorizationRef) bool

CSIdentityCommitAsynchronously.

See: https://developer.apple.com/documentation/coreservices/1447936-csidentitycommitasynchronously

func CSSetComponentsThreadMode deprecated

func CSSetComponentsThreadMode(mode CSComponentsThreadMode)

CSSetComponentsThreadMode sets whether or not using thread-unsafe components is allowed in the current thread.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516422-cssetcomponentsthreadmode

func ChangeTextToUnicodeInfo

func ChangeTextToUnicodeInfo(ioTextToUnicodeInfo TextToUnicodeInfo, iUnicodeMapping ConstUnicodeMappingPtr) int32

ChangeTextToUnicodeInfo changes the mapping information for the specified Unicodeconverter object used to convert text to Unicode to the new mappingyou provide.

See: https://developer.apple.com/documentation/coreservices/1433487-changetexttounicodeinfo

func ChangeUnicodeToTextInfo

func ChangeUnicodeToTextInfo(ioUnicodeToTextInfo UnicodeToTextInfo, iUnicodeMapping ConstUnicodeMappingPtr) int32

ChangeUnicodeToTextInfo changes the mapping information contained in the specifiedUnicode converter object used to convert Unicode text to a non-Unicodeencoding.

See: https://developer.apple.com/documentation/coreservices/1433509-changeunicodetotextinfo

func ChangedResource deprecated

func ChangedResource(theResource kernel.Handle)

ChangedResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529318-changedresource

func CloseComponent deprecated

func CloseComponent(aComponentInstance ComponentInstance) int16

CloseComponent terminates your application’s connection to a component.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516436-closecomponent

func CloseComponentResFile deprecated

func CloseComponentResFile(refnum ResFileRefNum) int16

CloseComponentResFile closes the resource file that your component opened previously with the OpenComponentResFile function.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516319-closecomponentresfile

func CloseResFile deprecated

func CloseResFile(refNum ResFileRefNum)

CloseResFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529362-closeresfile

func CollectionTagExists deprecated

func CollectionTagExists(c Collection, tag CollectionTag) bool

CollectionTagExists.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551428-collectiontagexists

func CompareAndSwap deprecated

func CompareAndSwap(oldValue uint32, newValue uint32, address *uint32) bool

CompareAndSwap.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490575-compareandswap

func CompositeIconRef deprecated

func CompositeIconRef(backgroundIconRef IconRef, foregroundIconRef IconRef, compositeIconRef *IconRef) int16

CompositeIconRef.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1450541-compositeiconref

func Compound deprecated

func Compound(rate float64, periods float64) float64

Compound.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1492661-compound

func ConvertFromPStringToUnicode

func ConvertFromPStringToUnicode(iTextToUnicodeInfo TextToUnicodeInfo, iPascalStr unsafe.Pointer, iOutputBufLen uint, oUnicodeLen *uint, oUnicodeStr *uint16) int32

ConvertFromPStringToUnicode converts a Pascal string in a Mac OS text encoding toa Unicode string.

See: https://developer.apple.com/documentation/coreservices/1433483-convertfrompstringtounicode

func ConvertFromTextToUnicode

func ConvertFromTextToUnicode(iTextToUnicodeInfo TextToUnicodeInfo, iSourceLen uint, iSourceStr unsafe.Pointer, iControlFlags uint32, iOffsetCount uint, iOffsetArray uintptr, oOffsetCount *uint, oOffsetArray uintptr, iOutputBufLen uint, oSourceRead *uint, oUnicodeLen *uint, oUnicodeStr *uint16) int32

ConvertFromTextToUnicode converts a string from any encoding to Unicode.

See: https://developer.apple.com/documentation/coreservices/1433517-convertfromtexttounicode

func ConvertFromUnicodeToPString

func ConvertFromUnicodeToPString(iUnicodeToTextInfo UnicodeToTextInfo, iUnicodeLen uint, iUnicodeStr *uint16, oPascalStr unsafe.Pointer) int32

ConvertFromUnicodeToPString converts a Unicode string to Pascal in a Mac OS text encoding.

See: https://developer.apple.com/documentation/coreservices/1433581-convertfromunicodetopstring

func ConvertFromUnicodeToScriptCodeRun

func ConvertFromUnicodeToScriptCodeRun(iUnicodeToTextInfo UnicodeToTextRunInfo, iUnicodeLen uint, iUnicodeStr *uint16, iControlFlags uint32, iOffsetCount uint, iOffsetArray uintptr, oOffsetCount *uint, oOffsetArray uintptr, iOutputBufLen uint, oInputRead *uint, oOutputLen *uint, oOutputStr unsafe.Pointer, iScriptRunBufLen uint, oScriptRunOutLen *uint, oScriptCodeRuns *ScriptCodeRun) int32

ConvertFromUnicodeToScriptCodeRun converts a string from Unicode to one or more scripts.

See: https://developer.apple.com/documentation/coreservices/1433662-convertfromunicodetoscriptcoderu

func ConvertFromUnicodeToText

func ConvertFromUnicodeToText(iUnicodeToTextInfo UnicodeToTextInfo, iUnicodeLen uint, iUnicodeStr *uint16, iControlFlags uint32, iOffsetCount uint, iOffsetArray uintptr, oOffsetCount *uint, oOffsetArray uintptr, iOutputBufLen uint, oInputRead *uint, oOutputLen *uint, oOutputStr unsafe.Pointer) int32

ConvertFromUnicodeToText converts a Unicode text string to the destination encodingyou specify.

See: https://developer.apple.com/documentation/coreservices/1433542-convertfromunicodetotext

func ConvertFromUnicodeToTextRun

func ConvertFromUnicodeToTextRun(iUnicodeToTextInfo UnicodeToTextRunInfo, iUnicodeLen uint, iUnicodeStr *uint16, iControlFlags uint32, iOffsetCount uint, iOffsetArray uintptr, oOffsetCount *uint, oOffsetArray uintptr, iOutputBufLen uint, oInputRead *uint, oOutputLen *uint, oOutputStr unsafe.Pointer, iEncodingRunBufLen uint, oEncodingRunOutLen *uint, oEncodingRuns *TextEncodingRun) int32

ConvertFromUnicodeToTextRun converts a string from Unicode to one or more encodings.

See: https://developer.apple.com/documentation/coreservices/1433511-convertfromunicodetotextrun

func CoreEndianFlipData deprecated

func CoreEndianFlipData(dataDomain uint32, dataType uint32, id int16, data unsafe.Pointer, dataLen uint, currentlyNative bool) int32

CoreEndianFlipData calls the flipper callback associated with the specifieddata type.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1575610-coreendianflipdata

func CoreEndianGetFlipper deprecated

func CoreEndianGetFlipper(dataDomain uint32, dataType uint32, proc unsafe.Pointer, refcon uintptr) int32

CoreEndianGetFlipper obtains the flipper callback that is installed for thespecified data type.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1575564-coreendiangetflipper

func CoreEndianInstallFlipper deprecated

func CoreEndianInstallFlipper(dataDomain uint32, dataType uint32, proc unsafe.Pointer, refcon uintptr) int32

CoreEndianInstallFlipper installs a flipper callback for the specified data type.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1575602-coreendianinstallflipper

func CountCollectionItems deprecated

func CountCollectionItems(c Collection) int32

CountCollectionItems.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551438-countcollectionitems

func CountCollectionOwners deprecated

func CountCollectionOwners(c Collection) int32

CountCollectionOwners.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551353-countcollectionowners

func CountCollectionTags deprecated

func CountCollectionTags(c Collection) int32

CountCollectionTags.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551378-countcollectiontags

func CountComponentInstances deprecated

func CountComponentInstances(aComponent Component) int

CountComponentInstances determines the number of open connections being managed by a specified component.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516394-countcomponentinstances

func CountComponents deprecated

func CountComponents(looking *ComponentDescription) int

CountComponents returns the number of registered components that meet the selection criteria specified by your application.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516515-countcomponents

func CountTaggedCollectionItems deprecated

func CountTaggedCollectionItems(c Collection, tag CollectionTag) int32

CountTaggedCollectionItems.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551379-counttaggedcollectionitems

func CountUnicodeMappings

func CountUnicodeMappings(iFilter uint32, iFindMapping ConstUnicodeMappingPtr, oActualCount *uint) int32

CountUnicodeMappings counts available mappings that meet the specified matchingcriteria.

See: https://developer.apple.com/documentation/coreservices/1433665-countunicodemappings

func CreateCompDescriptor

func CreateCompDescriptor(comparisonOperator DescType, operand1 unsafe.Pointer, operand2 unsafe.Pointer, disposeInputs unsafe.Pointer, theDescriptor unsafe.Pointer) int16

CreateCompDescriptor creates a comparison descriptor that specifies how to compare one or more Apple event objects with either another Apple event object or a descriptor.

See: https://developer.apple.com/documentation/coreservices/1449155-createcompdescriptor

func CreateLogicalDescriptor

func CreateLogicalDescriptor(theLogicalTerms unsafe.Pointer, theLogicOperator DescType, disposeInputs unsafe.Pointer, theDescriptor unsafe.Pointer) int16

CreateLogicalDescriptor creates a logical descriptor that specifies a logical operator and one or more logical terms for the Apple Event Manager to evaluate.

See: https://developer.apple.com/documentation/coreservices/1445212-createlogicaldescriptor

func CreateObjSpecifier

func CreateObjSpecifier(desiredClass DescType, theContainer unsafe.Pointer, keyForm DescType, keyData unsafe.Pointer, disposeInputs unsafe.Pointer, objSpecifier unsafe.Pointer) int16

CreateObjSpecifier assembles an object specifier that identifies one or more Apple event objects, from other descriptors.

See: https://developer.apple.com/documentation/coreservices/1450244-createobjspecifier

func CreateOffsetDescriptor

func CreateOffsetDescriptor(theOffset unsafe.Pointer, theDescriptor unsafe.Pointer) int16

CreateOffsetDescriptor creates an offset descriptor that specifies the position of an element in relation to the beginning or end of its container.

See: https://developer.apple.com/documentation/coreservices/1444957-createoffsetdescriptor

func CreateRangeDescriptor

func CreateRangeDescriptor(rangeStart unsafe.Pointer, rangeStop unsafe.Pointer, disposeInputs unsafe.Pointer, theDescriptor unsafe.Pointer) int16

CreateRangeDescriptor creates a range descriptor that specifies a series of consecutive elements in the same container.

See: https://developer.apple.com/documentation/coreservices/1444087-createrangedescriptor

func CreateTextEncoding

func CreateTextEncoding(encodingBase TextEncodingBase, encodingVariant TextEncodingVariant, encodingFormat TextEncodingFormat) kernel.TextEncoding

CreateTextEncoding creates and returns a text encoding specification.

See: https://developer.apple.com/documentation/coreservices/1399639-createtextencoding

func CreateTextToUnicodeInfo

func CreateTextToUnicodeInfo(iUnicodeMapping ConstUnicodeMappingPtr, oTextToUnicodeInfo *TextToUnicodeInfo) int32

CreateTextToUnicodeInfo creates and returns a Unicode converter object containinginformation required for converting strings from a non-Unicode encodingto Unicode.

See: https://developer.apple.com/documentation/coreservices/1433598-createtexttounicodeinfo

func CreateTextToUnicodeInfoByEncoding

func CreateTextToUnicodeInfoByEncoding(iEncoding kernel.TextEncoding, oTextToUnicodeInfo *TextToUnicodeInfo) int32

CreateTextToUnicodeInfoByEncoding based on the given text encoding specification, createsand returns a Unicode converter object containing information requiredfor converting strings from the specified non-Unicode encoding toUnicode.

See: https://developer.apple.com/documentation/coreservices/1433560-createtexttounicodeinfobyencodin

func CreateThreadPool deprecated

func CreateThreadPool(threadStyle ThreadStyle, numToCreate int16, stackSize int) int16

CreateThreadPool.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574200-createthreadpool

func CreateUnicodeToTextInfo

func CreateUnicodeToTextInfo(iUnicodeMapping ConstUnicodeMappingPtr, oUnicodeToTextInfo *UnicodeToTextInfo) int32

CreateUnicodeToTextInfo creates and returns a Unicode converter object containinginformation required for converting strings from Unicode to a non-Unicodeencoding.

See: https://developer.apple.com/documentation/coreservices/1433522-createunicodetotextinfo

func CreateUnicodeToTextInfoByEncoding

func CreateUnicodeToTextInfoByEncoding(iEncoding kernel.TextEncoding, oUnicodeToTextInfo *UnicodeToTextInfo) int32

CreateUnicodeToTextInfoByEncoding based on the given text encoding specification for theconverted text, creates and returns a Unicode converter object containinginformation required for converting strings from Unicode to thespecified non-Unicode encoding.

See: https://developer.apple.com/documentation/coreservices/1433550-createunicodetotextinfobyencodin

func CreateUnicodeToTextRunInfo

func CreateUnicodeToTextRunInfo(iNumberOfMappings uint, iUnicodeMappings *UnicodeMapping, oUnicodeToTextInfo *UnicodeToTextRunInfo) int32

CreateUnicodeToTextRunInfo creates and returns a Unicode converter object containingthe information required for converting a Unicode text string tostrings in one or more non-Unicode encodings.

See: https://developer.apple.com/documentation/coreservices/1433632-createunicodetotextruninfo

func CreateUnicodeToTextRunInfoByEncoding

func CreateUnicodeToTextRunInfoByEncoding(iNumberOfEncodings uint, iEncodings *kernel.TextEncoding, oUnicodeToTextInfo *UnicodeToTextRunInfo) int32

CreateUnicodeToTextRunInfoByEncoding based on the given text encoding specifications for theconverted text runs, creates and returns a Unicode converter objectcontaining information required for converting strings from Unicodeto one or more specified non-Unicode encodings.

See: https://developer.apple.com/documentation/coreservices/1433651-createunicodetotextruninfobyenco

func CreateUnicodeToTextRunInfoByScriptCode

func CreateUnicodeToTextRunInfoByScriptCode(iNumberOfScriptCodes uint, iScripts *int16, oUnicodeToTextInfo *UnicodeToTextRunInfo) int32

CreateUnicodeToTextRunInfoByScriptCode based on the given script codes for the converted textruns, creates and returns a Unicode converter object containinginformation required for converting strings from Unicode to oneor more specified non-Unicode encodings.

See: https://developer.apple.com/documentation/coreservices/1433657-createunicodetotextruninfobyscri

func CurrentProcessorSpeed deprecated

func CurrentProcessorSpeed() int16

CurrentProcessorSpeed.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1427463-currentprocessorspeed

func DCSCopyTextDefinition

func DCSCopyTextDefinition(dictionary DCSDictionaryRef, textString corefoundation.CFStringRef, range_ unsafe.Pointer) corefoundation.CFStringRef

DCSCopyTextDefinition returns the definition associated with the provided text range.

See: https://developer.apple.com/documentation/coreservices/1446842-dcscopytextdefinition

func DCSGetTermRangeInString

func DCSGetTermRangeInString(dictionary DCSDictionaryRef, textString corefoundation.CFStringRef, offset int) corefoundation.CFRange

DCSGetTermRangeInString determines the range of the longest word or phrase with respect to an offset.

See: https://developer.apple.com/documentation/coreservices/1450556-dcsgettermrangeinstring

func DebugAssert deprecated

func DebugAssert(componentSignature uint32, options uint32, assertionString string, exceptionLabelString string, errorString string, fileName string, lineNumber int, value unsafe.Pointer)

DebugAssert.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517794-debugassert

func Dec2f deprecated

func Dec2f(d *Decimal) float32

Dec2f.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1492641-dec2f

func Dec2l deprecated

func Dec2l(d *Decimal) int

Dec2l.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1492660-dec2l

func Dec2num deprecated

func Dec2num(d *Decimal) float64

Dec2num.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1492667-dec2num

func Dec2s deprecated

func Dec2s(d *Decimal) int16

Dec2s.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1492647-dec2s

func Dec2str deprecated

func Dec2str(f *Decform, d *Decimal, s string)

Dec2str.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1492629-dec2str

func DecrementAtomic deprecated

func DecrementAtomic(address *int32) int32

DecrementAtomic.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490603-decrementatomic

func DecrementAtomic8 deprecated

func DecrementAtomic8(address *int8) int8

DecrementAtomic8.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490570-decrementatomic8

func DecrementAtomic16 deprecated

func DecrementAtomic16(address *int16) int16

DecrementAtomic16.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490579-decrementatomic16

func Delay deprecated

func Delay(numTicks uint, finalTicks *uint)

Delay.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1533332-delay

func DeleteGestaltValue deprecated

func DeleteGestaltValue(selector uint32) int16

DeleteGestaltValue deletes a Gestalt selector code so that it is no longer recognized by Gestalt.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1472699-deletegestaltvalue

func Dequeue deprecated

func Dequeue(qElement QElemPtr, qHeader QHdrPtr) int16

Dequeue.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1533381-dequeue

func DetachResource deprecated

func DetachResource(theResource kernel.Handle)

DetachResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529238-detachresource

func DetachResourceFile deprecated

func DetachResourceFile(refNum ResFileRefNum) int16

DetachResourceFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529246-detachresourcefile

func DetermineIfPathIsEnclosedByFolder deprecated

func DetermineIfPathIsEnclosedByFolder(domainOrVRefNum FSVolumeRefNum, folderType uint32, utf8Path []byte, pathIsRealPath bool, outResult *bool) int16

DetermineIfPathIsEnclosedByFolder.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389166-determineifpathisenclosedbyfolde

func DisposeAECoerceDescUPP

func DisposeAECoerceDescUPP(userUPP AECoerceDescUPP)

DisposeAECoerceDescUPP disposes of a universal procedure pointer to a function that coerces data stored in a descriptor.

See: https://developer.apple.com/documentation/coreservices/1448721-disposeaecoercedescupp

func DisposeAECoercePtrUPP

func DisposeAECoercePtrUPP(userUPP AECoercePtrUPP)

DisposeAECoercePtrUPP disposes of a universal procedure pointer to a function that coerces data stored in a buffer.

See: https://developer.apple.com/documentation/coreservices/1450664-disposeaecoerceptrupp

func DisposeAEDisposeExternalUPP

func DisposeAEDisposeExternalUPP(userUPP AEDisposeExternalUPP)

DisposeAEDisposeExternalUPP disposes of a universal procedure pointer to a function that disposes of data supplied to the AECreateDescFromExternalPtr function.

See: https://developer.apple.com/documentation/coreservices/1447284-disposeaedisposeexternalupp

func DisposeAEEventHandlerUPP

func DisposeAEEventHandlerUPP(userUPP AEEventHandlerUPP)

DisposeAEEventHandlerUPP disposes of a universal procedure pointer to an event handler function.

See: https://developer.apple.com/documentation/coreservices/1442066-disposeaeeventhandlerupp

func DisposeCollection deprecated

func DisposeCollection(c Collection)

DisposeCollection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551429-disposecollection

func DisposeCollectionExceptionUPP deprecated

func DisposeCollectionExceptionUPP(userUPP CollectionExceptionUPP)

DisposeCollectionExceptionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551385-disposecollectionexceptionupp

func DisposeCollectionFlattenUPP deprecated

func DisposeCollectionFlattenUPP(userUPP CollectionFlattenUPP)

DisposeCollectionFlattenUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551454-disposecollectionflattenupp

func DisposeComponentFunctionUPP deprecated

func DisposeComponentFunctionUPP(userUPP ComponentFunctionUPP)

DisposeComponentFunctionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516369-disposecomponentfunctionupp

func DisposeComponentMPWorkFunctionUPP deprecated

func DisposeComponentMPWorkFunctionUPP(userUPP ComponentMPWorkFunctionUPP)

DisposeComponentMPWorkFunctionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516328-disposecomponentmpworkfunctionup

func DisposeComponentRoutineUPP deprecated

func DisposeComponentRoutineUPP(userUPP ComponentRoutineUPP)

DisposeComponentRoutineUPP disposes of the universal procedure pointer (UPP) to a component routine callback function.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516334-disposecomponentroutineupp

func DisposeDebugAssertOutputHandlerUPP deprecated

func DisposeDebugAssertOutputHandlerUPP(userUPP DebugAssertOutputHandlerUPP)

DisposeDebugAssertOutputHandlerUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517746-disposedebugassertoutputhandleru

func DisposeDebugComponent deprecated

func DisposeDebugComponent(componentSignature uint32) int32

DisposeDebugComponent.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517752-disposedebugcomponent

func DisposeDebugComponentCallbackUPP deprecated

func DisposeDebugComponentCallbackUPP(userUPP DebugComponentCallbackUPP)

DisposeDebugComponentCallbackUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517724-disposedebugcomponentcallbackupp

func DisposeDebuggerDisposeThreadUPP deprecated

func DisposeDebuggerDisposeThreadUPP(userUPP DebuggerDisposeThreadUPP)

DisposeDebuggerDisposeThreadUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574277-disposedebuggerdisposethreadupp

func DisposeDebuggerNewThreadUPP deprecated

func DisposeDebuggerNewThreadUPP(userUPP DebuggerNewThreadUPP)

DisposeDebuggerNewThreadUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574218-disposedebuggernewthreadupp

func DisposeDebuggerThreadSchedulerUPP deprecated

func DisposeDebuggerThreadSchedulerUPP(userUPP DebuggerThreadSchedulerUPP)

DisposeDebuggerThreadSchedulerUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574286-disposedebuggerthreadschedulerup

func DisposeDeferredTaskUPP deprecated

func DisposeDeferredTaskUPP(userUPP DeferredTaskUPP)

DisposeDeferredTaskUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1533363-disposedeferredtaskupp

func DisposeExceptionHandlerUPP deprecated

func DisposeExceptionHandlerUPP(userUPP ExceptionHandlerUPP)

DisposeExceptionHandlerUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1500674-disposeexceptionhandlerupp

func DisposeFNSubscriptionUPP deprecated

func DisposeFNSubscriptionUPP(userUPP FNSubscriptionUPP)

DisposeFNSubscriptionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566772-disposefnsubscriptionupp

func DisposeFSVolumeEjectUPP deprecated

func DisposeFSVolumeEjectUPP(userUPP FSVolumeEjectUPP)

DisposeFSVolumeEjectUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566754-disposefsvolumeejectupp

func DisposeFSVolumeMountUPP deprecated

func DisposeFSVolumeMountUPP(userUPP FSVolumeMountUPP)

DisposeFSVolumeMountUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565735-disposefsvolumemountupp

func DisposeFSVolumeUnmountUPP deprecated

func DisposeFSVolumeUnmountUPP(userUPP FSVolumeUnmountUPP)

DisposeFSVolumeUnmountUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565476-disposefsvolumeunmountupp

func DisposeFolderManagerNotificationUPP deprecated

func DisposeFolderManagerNotificationUPP(userUPP FolderManagerNotificationUPP)

DisposeFolderManagerNotificationUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389143-disposefoldermanagernotification

func DisposeGetMissingComponentResourceUPP deprecated

func DisposeGetMissingComponentResourceUPP(userUPP GetMissingComponentResourceUPP)

DisposeGetMissingComponentResourceUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516414-disposegetmissingcomponentresour

func DisposeHandle deprecated

func DisposeHandle(h kernel.Handle)

DisposeHandle.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506451-disposehandle

func DisposeIOCompletionUPP deprecated

func DisposeIOCompletionUPP(userUPP IOCompletionUPP)

DisposeIOCompletionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566947-disposeiocompletionupp

func DisposeKCCallbackUPP deprecated

func DisposeKCCallbackUPP(userUPP KCCallbackUPP)

DisposeKCCallbackUPP.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563023-disposekccallbackupp

func DisposeOSLAccessorUPP

func DisposeOSLAccessorUPP(userUPP OSLAccessorUPP)

DisposeOSLAccessorUPP disposes of a universal procedure pointer to an object accessor function.

See: https://developer.apple.com/documentation/coreservices/1444684-disposeoslaccessorupp

func DisposeOSLAdjustMarksUPP

func DisposeOSLAdjustMarksUPP(userUPP OSLAdjustMarksUPP)

DisposeOSLAdjustMarksUPP disposes of a universal procedure pointer to an object callback adjust marks function.

See: https://developer.apple.com/documentation/coreservices/1443940-disposeosladjustmarksupp

func DisposeOSLCompareUPP

func DisposeOSLCompareUPP(userUPP OSLCompareUPP)

DisposeOSLCompareUPP disposes of a universal procedure pointer to an object callback comparison function.

See: https://developer.apple.com/documentation/coreservices/1448398-disposeoslcompareupp

func DisposeOSLCountUPP

func DisposeOSLCountUPP(userUPP OSLCountUPP)

DisposeOSLCountUPP disposes of a universal procedure pointer to an object callback count function.

See: https://developer.apple.com/documentation/coreservices/1443984-disposeoslcountupp

func DisposeOSLDisposeTokenUPP

func DisposeOSLDisposeTokenUPP(userUPP OSLDisposeTokenUPP)

DisposeOSLDisposeTokenUPP disposes of a universal procedure pointer to an object callback dispose token function.

See: https://developer.apple.com/documentation/coreservices/1442670-disposeosldisposetokenupp

func DisposeOSLGetErrDescUPP

func DisposeOSLGetErrDescUPP(userUPP OSLGetErrDescUPP)

DisposeOSLGetErrDescUPP disposes of a universal procedure pointer to an object callback get error descriptor function.

See: https://developer.apple.com/documentation/coreservices/1446061-disposeoslgeterrdescupp

func DisposeOSLGetMarkTokenUPP

func DisposeOSLGetMarkTokenUPP(userUPP OSLGetMarkTokenUPP)

DisposeOSLGetMarkTokenUPP disposes of a universal procedure pointer to an object callback get mark function.

See: https://developer.apple.com/documentation/coreservices/1442377-disposeoslgetmarktokenupp

func DisposeOSLMarkUPP

func DisposeOSLMarkUPP(userUPP OSLMarkUPP)

DisposeOSLMarkUPP disposes of a universal procedure pointer to an object callback mark function.

See: https://developer.apple.com/documentation/coreservices/1449253-disposeoslmarkupp

func DisposePtr deprecated

func DisposePtr(p unsafe.Pointer)

DisposePtr.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506427-disposeptr

func DisposeResErrUPP deprecated

func DisposeResErrUPP(userUPP ResErrUPP)

DisposeResErrUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529332-disposereserrupp

func DisposeSelectorFunctionUPP deprecated

func DisposeSelectorFunctionUPP(userUPP SelectorFunctionUPP)

DisposeSelectorFunctionUPP disposes of a universal procedure pointer to a selector callback function.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1472149-disposeselectorfunctionupp

func DisposeSleepQUPP deprecated

func DisposeSleepQUPP(userUPP SleepQUPP)

DisposeSleepQUPP.

Deprecated: Deprecated since macOS 10.5.

See: https://developer.apple.com/documentation/coreservices/1427426-disposesleepqupp

func DisposeTextToUnicodeInfo

func DisposeTextToUnicodeInfo(ioTextToUnicodeInfo *TextToUnicodeInfo) int32

DisposeTextToUnicodeInfo releases the memory allocated for the specified Unicodeconverter object.

See: https://developer.apple.com/documentation/coreservices/1433669-disposetexttounicodeinfo

func DisposeThread deprecated

func DisposeThread(threadToDump ThreadID, threadResult unsafe.Pointer, recycleThread bool) int16

DisposeThread.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574219-disposethread

func DisposeThreadEntryUPP deprecated

func DisposeThreadEntryUPP(userUPP ThreadEntryUPP)

DisposeThreadEntryUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574275-disposethreadentryupp

func DisposeThreadSchedulerUPP deprecated

func DisposeThreadSchedulerUPP(userUPP ThreadSchedulerUPP)

DisposeThreadSchedulerUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574280-disposethreadschedulerupp

func DisposeThreadSwitchUPP deprecated

func DisposeThreadSwitchUPP(userUPP ThreadSwitchUPP)

DisposeThreadSwitchUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574264-disposethreadswitchupp

func DisposeThreadTerminationUPP deprecated

func DisposeThreadTerminationUPP(userUPP ThreadTerminationUPP)

DisposeThreadTerminationUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574233-disposethreadterminationupp

func DisposeTimerUPP deprecated

func DisposeTimerUPP(userUPP TimerUPP)

DisposeTimerUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1550797-disposetimerupp

func DisposeUnicodeToTextFallbackUPP

func DisposeUnicodeToTextFallbackUPP(userUPP UnicodeToTextFallbackUPP)

DisposeUnicodeToTextFallbackUPP disposes of a a new universal procedure pointer (UPP)to a Unicode-to-text fallback callback.

See: https://developer.apple.com/documentation/coreservices/1433648-disposeunicodetotextfallbackupp

func DisposeUnicodeToTextInfo

func DisposeUnicodeToTextInfo(ioUnicodeToTextInfo *UnicodeToTextInfo) int32

DisposeUnicodeToTextInfo releases the memory allocated for the specified Unicodeconverter object.

See: https://developer.apple.com/documentation/coreservices/1433564-disposeunicodetotextinfo

func DisposeUnicodeToTextRunInfo

func DisposeUnicodeToTextRunInfo(ioUnicodeToTextRunInfo *UnicodeToTextRunInfo) int32

DisposeUnicodeToTextRunInfo releases the memory allocated for the specified Unicodeconverter object.

See: https://developer.apple.com/documentation/coreservices/1433595-disposeunicodetotextruninfo

func Dtox80 deprecated

func Dtox80(x []float64, x80 unsafe.Pointer)

Dtox80.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1492664-dtox80

func DurationToAbsolute deprecated

func DurationToAbsolute(duration int32) uint64

DurationToAbsolute.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501247-durationtoabsolute

func DurationToNanoseconds deprecated

func DurationToNanoseconds(theDuration int32) uint64

DurationToNanoseconds.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501254-durationtonanoseconds

func EmptyCollection deprecated

func EmptyCollection(c Collection)

EmptyCollection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551422-emptycollection

func EmptyHandle deprecated

func EmptyHandle(h kernel.Handle)

EmptyHandle.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506345-emptyhandle

func Enqueue deprecated

func Enqueue(qElement QElemPtr, qHeader QHdrPtr)

Enqueue.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1533340-enqueue

func FNGetDirectoryForSubscription deprecated

func FNGetDirectoryForSubscription(subscription FNSubscriptionRef, ref *FSRef) int32

FNGetDirectoryForSubscription.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566615-fngetdirectoryforsubscription

func FNNotify deprecated

func FNNotify(ref *FSRef, message FNMessage, flags uint32) int32

FNNotify.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565421-fnnotify

func FNNotifyAll deprecated

func FNNotifyAll(message FNMessage, flags uint32) int32

FNNotifyAll.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565760-fnnotifyall

func FNNotifyByPath deprecated

func FNNotifyByPath(path []byte, message FNMessage, flags uint32) int32

FNNotifyByPath.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566346-fnnotifybypath

func FNSubscribe deprecated

func FNSubscribe(directoryRef *FSRef, callback FNSubscriptionUPP, refcon uintptr, flags uint32, subscription *FNSubscriptionRef) int32

FNSubscribe.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565373-fnsubscribe

func FNSubscribeByPath deprecated

func FNSubscribeByPath(directoryPath []byte, callback FNSubscriptionUPP, refcon uintptr, flags uint32, subscription *FNSubscriptionRef) int32

FNSubscribeByPath.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566843-fnsubscribebypath

func FNUnsubscribe deprecated

func FNUnsubscribe(subscription FNSubscriptionRef) int32

FNUnsubscribe.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565232-fnunsubscribe

func FSAllocateFork deprecated

func FSAllocateFork(forkRefNum FSIORefNum, flags FSAllocationFlags, positionMode uint16, positionOffset int64, requestCount uint64, actualCount *uint64) int16

FSAllocateFork.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566175-fsallocatefork

func FSCancelVolumeOperation deprecated

func FSCancelVolumeOperation(volumeOp FSVolumeOperation) int32

FSCancelVolumeOperation.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565396-fscancelvolumeoperation

func FSCatalogSearch deprecated

func FSCatalogSearch(iterator FSIterator, searchCriteria *FSSearchParams, maximumObjects uint, actualObjects *uint, containerChanged *bool, whichInfo FSCatalogInfoBitmap, catalogInfos *FSCatalogInfo, refs *FSRef, specs FSSpecPtr, names *kernel.HFSUniStr255) int16

FSCatalogSearch.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565862-fscatalogsearch

func FSCloseFork deprecated

func FSCloseFork(forkRefNum FSIORefNum) int16

FSCloseFork.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566900-fsclosefork

func FSCloseIterator deprecated

func FSCloseIterator(iterator FSIterator) int16

FSCloseIterator.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566681-fscloseiterator

func FSCompareFSRefs deprecated

func FSCompareFSRefs(ref1 *FSRef, ref2 *FSRef) int16

FSCompareFSRefs.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565571-fscomparefsrefs

func FSCopyDADiskForVolume deprecated

func FSCopyDADiskForVolume(vRefNum FSVolumeRefNum, disk *diskarbitration.DADiskRef) int32

FSCopyDADiskForVolume.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565813-fscopydadiskforvolume

func FSCopyDiskIDForVolume deprecated

func FSCopyDiskIDForVolume(vRefNum FSVolumeRefNum, diskID *corefoundation.CFStringRef) int32

FSCopyDiskIDForVolume.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565655-fscopydiskidforvolume

func FSCopyObjectAsync deprecated

func FSCopyObjectAsync(fileOp FSFileOperationRef, source *FSRef, destDir *FSRef, destName corefoundation.CFStringRef, flags uint32, callback unsafe.Pointer, statusChangeInterval corefoundation.CFTimeInterval, clientContext *FSFileOperationClientContext) int32

FSCopyObjectAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566285-fscopyobjectasync

func FSCopyObjectSync deprecated

func FSCopyObjectSync(source *FSRef, destDir *FSRef, destName corefoundation.CFStringRef, target *FSRef, options uint32) int32

FSCopyObjectSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565258-fscopyobjectsync

func FSCopyURLForVolume deprecated

func FSCopyURLForVolume(vRefNum FSVolumeRefNum, url *corefoundation.CFURLRef) int32

FSCopyURLForVolume.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566159-fscopyurlforvolume

func FSCreateDirectoryUnicode deprecated

func FSCreateDirectoryUnicode(parentRef *FSRef, nameLength uint, name *uint16, whichInfo FSCatalogInfoBitmap, catalogInfo *FSCatalogInfo, newRef *FSRef, newSpec FSSpecPtr, newDirID *uint32) int16

FSCreateDirectoryUnicode.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565979-fscreatedirectoryunicode

func FSCreateFileAndOpenForkUnicode deprecated

func FSCreateFileAndOpenForkUnicode(parentRef *FSRef, nameLength uint, name *uint16, whichInfo FSCatalogInfoBitmap, catalogInfo *FSCatalogInfo, forkNameLength uint, forkName *uint16, permissions int8, forkRefNum *FSIORefNum, newRef *FSRef) int32

FSCreateFileAndOpenForkUnicode.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565699-fscreatefileandopenforkunicode

func FSCreateFileUnicode deprecated

func FSCreateFileUnicode(parentRef *FSRef, nameLength uint, name *uint16, whichInfo FSCatalogInfoBitmap, catalogInfo *FSCatalogInfo, newRef *FSRef, newSpec FSSpecPtr) int16

FSCreateFileUnicode.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565163-fscreatefileunicode

func FSCreateFork deprecated

func FSCreateFork(ref *FSRef, forkNameLength uint, forkName *uint16) int16

FSCreateFork.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565554-fscreatefork

func FSCreateResFile deprecated

func FSCreateResFile(parentRef *FSRef, nameLength uint, name *uint16, whichInfo FSCatalogInfoBitmap, catalogInfo *FSCatalogInfo, newRef *FSRef, newSpec FSSpecPtr)

FSCreateResFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529336-fscreateresfile

func FSCreateResourceFile deprecated

func FSCreateResourceFile(parentRef *FSRef, nameLength uint, name *uint16, whichInfo FSCatalogInfoBitmap, catalogInfo *FSCatalogInfo, forkNameLength uint, forkName *uint16, newRef *FSRef, newSpec FSSpecPtr) int16

FSCreateResourceFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529242-fscreateresourcefile

func FSCreateResourceFork deprecated

func FSCreateResourceFork(ref *FSRef, forkNameLength uint, forkName *uint16, flags uint32) int16

FSCreateResourceFork.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529360-fscreateresourcefork

func FSCreateStringFromHFSUniStr deprecated

func FSCreateStringFromHFSUniStr(alloc corefoundation.CFAllocatorRef, uniStr *kernel.HFSUniStr255) corefoundation.CFStringRef

FSCreateStringFromHFSUniStr.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566957-fscreatestringfromhfsunistr

func FSCreateVolumeOperation deprecated

func FSCreateVolumeOperation(volumeOp *FSVolumeOperation) int32

FSCreateVolumeOperation.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566671-fscreatevolumeoperation

func FSDeleteFork deprecated

func FSDeleteFork(ref *FSRef, forkNameLength uint, forkName *uint16) int16

FSDeleteFork.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565370-fsdeletefork

func FSDeleteObject deprecated

func FSDeleteObject(ref *FSRef) int16

FSDeleteObject.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566089-fsdeleteobject

func FSDetermineIfRefIsEnclosedByFolder deprecated

func FSDetermineIfRefIsEnclosedByFolder(domainOrVRefNum FSVolumeRefNum, folderType uint32, inRef *FSRef, outResult *bool) int16

FSDetermineIfRefIsEnclosedByFolder.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389228-fsdetermineifrefisenclosedbyfold

func FSDisposeVolumeOperation deprecated

func FSDisposeVolumeOperation(volumeOp FSVolumeOperation) int32

FSDisposeVolumeOperation.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565382-fsdisposevolumeoperation

func FSEjectVolumeAsync deprecated

func FSEjectVolumeAsync(vRefNum FSVolumeRefNum, flags uint32, volumeOp FSVolumeOperation, clientData unsafe.Pointer, callback FSVolumeEjectUPP, runloop corefoundation.CFRunLoopRef, runloopMode corefoundation.CFStringRef) int32

FSEjectVolumeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566919-fsejectvolumeasync

func FSEjectVolumeSync deprecated

func FSEjectVolumeSync(vRefNum FSVolumeRefNum, flags uint32, dissenter *int32) int32

FSEjectVolumeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566031-fsejectvolumesync

func FSEventStreamSetDispatchQueue

func FSEventStreamSetDispatchQueue(streamRef FSEventStreamRef, q dispatch.Queue)

FSEventStreamSetDispatchQueue schedules the stream on the specified dispatch queue.

See: https://developer.apple.com/documentation/coreservices/1444164-fseventstreamsetdispatchqueue

func FSEventStreamSetExclusionPaths

func FSEventStreamSetExclusionPaths(streamRef FSEventStreamRef, pathsToExclude corefoundation.CFArrayRef) bool

FSEventStreamSetExclusionPaths.

See: https://developer.apple.com/documentation/coreservices/1444666-fseventstreamsetexclusionpaths

func FSEventsPurgeEventsForDeviceUpToEventId

func FSEventsPurgeEventsForDeviceUpToEventId(dev int32, eventId FSEventStreamEventId) bool

FSEventsPurgeEventsForDeviceUpToEventId.

See: https://developer.apple.com/documentation/coreservices/1447985-fseventspurgeeventsfordeviceupto

func FSFileOperationCancel deprecated

func FSFileOperationCancel(fileOp FSFileOperationRef) int32

FSFileOperationCancel.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565866-fsfileoperationcancel

func FSFileOperationCopyStatus deprecated

func FSFileOperationCopyStatus(fileOp FSFileOperationRef, currentItem *FSRef, stage *FSFileOperationStage, err *int32, statusDictionary *corefoundation.CFDictionaryRef, info unsafe.Pointer) int32

FSFileOperationCopyStatus.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566279-fsfileoperationcopystatus

func FSFileOperationGetTypeID deprecated

func FSFileOperationGetTypeID() uint

FSFileOperationGetTypeID.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565673-fsfileoperationgettypeid

func FSFileOperationScheduleWithRunLoop deprecated

func FSFileOperationScheduleWithRunLoop(fileOp FSFileOperationRef, runLoop corefoundation.CFRunLoopRef, runLoopMode corefoundation.CFStringRef) int32

FSFileOperationScheduleWithRunLoop.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565845-fsfileoperationschedulewithrunlo

func FSFileOperationUnscheduleFromRunLoop deprecated

func FSFileOperationUnscheduleFromRunLoop(fileOp FSFileOperationRef, runLoop corefoundation.CFRunLoopRef, runLoopMode corefoundation.CFStringRef) int32

FSFileOperationUnscheduleFromRunLoop.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565483-fsfileoperationunschedulefromrun

func FSFileSecurityCopyAccessControlList deprecated

func FSFileSecurityCopyAccessControlList(fileSec FSFileSecurityRef, accessControlList unsafe.Pointer) int32

FSFileSecurityCopyAccessControlList.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565603-fsfilesecuritycopyaccesscontroll

func FSFileSecurityGetGroup deprecated

func FSFileSecurityGetGroup(fileSec FSFileSecurityRef, group *uint32) int32

FSFileSecurityGetGroup.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565811-fsfilesecuritygetgroup

func FSFileSecurityGetGroupUUID deprecated

func FSFileSecurityGetGroupUUID(fileSec FSFileSecurityRef, group *corefoundation.CFUUIDBytes) int32

FSFileSecurityGetGroupUUID.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566799-fsfilesecuritygetgroupuuid

func FSFileSecurityGetMode deprecated

func FSFileSecurityGetMode(fileSec FSFileSecurityRef, mode *uint16) int32

FSFileSecurityGetMode.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565106-fsfilesecuritygetmode

func FSFileSecurityGetOwner deprecated

func FSFileSecurityGetOwner(fileSec FSFileSecurityRef, owner *uint32) int32

FSFileSecurityGetOwner.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566659-fsfilesecuritygetowner

func FSFileSecurityGetOwnerUUID deprecated

func FSFileSecurityGetOwnerUUID(fileSec FSFileSecurityRef, owner *corefoundation.CFUUIDBytes) int32

FSFileSecurityGetOwnerUUID.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566694-fsfilesecuritygetowneruuid

func FSFileSecurityGetTypeID deprecated

func FSFileSecurityGetTypeID() uint

FSFileSecurityGetTypeID.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565576-fsfilesecuritygettypeid

func FSFileSecuritySetAccessControlList deprecated

func FSFileSecuritySetAccessControlList(fileSec FSFileSecurityRef, accessControlList unsafe.Pointer) int32

FSFileSecuritySetAccessControlList.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566029-fsfilesecuritysetaccesscontrolli

func FSFileSecuritySetGroup deprecated

func FSFileSecuritySetGroup(fileSec FSFileSecurityRef, group uint32) int32

FSFileSecuritySetGroup.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565296-fsfilesecuritysetgroup

func FSFileSecuritySetGroupUUID deprecated

func FSFileSecuritySetGroupUUID(fileSec FSFileSecurityRef, group *corefoundation.CFUUIDBytes) int32

FSFileSecuritySetGroupUUID.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566445-fsfilesecuritysetgroupuuid

func FSFileSecuritySetMode deprecated

func FSFileSecuritySetMode(fileSec FSFileSecurityRef, mode uint16) int32

FSFileSecuritySetMode.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565105-fsfilesecuritysetmode

func FSFileSecuritySetOwner deprecated

func FSFileSecuritySetOwner(fileSec FSFileSecurityRef, owner uint32) int32

FSFileSecuritySetOwner.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566946-fsfilesecuritysetowner

func FSFileSecuritySetOwnerUUID deprecated

func FSFileSecuritySetOwnerUUID(fileSec FSFileSecurityRef, owner *corefoundation.CFUUIDBytes) int32

FSFileSecuritySetOwnerUUID.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565207-fsfilesecuritysetowneruuid

func FSFindFolder deprecated

func FSFindFolder(vRefNum FSVolumeRefNum, folderType uint32, createFolder bool, foundRef *FSRef) int16

FSFindFolder.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389059-fsfindfolder

func FSFlushFork deprecated

func FSFlushFork(forkRefNum FSIORefNum) int16

FSFlushFork.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566414-fsflushfork

func FSFlushVolume deprecated

func FSFlushVolume(vRefNum FSVolumeRefNum) int32

FSFlushVolume.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565506-fsflushvolume

func FSGetAsyncEjectStatus deprecated

func FSGetAsyncEjectStatus(volumeOp FSVolumeOperation, status *FSEjectStatus, volumeOpStatus *int32, volumeRefNum *FSVolumeRefNum, dissenter *int32, clientData unsafe.Pointer) int32

FSGetAsyncEjectStatus.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565993-fsgetasyncejectstatus

func FSGetAsyncMountStatus deprecated

func FSGetAsyncMountStatus(volumeOp FSVolumeOperation, status *FSMountStatus, volumeOpStatus *int32, mountedVolumeRefNum *FSVolumeRefNum, clientData unsafe.Pointer) int32

FSGetAsyncMountStatus.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566519-fsgetasyncmountstatus

func FSGetAsyncUnmountStatus deprecated

func FSGetAsyncUnmountStatus(volumeOp FSVolumeOperation, status *FSUnmountStatus, volumeOpStatus *int32, volumeRefNum *FSVolumeRefNum, dissenter *int32, clientData unsafe.Pointer) int32

FSGetAsyncUnmountStatus.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565808-fsgetasyncunmountstatus

func FSGetDataForkName deprecated

func FSGetDataForkName(dataForkName *kernel.HFSUniStr255) int16

FSGetDataForkName.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566760-fsgetdataforkname

func FSGetForkCBInfo deprecated

func FSGetForkCBInfo(desiredRefNum FSIORefNum, volume FSVolumeRefNum, iterator *int16, actualRefNum *FSIORefNum, forkInfo *FSForkInfo, ref *FSRef, outForkName *kernel.HFSUniStr255) int16

FSGetForkCBInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565345-fsgetforkcbinfo

func FSGetForkPosition deprecated

func FSGetForkPosition(forkRefNum FSIORefNum, position *int64) int16

FSGetForkPosition.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565089-fsgetforkposition

func FSGetForkSize deprecated

func FSGetForkSize(forkRefNum FSIORefNum, forkSize *int64) int16

FSGetForkSize.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565455-fsgetforksize

func FSGetHFSUniStrFromString deprecated

func FSGetHFSUniStrFromString(theString corefoundation.CFStringRef, uniStr *kernel.HFSUniStr255) int32

FSGetHFSUniStrFromString.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565877-fsgethfsunistrfromstring

func FSGetResourceForkName deprecated

func FSGetResourceForkName(resourceForkName *kernel.HFSUniStr255) int16

FSGetResourceForkName.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566158-fsgetresourceforkname

func FSGetTemporaryDirectoryForReplaceObject deprecated

func FSGetTemporaryDirectoryForReplaceObject(originalObject *FSRef, temporaryDirectory *FSRef, flags uint32) int32

FSGetTemporaryDirectoryForReplaceObject.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566436-fsgettemporarydirectoryforreplac

func FSGetVolumeForDADisk deprecated

func FSGetVolumeForDADisk(disk diskarbitration.DADiskRef, vRefNum *FSVolumeRefNum) int32

FSGetVolumeForDADisk.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566612-fsgetvolumefordadisk

func FSGetVolumeForDiskID deprecated

func FSGetVolumeForDiskID(diskID corefoundation.CFStringRef, vRefNum *FSVolumeRefNum) int32

FSGetVolumeForDiskID.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565529-fsgetvolumefordiskid

func FSGetVolumeInfo deprecated

func FSGetVolumeInfo(volume FSVolumeRefNum, volumeIndex uint, actualVolume *FSVolumeRefNum, whichInfo FSVolumeInfoBitmap, info *FSVolumeInfo, volumeName *kernel.HFSUniStr255, rootDirectory *FSRef) int16

FSGetVolumeInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566350-fsgetvolumeinfo

func FSGetVolumeMountInfo deprecated

func FSGetVolumeMountInfo(volume FSVolumeRefNum, buffer unsafe.Pointer, bufferSize uint, actualSize *uint) int32

FSGetVolumeMountInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565587-fsgetvolumemountinfo

func FSGetVolumeMountInfoSize deprecated

func FSGetVolumeMountInfoSize(volume FSVolumeRefNum, size *uint) int32

FSGetVolumeMountInfoSize.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566473-fsgetvolumemountinfosize

func FSGetVolumeParms deprecated

func FSGetVolumeParms(volume FSVolumeRefNum, buffer *GetVolParmsInfoBuffer, bufferSize uint) int32

FSGetVolumeParms.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565147-fsgetvolumeparms

func FSIsFSRefValid deprecated

func FSIsFSRefValid(ref *FSRef) bool

FSIsFSRefValid.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565952-fsisfsrefvalid

func FSIterateForks deprecated

func FSIterateForks(ref *FSRef, forkIterator *CatPositionRec, forkName *kernel.HFSUniStr255, forkSize *int64, forkPhysicalSize *uint64) int16

FSIterateForks.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565757-fsiterateforks

func FSLockRange deprecated

func FSLockRange(forkRefNum FSIORefNum, positionMode uint16, positionOffset int64, requestCount uint64, rangeStart *uint64) int32

FSLockRange.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566371-fslockrange

func FSMakeFSRefUnicode deprecated

func FSMakeFSRefUnicode(parentRef *FSRef, nameLength uint, name *uint16, textEncodingHint kernel.TextEncoding, newRef *FSRef) int16

FSMakeFSRefUnicode.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565210-fsmakefsrefunicode

func FSMountLocalVolumeAsync deprecated

func FSMountLocalVolumeAsync(diskID corefoundation.CFStringRef, mountDir corefoundation.CFURLRef, volumeOp FSVolumeOperation, clientData unsafe.Pointer, flags uint32, callback FSVolumeMountUPP, runloop corefoundation.CFRunLoopRef, runloopMode corefoundation.CFStringRef) int32

FSMountLocalVolumeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565530-fsmountlocalvolumeasync

func FSMountLocalVolumeSync deprecated

func FSMountLocalVolumeSync(diskID corefoundation.CFStringRef, mountDir corefoundation.CFURLRef, mountedVolumeRefNum *FSVolumeRefNum, flags uint32) int32

FSMountLocalVolumeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566302-fsmountlocalvolumesync

func FSMountServerVolumeAsync deprecated

func FSMountServerVolumeAsync(url corefoundation.CFURLRef, mountDir corefoundation.CFURLRef, user corefoundation.CFStringRef, password corefoundation.CFStringRef, volumeOp FSVolumeOperation, clientData unsafe.Pointer, flags uint32, callback FSVolumeMountUPP, runloop corefoundation.CFRunLoopRef, runloopMode corefoundation.CFStringRef) int32

FSMountServerVolumeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565318-fsmountservervolumeasync

func FSMountServerVolumeSync deprecated

func FSMountServerVolumeSync(url corefoundation.CFURLRef, mountDir corefoundation.CFURLRef, user corefoundation.CFStringRef, password corefoundation.CFStringRef, mountedVolumeRefNum *FSVolumeRefNum, flags uint32) int32

FSMountServerVolumeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565166-fsmountservervolumesync

func FSMoveObject deprecated

func FSMoveObject(ref *FSRef, destDirectory *FSRef, newRef *FSRef) int16

FSMoveObject.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566291-fsmoveobject

func FSMoveObjectAsync deprecated

func FSMoveObjectAsync(fileOp FSFileOperationRef, source *FSRef, destDir *FSRef, destName corefoundation.CFStringRef, flags uint32, callback unsafe.Pointer, statusChangeInterval corefoundation.CFTimeInterval, clientContext *FSFileOperationClientContext) int32

FSMoveObjectAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566762-fsmoveobjectasync

func FSMoveObjectSync deprecated

func FSMoveObjectSync(source *FSRef, destDir *FSRef, destName corefoundation.CFStringRef, target *FSRef, options uint32) int32

FSMoveObjectSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566525-fsmoveobjectsync

func FSMoveObjectToTrashAsync deprecated

func FSMoveObjectToTrashAsync(fileOp FSFileOperationRef, source *FSRef, flags uint32, callback unsafe.Pointer, statusChangeInterval corefoundation.CFTimeInterval, clientContext *FSFileOperationClientContext) int32

FSMoveObjectToTrashAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565854-fsmoveobjecttotrashasync

func FSMoveObjectToTrashSync deprecated

func FSMoveObjectToTrashSync(source *FSRef, target *FSRef, options uint32) int32

FSMoveObjectToTrashSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566651-fsmoveobjecttotrashsync

func FSOpenFork deprecated

func FSOpenFork(ref *FSRef, forkNameLength uint, forkName *uint16, permissions int8, forkRefNum *FSIORefNum) int16

FSOpenFork.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565689-fsopenfork

func FSOpenIterator deprecated

func FSOpenIterator(container *FSRef, iteratorFlags FSIteratorFlags, iterator *FSIterator) int16

FSOpenIterator.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565368-fsopeniterator

func FSOpenOrphanResFile deprecated

func FSOpenOrphanResFile(ref *FSRef, permission int8, refNum *ResFileRefNum) int16

FSOpenOrphanResFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529349-fsopenorphanresfile

func FSOpenResourceFile deprecated

func FSOpenResourceFile(ref *FSRef, forkNameLength uint, forkName *uint16, permissions int8, refNum *ResFileRefNum) int16

FSOpenResourceFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529373-fsopenresourcefile

func FSPathCopyObjectAsync deprecated

func FSPathCopyObjectAsync(fileOp FSFileOperationRef, sourcePath string, destDirPath string, destName corefoundation.CFStringRef, flags uint32, callback unsafe.Pointer, statusChangeInterval corefoundation.CFTimeInterval, clientContext *FSFileOperationClientContext) int32

FSPathCopyObjectAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566056-fspathcopyobjectasync

func FSPathCopyObjectSync deprecated

func FSPathCopyObjectSync(sourcePath string, destDirPath string, destName corefoundation.CFStringRef, targetPath string, options uint32) int32

FSPathCopyObjectSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565384-fspathcopyobjectsync

func FSPathFileOperationCopyStatus deprecated

func FSPathFileOperationCopyStatus(fileOp FSFileOperationRef, currentItem string, stage *FSFileOperationStage, err *int32, statusDictionary *corefoundation.CFDictionaryRef, info unsafe.Pointer) int32

FSPathFileOperationCopyStatus.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566335-fspathfileoperationcopystatus

func FSPathGetTemporaryDirectoryForReplaceObject deprecated

func FSPathGetTemporaryDirectoryForReplaceObject(originalObjectPath string, temporaryDirectoryPath string, maxPathSize uint32, flags uint32) int32

FSPathGetTemporaryDirectoryForReplaceObject.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566163-fspathgettemporarydirectoryforre

func FSPathMakeRef deprecated

func FSPathMakeRef(path []byte, ref *FSRef, isDirectory *bool) int32

FSPathMakeRef.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565195-fspathmakeref

func FSPathMakeRefWithOptions deprecated

func FSPathMakeRefWithOptions(path []byte, options uint32, ref *FSRef, isDirectory *bool) int32

FSPathMakeRefWithOptions.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566339-fspathmakerefwithoptions

func FSPathMoveObjectAsync deprecated

func FSPathMoveObjectAsync(fileOp FSFileOperationRef, sourcePath string, destDirPath string, destName corefoundation.CFStringRef, flags uint32, callback unsafe.Pointer, statusChangeInterval corefoundation.CFTimeInterval, clientContext *FSFileOperationClientContext) int32

FSPathMoveObjectAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566169-fspathmoveobjectasync

func FSPathMoveObjectSync deprecated

func FSPathMoveObjectSync(sourcePath string, destDirPath string, destName corefoundation.CFStringRef, targetPath string, options uint32) int32

FSPathMoveObjectSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566022-fspathmoveobjectsync

func FSPathMoveObjectToTrashAsync deprecated

func FSPathMoveObjectToTrashAsync(fileOp FSFileOperationRef, sourcePath string, flags uint32, callback unsafe.Pointer, statusChangeInterval corefoundation.CFTimeInterval, clientContext *FSFileOperationClientContext) int32

FSPathMoveObjectToTrashAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565270-fspathmoveobjecttotrashasync

func FSPathMoveObjectToTrashSync deprecated

func FSPathMoveObjectToTrashSync(sourcePath string, targetPath string, options uint32) int32

FSPathMoveObjectToTrashSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566818-fspathmoveobjecttotrashsync

func FSPathReplaceObject deprecated

func FSPathReplaceObject(originalObjectPath string, replacementObjectPath string, newName corefoundation.CFStringRef, temporaryName corefoundation.CFStringRef, temporaryDirectoryPath string, flags uint32) int32

FSPathReplaceObject.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566463-fspathreplaceobject

func FSReadFork deprecated

func FSReadFork(forkRefNum FSIORefNum, positionMode uint16, positionOffset int64, requestCount uint, buffer unsafe.Pointer, actualCount *uint) int16

FSReadFork.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565997-fsreadfork

func FSRefMakePath deprecated

func FSRefMakePath(ref *FSRef, path []byte, pathBufferSize uint32) int32

FSRefMakePath.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565635-fsrefmakepath

func FSRenameUnicode deprecated

func FSRenameUnicode(ref *FSRef, nameLength uint, name *uint16, textEncodingHint kernel.TextEncoding, newRef *FSRef) int16

FSRenameUnicode.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565792-fsrenameunicode

func FSReplaceObject deprecated

func FSReplaceObject(originalObject *FSRef, replacementObject *FSRef, newName corefoundation.CFStringRef, temporaryName corefoundation.CFStringRef, temporaryDirectory *FSRef, flags uint32, resultObject *FSRef) int32

FSReplaceObject.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566736-fsreplaceobject

func FSResolveNodeID deprecated

func FSResolveNodeID(volume FSVolumeRefNum, nodeID uint32, newRef FSRefPtr) int32

FSResolveNodeID.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565623-fsresolvenodeid

func FSResourceFileAlreadyOpen deprecated

func FSResourceFileAlreadyOpen(resourceFileRef *FSRef, inChain *bool, refNum *ResFileRefNum) bool

FSResourceFileAlreadyOpen.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529331-fsresourcefilealreadyopen

func FSSetCatalogInfo deprecated

func FSSetCatalogInfo(ref *FSRef, whichInfo FSCatalogInfoBitmap, catalogInfo *FSCatalogInfo) int16

FSSetCatalogInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566580-fssetcataloginfo

func FSSetForkPosition deprecated

func FSSetForkPosition(forkRefNum FSIORefNum, positionMode uint16, positionOffset int64) int16

FSSetForkPosition.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566508-fssetforkposition

func FSSetForkSize deprecated

func FSSetForkSize(forkRefNum FSIORefNum, positionMode uint16, positionOffset int64) int16

FSSetForkSize.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566185-fssetforksize

func FSSetVolumeInfo deprecated

func FSSetVolumeInfo(volume FSVolumeRefNum, whichInfo FSVolumeInfoBitmap, info *FSVolumeInfo) int16

FSSetVolumeInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565574-fssetvolumeinfo

func FSUnlinkObject deprecated

func FSUnlinkObject(ref *FSRef) int16

FSUnlinkObject.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565924-fsunlinkobject

func FSUnlockRange deprecated

func FSUnlockRange(forkRefNum FSIORefNum, positionMode uint16, positionOffset int64, requestCount uint64, rangeStart *uint64) int32

FSUnlockRange.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565302-fsunlockrange

func FSUnmountVolumeAsync deprecated

func FSUnmountVolumeAsync(vRefNum FSVolumeRefNum, flags uint32, volumeOp FSVolumeOperation, clientData unsafe.Pointer, callback FSVolumeUnmountUPP, runloop corefoundation.CFRunLoopRef, runloopMode corefoundation.CFStringRef) int32

FSUnmountVolumeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566587-fsunmountvolumeasync

func FSUnmountVolumeSync deprecated

func FSUnmountVolumeSync(vRefNum FSVolumeRefNum, flags uint32, dissenter *int32) int32

FSUnmountVolumeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566764-fsunmountvolumesync

func FSVolumeMount deprecated

func FSVolumeMount(buffer unsafe.Pointer, mountedVolume *FSVolumeRefNum) int32

FSVolumeMount.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566510-fsvolumemount

func FSWriteFork deprecated

func FSWriteFork(forkRefNum FSIORefNum, positionMode uint16, positionOffset int64, requestCount uint, buffer unsafe.Pointer, actualCount *uint) int16

FSWriteFork.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565526-fswritefork

func FindFolder deprecated

func FindFolder(vRefNum FSVolumeRefNum, folderType uint32, createFolder bool, foundVRefNum *FSVolumeRefNum, foundDirID *int32) int16

FindFolder.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389175-findfolder

func Fix2Frac deprecated

func Fix2Frac(x int32) int32

Fix2Frac.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409219-fix2frac

func Fix2Long deprecated

func Fix2Long(x int32) int32

Fix2Long.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409214-fix2long

func Fix2X deprecated

func Fix2X(x int32) float64

Fix2X.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409225-fix2x

func FixATan2 deprecated

func FixATan2(x int32, y int32) int32

FixATan2.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409269-fixatan2

func FixDiv deprecated

func FixDiv(x int32, y int32) int32

FixDiv.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409285-fixdiv

func FixMul deprecated

func FixMul(a int32, b int32) int32

FixMul.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409241-fixmul

func FixRatio deprecated

func FixRatio(numer int16, denom int16) int32

FixRatio.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409283-fixratio

func FixRound deprecated

func FixRound(x int32) int16

FixRound.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409274-fixround

func FlattenCollection deprecated

func FlattenCollection(c Collection, flattenProc CollectionFlattenUPP, refCon uintptr) int16

FlattenCollection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551324-flattencollection

func FlattenCollectionToHdl deprecated

func FlattenCollectionToHdl(aCollection Collection, flattened kernel.Handle) int16

FlattenCollectionToHdl.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551407-flattencollectiontohdl

func FlattenPartialCollection deprecated

func FlattenPartialCollection(c Collection, flattenProc CollectionFlattenUPP, refCon uintptr, whichAttributes int32, matchingAttributes int32) int16

FlattenPartialCollection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551435-flattenpartialcollection

func Frac2Fix deprecated

func Frac2Fix(x int32) int32

Frac2Fix.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409286-frac2fix

func Frac2X deprecated

func Frac2X(x int32) float64

Frac2X.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409216-frac2x

func FracCos deprecated

func FracCos(x int32) int32

FracCos.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409257-fraccos

func FracDiv deprecated

func FracDiv(x int32, y int32) int32

FracDiv.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409280-fracdiv

func FracMul deprecated

func FracMul(x int32, y int32) int32

FracMul.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409259-fracmul

func FracSin deprecated

func FracSin(x int32) int32

FracSin.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409243-fracsin

func FracSqrt deprecated

func FracSqrt(x int32) int32

FracSqrt.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409284-fracsqrt

func Gestalt deprecated added in v0.6.17

func Gestalt(selector uint32, response *int32) int16

Gestalt obtains information about the operating environment.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1471624-gestalt

func Get1IndResource deprecated

func Get1IndResource(theType uint32, itemIndex ResourceIndex) kernel.Handle

Get1IndResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529284-get1indresource

func Get1IndType deprecated

func Get1IndType(theType *uint32, itemIndex ResourceIndex)

Get1IndType.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529368-get1indtype

func Get1NamedResource deprecated

func Get1NamedResource(theType uint32, name unsafe.Pointer) kernel.Handle

Get1NamedResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529253-get1namedresource

func Get1Resource deprecated

func Get1Resource(theType uint32, theID ResID) kernel.Handle

Get1Resource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529324-get1resource

func GetCPUSpeed deprecated

func GetCPUSpeed() int

GetCPUSpeed.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1427401-getcpuspeed

func GetCollectionDefaultAttributes deprecated

func GetCollectionDefaultAttributes(c Collection) int32

GetCollectionDefaultAttributes.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551445-getcollectiondefaultattributes

func GetCollectionItem deprecated

func GetCollectionItem(c Collection, tag CollectionTag, id int32, itemSize *int32, itemData unsafe.Pointer) int16

GetCollectionItem.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551357-getcollectionitem

func GetCollectionItemHdl deprecated

func GetCollectionItemHdl(aCollection Collection, tag CollectionTag, id int32, itemData kernel.Handle) int16

GetCollectionItemHdl.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551423-getcollectionitemhdl

func GetCollectionItemInfo deprecated

func GetCollectionItemInfo(c Collection, tag CollectionTag, id int32, itemIndex *int32, itemSize *int32, attributes *int32) int16

GetCollectionItemInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551399-getcollectioniteminfo

func GetCollectionRetainCount deprecated

func GetCollectionRetainCount(c Collection) uint

GetCollectionRetainCount.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551403-getcollectionretaincount

func GetComponentIndString deprecated

func GetComponentIndString(aComponent Component, theString unsafe.Pointer, strListID int16, index int16) int16

GetComponentIndString.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516616-getcomponentindstring

func GetComponentInfo deprecated

func GetComponentInfo(aComponent Component, cd *ComponentDescription, componentName kernel.Handle, componentInfo kernel.Handle, componentIcon kernel.Handle) int16

GetComponentInfo returns to your application the registration information for a component.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516438-getcomponentinfo

func GetComponentInstanceError deprecated

func GetComponentInstanceError(aComponentInstance ComponentInstance) int16

GetComponentInstanceError returns to your application the last error generated by a specific connection to a component.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516618-getcomponentinstanceerror

func GetComponentInstanceStorage deprecated

func GetComponentInstanceStorage(aComponentInstance ComponentInstance) kernel.Handle

GetComponentInstanceStorage allows your component to retrieve a handle to the memory associated with a connection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516517-getcomponentinstancestorage

func GetComponentListModSeed deprecated

func GetComponentListModSeed() int32

GetComponentListModSeed allows your application to determine if the list of registered components has changed.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516399-getcomponentlistmodseed

func GetComponentPublicIndString deprecated

func GetComponentPublicIndString(aComponent Component, theString unsafe.Pointer, strListID int16, index int16) int16

GetComponentPublicIndString.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516516-getcomponentpublicindstring

func GetComponentPublicResource deprecated

func GetComponentPublicResource(aComponent Component, resourceType uint32, resourceID int16, theResource *kernel.Handle) int16

GetComponentPublicResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516336-getcomponentpublicresource

func GetComponentPublicResourceList deprecated

func GetComponentPublicResourceList(resourceType uint32, resourceID int16, flags int32, cd *ComponentDescription, missingProc GetMissingComponentResourceUPP, refCon uintptr, atomContainerPtr unsafe.Pointer) int16

GetComponentPublicResourceList.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516460-getcomponentpublicresourcelist

func GetComponentRefcon deprecated

func GetComponentRefcon(aComponent Component) int

GetComponentRefcon retrieves the value of the reference constant for your component.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516331-getcomponentrefcon

func GetComponentResource deprecated

func GetComponentResource(aComponent Component, resType uint32, resID int16, theResource *kernel.Handle) int16

GetComponentResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516387-getcomponentresource

func GetComponentTypeModSeed deprecated

func GetComponentTypeModSeed(componentType uint32) int32

GetComponentTypeModSeed.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516653-getcomponenttypemodseed

func GetCurrentThread deprecated

func GetCurrentThread(currentThreadID *ThreadID) int16

GetCurrentThread.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574216-getcurrentthread

func GetCustomIconsEnabled deprecated

func GetCustomIconsEnabled(vRefNum int16, customIconsEnabled unsafe.Pointer) int16

GetCustomIconsEnabled.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1442255-getcustomiconsenabled

func GetDebugComponentInfo deprecated

func GetDebugComponentInfo(itemIndex uint32, componentSignature *uint32, componentName unsafe.Pointer) int32

GetDebugComponentInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517776-getdebugcomponentinfo

func GetDebugOptionInfo deprecated

func GetDebugOptionInfo(itemIndex uint32, componentSignature uint32, optionSelectorNum *int32, optionName unsafe.Pointer, optionSetting *bool) int32

GetDebugOptionInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517775-getdebugoptioninfo

func GetDefaultThreadStackSize deprecated

func GetDefaultThreadStackSize(threadStyle ThreadStyle, stackSize *int) int16

GetDefaultThreadStackSize.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574231-getdefaultthreadstacksize

func GetFolderNameUnicode deprecated

func GetFolderNameUnicode(vRefNum FSVolumeRefNum, foldType uint32, foundVRefNum *FSVolumeRefNum, name *kernel.HFSUniStr255) int32

GetFolderNameUnicode.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389375-getfoldernameunicode

func GetFolderTypes deprecated

func GetFolderTypes(requestedTypeCount uint32, totalTypeCount *uint32, theTypes *FolderType) int16

GetFolderTypes.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389428-getfoldertypes

func GetHandleSize deprecated

func GetHandleSize(h kernel.Handle) int

GetHandleSize.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506398-gethandlesize

func GetIconRef deprecated

func GetIconRef(vRefNum int16, creator uint32, iconType uint32, theIconRef *IconRef) int16

GetIconRef.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1442776-geticonref

func GetIconRefFromComponent deprecated

func GetIconRefFromComponent(inComponent Component, outIconRef *IconRef) int32

GetIconRefFromComponent.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1447113-geticonreffromcomponent

func GetIconRefFromFileInfo deprecated

func GetIconRefFromFileInfo(inRef unsafe.Pointer, inFileNameLength unsafe.Pointer, inFileName *uint16, inWhichInfo FSCatalogInfoBitmap, inCatalogInfo unsafe.Pointer, inUsageFlags uint32, outIconRef *IconRef, outLabel int16) int32

GetIconRefFromFileInfo.

Deprecated: Deprecated since macOS 10.13.

See: https://developer.apple.com/documentation/coreservices/1447966-geticonreffromfileinfo

func GetIconRefFromFolder deprecated

func GetIconRefFromFolder(vRefNum int16, parentFolderID int32, folderID int32, attributes int8, accessPrivileges int8, theIconRef *IconRef) int16

GetIconRefFromFolder.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1441712-geticonreffromfolder

func GetIconRefFromIconFamilyPtr deprecated

func GetIconRefFromIconFamilyPtr(inIconFamilyPtr unsafe.Pointer, inSize int, outIconRef *IconRef) int32

GetIconRefFromIconFamilyPtr.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1443251-geticonreffromiconfamilyptr

func GetIconRefFromTypeInfo deprecated

func GetIconRefFromTypeInfo(inCreator uint32, inType uint32, inExtension corefoundation.CFStringRef, inMIMEType corefoundation.CFStringRef, inUsageFlags uint32, outIconRef *IconRef) int16

GetIconRefFromTypeInfo.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1445758-geticonreffromtypeinfo

func GetIconRefOwners deprecated

func GetIconRefOwners(theIconRef IconRef, owners *uint16) int16

GetIconRefOwners.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1447221-geticonrefowners

func GetIndResource deprecated

func GetIndResource(theType uint32, itemIndex ResourceIndex) kernel.Handle

GetIndResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529227-getindresource

func GetIndType deprecated

func GetIndType(theType *uint32, itemIndex ResourceIndex)

GetIndType.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529367-getindtype

func GetIndexedCollectionItem deprecated

func GetIndexedCollectionItem(c Collection, itemIndex int32, itemSize *int32, itemData unsafe.Pointer) int16

GetIndexedCollectionItem.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551437-getindexedcollectionitem

func GetIndexedCollectionItemHdl deprecated

func GetIndexedCollectionItemHdl(aCollection Collection, itemIndex int32, itemData kernel.Handle) int16

GetIndexedCollectionItemHdl.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551443-getindexedcollectionitemhdl

func GetIndexedCollectionItemInfo deprecated

func GetIndexedCollectionItemInfo(c Collection, itemIndex int32, tag *CollectionTag, id *int32, itemSize *int32, attributes *int32) int16

GetIndexedCollectionItemInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551449-getindexedcollectioniteminfo

func GetIndexedCollectionTag deprecated

func GetIndexedCollectionTag(c Collection, tagIndex int32, tag *CollectionTag) int16

GetIndexedCollectionTag.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551355-getindexedcollectiontag

func GetMaxResourceSize deprecated

func GetMaxResourceSize(theResource kernel.Handle) int

GetMaxResourceSize.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529298-getmaxresourcesize

func GetNamedResource deprecated

func GetNamedResource(theType uint32, name unsafe.Pointer) kernel.Handle

GetNamedResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529296-getnamedresource

func GetNextFOND deprecated

func GetNextFOND(fondHandle kernel.Handle) kernel.Handle

GetNextFOND.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529354-getnextfond

func GetNextResourceFile deprecated

func GetNextResourceFile(curRefNum ResFileRefNum, nextRefNum *ResFileRefNum) int16

GetNextResourceFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529310-getnextresourcefile

func GetPtrSize deprecated

func GetPtrSize(p unsafe.Pointer) int

GetPtrSize.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506465-getptrsize

func GetResInfo deprecated

func GetResInfo(theResource kernel.Handle, theID *ResID, theType *uint32, name unsafe.Pointer)

GetResInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529369-getresinfo

func GetResource deprecated

func GetResource(theType uint32, theID ResID) kernel.Handle

GetResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529302-getresource

func GetResourceSizeOnDisk deprecated

func GetResourceSizeOnDisk(theResource kernel.Handle) int

GetResourceSizeOnDisk.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529348-getresourcesizeondisk

func GetScriptInfoFromTextEncoding

func GetScriptInfoFromTextEncoding(iEncoding kernel.TextEncoding, oTextScriptID *int16, oTextLanguageID *int16) int32

GetScriptInfoFromTextEncoding.

See: https://developer.apple.com/documentation/coreservices/1399675-getscriptinfofromtextencoding

func GetScriptManagerVariable deprecated

func GetScriptManagerVariable(selector int16) int

GetScriptManagerVariable.

Deprecated: Deprecated since macOS 10.5.

See: https://developer.apple.com/documentation/coreservices/1485022-getscriptmanagervariable

func GetTaggedCollectionItem deprecated

func GetTaggedCollectionItem(c Collection, tag CollectionTag, whichItem int32, itemSize *int32, itemData unsafe.Pointer) int16

GetTaggedCollectionItem.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551359-gettaggedcollectionitem

func GetTaggedCollectionItemInfo deprecated

func GetTaggedCollectionItemInfo(c Collection, tag CollectionTag, whichItem int32, id *int32, itemIndex *int32, itemSize *int32, attributes *int32) int16

GetTaggedCollectionItemInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551370-gettaggedcollectioniteminfo

func GetTextEncodingFromScriptInfo

func GetTextEncodingFromScriptInfo(iTextScriptID int16, iTextLanguageID int16, iTextRegionID int16, oEncoding *kernel.TextEncoding) int32

GetTextEncodingFromScriptInfo.

See: https://developer.apple.com/documentation/coreservices/1399689-gettextencodingfromscriptinfo

func GetTextEncodingName

func GetTextEncodingName(iEncoding kernel.TextEncoding, iNamePartSelector TextEncodingNameSelector, iPreferredRegion int16, iPreferredEncoding kernel.TextEncoding, iOutputBufLen uint, oNameLength *uint, oActualRegion *int16, oActualEncoding *kernel.TextEncoding, oEncodingName TextPtr) int32

GetTextEncodingName returns the localized name for a specified text encoding.

See: https://developer.apple.com/documentation/coreservices/1399645-gettextencodingname

func GetThreadCurrentTaskRef deprecated

func GetThreadCurrentTaskRef(threadTRef *ThreadTaskRef) int16

GetThreadCurrentTaskRef.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574236-getthreadcurrenttaskref

func GetThreadState deprecated

func GetThreadState(threadToGet ThreadID, threadState *kernel.ThreadState) int16

GetThreadState.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574250-getthreadstate

func GetThreadStateGivenTaskRef deprecated

func GetThreadStateGivenTaskRef(threadTRef ThreadTaskRef, threadToGet ThreadID, threadState *kernel.ThreadState) int16

GetThreadStateGivenTaskRef.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574234-getthreadstategiventaskref

func GetTopResourceFile deprecated

func GetTopResourceFile(refNum *ResFileRefNum) int16

GetTopResourceFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529307-gettopresourcefile

func HClrRBit deprecated

func HClrRBit(h kernel.Handle)

HClrRBit.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506459-hclrrbit

func HGetState deprecated

func HGetState(h kernel.Handle) int8

HGetState.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506392-hgetstate

func HLock deprecated

func HLock(h kernel.Handle)

HLock.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506234-hlock

func HLockHi deprecated

func HLockHi(h kernel.Handle)

HLockHi.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506354-hlockhi

func HSetRBit deprecated

func HSetRBit(h kernel.Handle)

HSetRBit.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506324-hsetrbit

func HSetState deprecated

func HSetState(h kernel.Handle, flags int8)

HSetState.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506435-hsetstate

func HUnlock deprecated

func HUnlock(h kernel.Handle)

HUnlock.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506251-hunlock

func HandAndHand deprecated

func HandAndHand(hand1 kernel.Handle, hand2 kernel.Handle) int16

HandAndHand.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506243-handandhand

func HandToHand deprecated

func HandToHand(theHndl *kernel.Handle) int16

HandToHand.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506272-handtohand

func IdentifyFolder deprecated

func IdentifyFolder(vRefNum FSVolumeRefNum, dirID int32, foldType *FolderType) int16

IdentifyFolder.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389047-identifyfolder

func IncrementAtomic deprecated

func IncrementAtomic(address *int32) int32

IncrementAtomic.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490602-incrementatomic

func IncrementAtomic8 deprecated

func IncrementAtomic8(address *int8) int8

IncrementAtomic8.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490585-incrementatomic8

func IncrementAtomic16 deprecated

func IncrementAtomic16(address *int16) int16

IncrementAtomic16.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490600-incrementatomic16

func InsTime deprecated

func InsTime(tmTaskPtr QElemPtr)

InsTime.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1550782-instime

func InsXTime deprecated

func InsXTime(tmTaskPtr QElemPtr)

InsXTime.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1550792-insxtime

func InsertResourceFile deprecated

func InsertResourceFile(refNum ResFileRefNum, where RsrcChainLocation) int16

InsertResourceFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529327-insertresourcefile

func InstallDebugAssertOutputHandler deprecated

func InstallDebugAssertOutputHandler(handler DebugAssertOutputHandlerUPP)

InstallDebugAssertOutputHandler.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517758-installdebugassertoutputhandler

func InstallTimeTask deprecated

func InstallTimeTask(tmTaskPtr QElemPtr) int16

InstallTimeTask.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1550791-installtimetask

func InstallXTimeTask deprecated

func InstallXTimeTask(tmTaskPtr QElemPtr) int16

InstallXTimeTask.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1550795-installxtimetask

func InvalidateFolderDescriptorCache deprecated

func InvalidateFolderDescriptorCache(vRefNum FSVolumeRefNum, dirID int32) int16

InvalidateFolderDescriptorCache.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389097-invalidatefolderdescriptorcache

func InvokeAECoerceDescUPP

func InvokeAECoerceDescUPP(fromDesc unsafe.Pointer, toType DescType, handlerRefcon uintptr, toDesc unsafe.Pointer, userUPP AECoerceDescUPP) int16

InvokeAECoerceDescUPP calls a universal procedure pointer to a function that coerces data stored in a descriptor.

See: https://developer.apple.com/documentation/coreservices/1445450-invokeaecoercedescupp

func InvokeAECoercePtrUPP

func InvokeAECoercePtrUPP(typeCode DescType, dataPtr unsafe.Pointer, dataSize int, toType DescType, handlerRefcon uintptr, result unsafe.Pointer, userUPP AECoercePtrUPP) int16

InvokeAECoercePtrUPP calls a universal procedure pointer to a function that coerces data stored in a buffer.

See: https://developer.apple.com/documentation/coreservices/1447079-invokeaecoerceptrupp

func InvokeAEDisposeExternalUPP

func InvokeAEDisposeExternalUPP(dataPtr unsafe.Pointer, dataLength int, refcon uintptr, userUPP AEDisposeExternalUPP)

InvokeAEDisposeExternalUPP calls a dispose external universal procedure pointer.

See: https://developer.apple.com/documentation/coreservices/1441717-invokeaedisposeexternalupp

func InvokeAEEventHandlerUPP

func InvokeAEEventHandlerUPP(theAppleEvent *AEDesc, reply *AEDesc, handlerRefcon uintptr, userUPP AEEventHandlerUPP) int16

InvokeAEEventHandlerUPP calls an event handler universal procedure pointer.

See: https://developer.apple.com/documentation/coreservices/1446585-invokeaeeventhandlerupp

func InvokeCollectionExceptionUPP deprecated

func InvokeCollectionExceptionUPP(c Collection, status int16, userUPP CollectionExceptionUPP) int16

InvokeCollectionExceptionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551347-invokecollectionexceptionupp

func InvokeCollectionFlattenUPP deprecated

func InvokeCollectionFlattenUPP(size int32, data unsafe.Pointer, refCon uintptr, userUPP CollectionFlattenUPP) int16

InvokeCollectionFlattenUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551380-invokecollectionflattenupp

func InvokeDebugAssertOutputHandlerUPP deprecated

func InvokeDebugAssertOutputHandlerUPP(componentSignature uint32, options uint32, assertionString string, exceptionLabelString string, errorString string, fileName string, lineNumber int, value unsafe.Pointer, outputMsg unsafe.Pointer, userUPP DebugAssertOutputHandlerUPP)

InvokeDebugAssertOutputHandlerUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517712-invokedebugassertoutputhandlerup

func InvokeDebugComponentCallbackUPP deprecated

func InvokeDebugComponentCallbackUPP(optionSelectorNum int32, command uint32, optionSetting *bool, userUPP DebugComponentCallbackUPP)

InvokeDebugComponentCallbackUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517770-invokedebugcomponentcallbackupp

func InvokeDebuggerDisposeThreadUPP deprecated

func InvokeDebuggerDisposeThreadUPP(threadDeleted ThreadID, userUPP DebuggerDisposeThreadUPP)

InvokeDebuggerDisposeThreadUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574308-invokedebuggerdisposethreadupp

func InvokeDebuggerNewThreadUPP deprecated

func InvokeDebuggerNewThreadUPP(threadCreated ThreadID, userUPP DebuggerNewThreadUPP)

InvokeDebuggerNewThreadUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574207-invokedebuggernewthreadupp

func InvokeDeferredTaskUPP deprecated

func InvokeDeferredTaskUPP(dtParam int, userUPP DeferredTaskUPP)

InvokeDeferredTaskUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1533349-invokedeferredtaskupp

func InvokeExceptionHandlerUPP deprecated

func InvokeExceptionHandlerUPP(theException *ExceptionInformation, userUPP ExceptionHandlerUPP) int32

InvokeExceptionHandlerUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1500606-invokeexceptionhandlerupp

func InvokeFNSubscriptionUPP deprecated

func InvokeFNSubscriptionUPP(message FNMessage, flags uint32, refcon uintptr, subscription FNSubscriptionRef, userUPP FNSubscriptionUPP)

InvokeFNSubscriptionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565242-invokefnsubscriptionupp

func InvokeFSVolumeEjectUPP deprecated

func InvokeFSVolumeEjectUPP(volumeOp FSVolumeOperation, clientData unsafe.Pointer, err int32, volumeRefNum FSVolumeRefNum, dissenter int32, userUPP FSVolumeEjectUPP)

InvokeFSVolumeEjectUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565652-invokefsvolumeejectupp

func InvokeFSVolumeMountUPP deprecated

func InvokeFSVolumeMountUPP(volumeOp FSVolumeOperation, clientData unsafe.Pointer, err int32, mountedVolumeRefNum FSVolumeRefNum, userUPP FSVolumeMountUPP)

InvokeFSVolumeMountUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566167-invokefsvolumemountupp

func InvokeFSVolumeUnmountUPP deprecated

func InvokeFSVolumeUnmountUPP(volumeOp FSVolumeOperation, clientData unsafe.Pointer, err int32, volumeRefNum FSVolumeRefNum, dissenter int32, userUPP FSVolumeUnmountUPP)

InvokeFSVolumeUnmountUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565842-invokefsvolumeunmountupp

func InvokeFolderManagerNotificationUPP deprecated

func InvokeFolderManagerNotificationUPP(message uint32, arg unsafe.Pointer, userRefCon uintptr, userUPP FolderManagerNotificationUPP) int32

InvokeFolderManagerNotificationUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389104-invokefoldermanagernotificationu

func InvokeGetMissingComponentResourceUPP deprecated

func InvokeGetMissingComponentResourceUPP(c Component, resType uint32, resID int16, refCon uintptr, resource *kernel.Handle, userUPP GetMissingComponentResourceUPP) int16

InvokeGetMissingComponentResourceUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516491-invokegetmissingcomponentresourc

func InvokeIOCompletionUPP deprecated

func InvokeIOCompletionUPP(paramBlock ParmBlkPtr, userUPP IOCompletionUPP)

InvokeIOCompletionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565303-invokeiocompletionupp

func InvokeIndexToUCStringUPP

func InvokeIndexToUCStringUPP(index uint32, listDataPtr unsafe.Pointer, refcon uintptr, outString *corefoundation.CFStringRef, tsOptions *UCTypeSelectOptions, userUPP IndexToUCStringUPP) bool

InvokeIndexToUCStringUPP.

See: https://developer.apple.com/documentation/coreservices/1390660-invokeindextoucstringupp

func InvokeKCCallbackUPP deprecated

func InvokeKCCallbackUPP(keychainEvent KCEvent, info *KCCallbackInfo, userContext unsafe.Pointer, userUPP KCCallbackUPP) int32

InvokeKCCallbackUPP.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563117-invokekccallbackupp

func InvokeOSLAccessorUPP

func InvokeOSLAccessorUPP(desiredClass DescType, container unsafe.Pointer, containerClass DescType, form DescType, selectionData unsafe.Pointer, value unsafe.Pointer, accessorRefcon uintptr, userUPP OSLAccessorUPP) int16

InvokeOSLAccessorUPP calls an object accessor universal procedure pointer.

See: https://developer.apple.com/documentation/coreservices/1448978-invokeoslaccessorupp

func InvokeOSLAdjustMarksUPP

func InvokeOSLAdjustMarksUPP(newStart unsafe.Pointer, newStop unsafe.Pointer, markToken unsafe.Pointer, userUPP OSLAdjustMarksUPP) int16

InvokeOSLAdjustMarksUPP calls an object callback adjust marks universal procedure pointer.

See: https://developer.apple.com/documentation/coreservices/1448506-invokeosladjustmarksupp

func InvokeOSLCompareUPP

func InvokeOSLCompareUPP(oper DescType, obj1 unsafe.Pointer, obj2 unsafe.Pointer, result unsafe.Pointer, userUPP OSLCompareUPP) int16

InvokeOSLCompareUPP calls an object callback comparison universal procedure pointer.

See: https://developer.apple.com/documentation/coreservices/1443110-invokeoslcompareupp

func InvokeOSLCountUPP

func InvokeOSLCountUPP(desiredType DescType, containerClass DescType, container unsafe.Pointer, result unsafe.Pointer, userUPP OSLCountUPP) int16

InvokeOSLCountUPP calls an object callback count universal procedure pointer.

See: https://developer.apple.com/documentation/coreservices/1448030-invokeoslcountupp

func InvokeOSLDisposeTokenUPP

func InvokeOSLDisposeTokenUPP(unneededToken unsafe.Pointer, userUPP OSLDisposeTokenUPP) int16

InvokeOSLDisposeTokenUPP calls an object callback dispose token universal procedure pointer.

See: https://developer.apple.com/documentation/coreservices/1443963-invokeosldisposetokenupp

func InvokeOSLGetErrDescUPP

func InvokeOSLGetErrDescUPP(appDescPtr unsafe.Pointer, userUPP OSLGetErrDescUPP) int16

InvokeOSLGetErrDescUPP calls an object callback get error descriptor universal procedure pointer.

See: https://developer.apple.com/documentation/coreservices/1448420-invokeoslgeterrdescupp

func InvokeOSLGetMarkTokenUPP

func InvokeOSLGetMarkTokenUPP(dContainerToken unsafe.Pointer, containerClass DescType, result unsafe.Pointer, userUPP OSLGetMarkTokenUPP) int16

InvokeOSLGetMarkTokenUPP calls an object callback get mark universal procedure pointer.

See: https://developer.apple.com/documentation/coreservices/1441894-invokeoslgetmarktokenupp

func InvokeOSLMarkUPP

func InvokeOSLMarkUPP(dToken unsafe.Pointer, markToken unsafe.Pointer, index unsafe.Pointer, userUPP OSLMarkUPP) int16

InvokeOSLMarkUPP calls an object callback mark universal procedure pointer.

See: https://developer.apple.com/documentation/coreservices/1447444-invokeoslmarkupp

func InvokeResErrUPP deprecated

func InvokeResErrUPP(thErr int16, userUPP ResErrUPP)

InvokeResErrUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529311-invokereserrupp

func InvokeSelectorFunctionUPP deprecated

func InvokeSelectorFunctionUPP(selector uint32, response *int32, userUPP SelectorFunctionUPP) int16

InvokeSelectorFunctionUPP invokes a selector callback function.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1473043-invokeselectorfunctionupp

func InvokeSleepQUPP deprecated

func InvokeSleepQUPP(message int, qRecPtr SleepQRecPtr, userUPP SleepQUPP) int

InvokeSleepQUPP.

Deprecated: Deprecated since macOS 10.5.

See: https://developer.apple.com/documentation/coreservices/1427428-invokesleepqupp

func InvokeThreadSwitchUPP deprecated

func InvokeThreadSwitchUPP(threadBeingSwitched ThreadID, switchProcParam unsafe.Pointer, userUPP ThreadSwitchUPP)

InvokeThreadSwitchUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574281-invokethreadswitchupp

func InvokeThreadTerminationUPP deprecated

func InvokeThreadTerminationUPP(threadTerminated ThreadID, terminationProcParam unsafe.Pointer, userUPP ThreadTerminationUPP)

InvokeThreadTerminationUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574290-invokethreadterminationupp

func InvokeTimerUPP deprecated

func InvokeTimerUPP(tmTaskPtr TMTaskPtr, userUPP TimerUPP)

InvokeTimerUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1550780-invoketimerupp

func InvokeUnicodeToTextFallbackUPP

func InvokeUnicodeToTextFallbackUPP(iSrcUniStr *uint16, iSrcUniStrLen uint, oSrcConvLen *uint, oDestStr TextPtr, iDestStrLen uint, oDestConvLen *uint, iInfoPtr unsafe.Pointer, iUnicodeMappingPtr ConstUnicodeMappingPtr, userUPP UnicodeToTextFallbackUPP) int32

InvokeUnicodeToTextFallbackUPP calls your Unicode-to-text fallback callback.

See: https://developer.apple.com/documentation/coreservices/1433599-invokeunicodetotextfallbackupp

func IsDataAvailableInIconRef deprecated

func IsDataAvailableInIconRef(inIconKind uint32, inIconRef IconRef) bool

IsDataAvailableInIconRef.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1446627-isdataavailableiniconref

func IsHandleValid deprecated

func IsHandleValid(h kernel.Handle) bool

IsHandleValid.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506347-ishandlevalid

func IsHeapValid deprecated

func IsHeapValid() bool

IsHeapValid.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506349-isheapvalid

func IsIconRefComposite deprecated

func IsIconRefComposite(compositeIconRef IconRef, backgroundIconRef *IconRef, foregroundIconRef *IconRef) int16

IsIconRefComposite.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1446300-isiconrefcomposite

func IsMetric deprecated

func IsMetric() bool

IsMetric.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1533364-ismetric

func IsPointerValid deprecated

func IsPointerValid(p unsafe.Pointer) bool

IsPointerValid.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506360-ispointervalid

func IsValidIconRef deprecated

func IsValidIconRef(theIconRef IconRef) bool

IsValidIconRef.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1450233-isvalidiconref

func KCAddCallback deprecated

func KCAddCallback(callbackProc KCCallbackUPP, eventMask KCEventMask, userContext unsafe.Pointer) int32

KCAddCallback.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563150-kcaddcallback

func KCCopyItem deprecated

func KCCopyItem(item KCItemRef, destKeychain KCRef, copy_ *KCItemRef) int32

KCCopyItem.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1562984-kccopyitem

func KCCountKeychains deprecated

func KCCountKeychains() uint16

KCCountKeychains.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563038-kccountkeychains

func KCDeleteItem deprecated

func KCDeleteItem(item KCItemRef) int32

KCDeleteItem.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563195-kcdeleteitem

func KCFindAppleSharePassword deprecated

func KCFindAppleSharePassword(serverSignature *uintptr, serverAddress *byte, serverName *byte, volumeName *byte, accountName *byte, maxLength uint32, passwordData unsafe.Pointer, actualLength *uint32, item *KCItemRef) int32

KCFindAppleSharePassword.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563124-kcfindapplesharepassword

func KCFindFirstItem deprecated

func KCFindFirstItem(keychain KCRef, attrList *KCAttributeList, search *KCSearchRef, item *KCItemRef) int32

KCFindFirstItem.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563050-kcfindfirstitem

func KCFindGenericPassword deprecated

func KCFindGenericPassword(serviceName *byte, accountName *byte, maxLength uint32, passwordData unsafe.Pointer, actualLength *uint32, item *KCItemRef) int32

KCFindGenericPassword.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563056-kcfindgenericpassword

func KCFindInternetPassword deprecated

func KCFindInternetPassword(serverName *byte, securityDomain *byte, accountName *byte, port uint16, protocol_ uint32, authType uint32, maxLength uint32, passwordData unsafe.Pointer, actualLength *uint32, item *KCItemRef) int32

KCFindInternetPassword.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563101-kcfindinternetpassword

func KCFindInternetPasswordWithPath deprecated

func KCFindInternetPasswordWithPath(serverName *byte, securityDomain *byte, accountName *byte, path *byte, port uint16, protocol_ uint32, authType uint32, maxLength uint32, passwordData unsafe.Pointer, actualLength *uint32, item *KCItemRef) int32

KCFindInternetPasswordWithPath.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563059-kcfindinternetpasswordwithpath

func KCFindNextItem deprecated

func KCFindNextItem(search KCSearchRef, item *KCItemRef) int32

KCFindNextItem.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563007-kcfindnextitem

func KCGetAttribute deprecated

func KCGetAttribute(item KCItemRef, attr *KCAttribute, actualLength *uint32) int32

KCGetAttribute.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563176-kcgetattribute

func KCGetData deprecated

func KCGetData(item KCItemRef, maxLength uint32, data unsafe.Pointer, actualLength *uint32) int32

KCGetData.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563092-kcgetdata

func KCGetDefaultKeychain deprecated

func KCGetDefaultKeychain(keychain *KCRef) int32

KCGetDefaultKeychain.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563054-kcgetdefaultkeychain

func KCGetIndKeychain deprecated

func KCGetIndKeychain(index uint16, keychain *KCRef) int32

KCGetIndKeychain.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563047-kcgetindkeychain

func KCGetKeychain deprecated

func KCGetKeychain(item KCItemRef, keychain *KCRef) int32

KCGetKeychain.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563140-kcgetkeychain

func KCGetKeychainManagerVersion deprecated

func KCGetKeychainManagerVersion(returnVers *uint32) int32

KCGetKeychainManagerVersion.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1562979-kcgetkeychainmanagerversion

func KCGetKeychainName deprecated

func KCGetKeychainName(keychain KCRef, keychainName string) int32

KCGetKeychainName.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563052-kcgetkeychainname

func KCGetStatus deprecated

func KCGetStatus(keychain KCRef, keychainStatus *uint32) int32

KCGetStatus.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563057-kcgetstatus

func KCIsInteractionAllowed deprecated

func KCIsInteractionAllowed() bool

KCIsInteractionAllowed.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563065-kcisinteractionallowed

func KCLock deprecated

func KCLock(keychain KCRef) int32

KCLock.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563012-kclock

func KCMakeAliasFromKCRef deprecated

func KCMakeAliasFromKCRef(keychain KCRef, keychainAlias *AliasHandle) int32

KCMakeAliasFromKCRef.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563163-kcmakealiasfromkcref

func KCMakeKCRefFromAlias deprecated

func KCMakeKCRefFromAlias(keychainAlias AliasHandle, keychain *KCRef) int32

KCMakeKCRefFromAlias.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563083-kcmakekcreffromalias

func KCMakeKCRefFromFSRef deprecated

func KCMakeKCRefFromFSRef(keychainFSRef *FSRef, keychain *KCRef) int32

KCMakeKCRefFromFSRef.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563116-kcmakekcreffromfsref

func KCNewItem deprecated

func KCNewItem(itemClass KCItemClass, itemCreator uint32, length uint32, data unsafe.Pointer, item *KCItemRef) int32

KCNewItem.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563010-kcnewitem

func KCReleaseItem deprecated

func KCReleaseItem(item *KCItemRef) int32

KCReleaseItem.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563161-kcreleaseitem

func KCReleaseKeychain deprecated

func KCReleaseKeychain(keychain *KCRef) int32

KCReleaseKeychain.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563130-kcreleasekeychain

func KCReleaseSearch deprecated

func KCReleaseSearch(search *KCSearchRef) int32

KCReleaseSearch.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1562982-kcreleasesearch

func KCRemoveCallback deprecated

func KCRemoveCallback(callbackProc KCCallbackUPP) int32

KCRemoveCallback.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563066-kcremovecallback

func KCSetAttribute deprecated

func KCSetAttribute(item KCItemRef, attr *KCAttribute) int32

KCSetAttribute.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563089-kcsetattribute

func KCSetData deprecated

func KCSetData(item KCItemRef, length uint32, data unsafe.Pointer) int32

KCSetData.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563018-kcsetdata

func KCSetDefaultKeychain deprecated

func KCSetDefaultKeychain(keychain KCRef) int32

KCSetDefaultKeychain.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563084-kcsetdefaultkeychain

func KCSetInteractionAllowed deprecated

func KCSetInteractionAllowed(state bool) int32

KCSetInteractionAllowed.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563079-kcsetinteractionallowed

func KCUpdateItem deprecated

func KCUpdateItem(item KCItemRef) int32

KCUpdateItem.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563138-kcupdateitem

func Kcfindapplesharepassword deprecated

func Kcfindapplesharepassword(serverSignature *uintptr, serverAddress *byte, serverName *byte, volumeName *byte, accountName *byte, maxLength uint32, passwordData unsafe.Pointer, actualLength *uint32, item *KCItemRef) int32

Kcfindapplesharepassword.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563164-kcfindapplesharepassword

func Kcfindgenericpassword deprecated

func Kcfindgenericpassword(serviceName *byte, accountName *byte, maxLength uint32, passwordData unsafe.Pointer, actualLength *uint32, item *KCItemRef) int32

Kcfindgenericpassword.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1562994-kcfindgenericpassword

func Kcfindinternetpassword deprecated

func Kcfindinternetpassword(serverName *byte, securityDomain *byte, accountName *byte, port uint16, protocol_ uint32, authType uint32, maxLength uint32, passwordData unsafe.Pointer, actualLength *uint32, item *KCItemRef) int32

Kcfindinternetpassword.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563036-kcfindinternetpassword

func Kcfindinternetpasswordwithpath deprecated

func Kcfindinternetpasswordwithpath(serverName *byte, securityDomain *byte, accountName *byte, path *byte, port uint16, protocol_ uint32, authType uint32, maxLength uint32, passwordData unsafe.Pointer, actualLength *uint32, item *KCItemRef) int32

Kcfindinternetpasswordwithpath.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563135-kcfindinternetpasswordwithpath

func Kcgetkeychainname deprecated

func Kcgetkeychainname(keychain KCRef, keychainName string) int32

Kcgetkeychainname.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1563005-kcgetkeychainname

func LMGetApFontID deprecated

func LMGetApFontID() int16

LMGetApFontID.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1564978-lmgetapfontid

func LMGetBootDrive deprecated

func LMGetBootDrive() int16

LMGetBootDrive.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1564982-lmgetbootdrive

func LMGetIntlSpec deprecated

func LMGetIntlSpec() unsafe.Pointer

LMGetIntlSpec.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565043-lmgetintlspec

func LMGetMemErr deprecated

func LMGetMemErr() int16

LMGetMemErr.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506460-lmgetmemerr

func LMGetResErr deprecated

func LMGetResErr() int16

LMGetResErr.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565008-lmgetreserr

func LMGetResLoad deprecated

func LMGetResLoad() uint8

LMGetResLoad.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565056-lmgetresload

func LMGetSysFontSize deprecated

func LMGetSysFontSize() int16

LMGetSysFontSize.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1565057-lmgetsysfontsize

func LMGetSysMap deprecated

func LMGetSysMap() int16

LMGetSysMap.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565032-lmgetsysmap

func LMGetTmpResLoad deprecated

func LMGetTmpResLoad() uint8

LMGetTmpResLoad.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1564999-lmgettmpresload

func LMSetApFontID deprecated

func LMSetApFontID(value int16)

LMSetApFontID.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1565011-lmsetapfontid

func LMSetBootDrive deprecated

func LMSetBootDrive(value int16)

LMSetBootDrive.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1564973-lmsetbootdrive

func LMSetIntlSpec deprecated

func LMSetIntlSpec(value unsafe.Pointer)

LMSetIntlSpec.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565016-lmsetintlspec

func LMSetMemErr deprecated

func LMSetMemErr(value int16)

LMSetMemErr.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506279-lmsetmemerr

func LMSetResErr deprecated

func LMSetResErr(value int16)

LMSetResErr.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565000-lmsetreserr

func LMSetResLoad deprecated

func LMSetResLoad(value uint8)

LMSetResLoad.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565052-lmsetresload

func LMSetSysFontFam deprecated

func LMSetSysFontFam(value int16)

LMSetSysFontFam.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1565044-lmsetsysfontfam

func LMSetSysFontSize deprecated

func LMSetSysFontSize(value int16)

LMSetSysFontSize.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565048-lmsetsysfontsize

func LMSetSysMap deprecated

func LMSetSysMap(value int16)

LMSetSysMap.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565018-lmsetsysmap

func LMSetTmpResLoad deprecated

func LMSetTmpResLoad(value uint8)

LMSetTmpResLoad.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565025-lmsettmpresload

func LSCanURLAcceptURL

func LSCanURLAcceptURL(inItemURL corefoundation.CFURLRef, inTargetURL corefoundation.CFURLRef, inRoleMask LSRolesMask, inFlags LSAcceptanceFlags, outAcceptsItem unsafe.Pointer) int32

LSCanURLAcceptURL tests whether an app can accept (open) an item for a URL.

See: https://developer.apple.com/documentation/coreservices/1441854-lscanurlaccepturl

func LSCopyAllHandlersForURLScheme deprecated

func LSCopyAllHandlersForURLScheme(inURLScheme corefoundation.CFStringRef) corefoundation.CFArrayRef

LSCopyAllHandlersForURLScheme locates app bundle identifiers for apps capable of handling the specified URL scheme.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1443240-lscopyallhandlersforurlscheme

func LSCopyAllRoleHandlersForContentType deprecated

func LSCopyAllRoleHandlersForContentType(inContentType corefoundation.CFStringRef, inRole LSRolesMask) corefoundation.CFArrayRef

LSCopyAllRoleHandlersForContentType locates an array of bundle identifiers for apps capable of handling a specified content type with the specified roles.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1448020-lscopyallrolehandlersforcontentt

func LSCopyApplicationURLsForBundleIdentifier deprecated

func LSCopyApplicationURLsForBundleIdentifier(inBundleIdentifier corefoundation.CFStringRef, outError *corefoundation.CFErrorRef) corefoundation.CFArrayRef

LSCopyApplicationURLsForBundleIdentifier locates all URLs for apps that correspond to the specified bundle identifier.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1449290-lscopyapplicationurlsforbundleid

func LSCopyApplicationURLsForURL deprecated

func LSCopyApplicationURLsForURL(inURL corefoundation.CFURLRef, inRoleMask LSRolesMask) corefoundation.CFArrayRef

LSCopyApplicationURLsForURL locates all known apps suitable for opening an item for the specified URL.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1445148-lscopyapplicationurlsforurl

func LSCopyDefaultApplicationURLForContentType deprecated

func LSCopyDefaultApplicationURLForContentType(inContentType corefoundation.CFStringRef, inRoleMask LSRolesMask, outError *corefoundation.CFErrorRef) corefoundation.CFURLRef

LSCopyDefaultApplicationURLForContentType returns the app that opens a content type.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1447734-lscopydefaultapplicationurlforco

func LSCopyDefaultApplicationURLForURL deprecated

func LSCopyDefaultApplicationURLForURL(inURL corefoundation.CFURLRef, inRoleMask LSRolesMask, outError *corefoundation.CFErrorRef) corefoundation.CFURLRef

LSCopyDefaultApplicationURLForURL returns the app that opens an item.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1448824-lscopydefaultapplicationurlforur

func LSCopyDefaultHandlerForURLScheme deprecated

func LSCopyDefaultHandlerForURLScheme(inURLScheme corefoundation.CFStringRef) corefoundation.CFStringRef

LSCopyDefaultHandlerForURLScheme returns the bundle identifier of the user’s preferred default handler for the specified URL scheme.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1441725-lscopydefaulthandlerforurlscheme

func LSCopyDefaultRoleHandlerForContentType deprecated

func LSCopyDefaultRoleHandlerForContentType(inContentType corefoundation.CFStringRef, inRole LSRolesMask) corefoundation.CFStringRef

LSCopyDefaultRoleHandlerForContentType returns the bundle identifier of the user’s preferred default handler for the specified content type with the specified role.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1449868-lscopydefaultrolehandlerforconte

func LSCopyDisplayNameForURL deprecated

func LSCopyDisplayNameForURL(inURL corefoundation.CFURLRef, outDisplayName *corefoundation.CFStringRef) int32

LSCopyDisplayNameForURL obtains the display name for an item with a URL.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1446850-lscopydisplaynameforurl

func LSCopyItemInfoForURL deprecated

func LSCopyItemInfoForURL(inURL corefoundation.CFURLRef, inWhichInfo LSRequestedInfo, outItemInfo unsafe.Pointer) int32

LSCopyItemInfoForURL obtains requested information about an item with a URL.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1445685-lscopyiteminfoforurl

func LSCopyKindStringForURL deprecated

func LSCopyKindStringForURL(inURL corefoundation.CFURLRef, outKindString *corefoundation.CFStringRef) int32

LSCopyKindStringForURL obtains the kind string for an item with a URL.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1447481-lscopykindstringforurl

func LSGetExtensionInfo deprecated

func LSGetExtensionInfo(inNameLen unsafe.Pointer, inNameBuffer *uint16, outExtStartIndex unsafe.Pointer) int32

LSGetExtensionInfo obtains the starting index of the extension within a filename.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1446043-lsgetextensioninfo

func LSOpenApplication deprecated

func LSOpenApplication(appParams unsafe.Pointer, outPSN unsafe.Pointer) int32

LSOpenApplication launches the specified app.

Deprecated: Deprecated since macOS 10.10.

See: https://developer.apple.com/documentation/coreservices/1447930-lsopenapplication

func LSOpenCFURLRef

func LSOpenCFURLRef(inURL corefoundation.CFURLRef, outLaunchedURL *corefoundation.CFURLRef) int32

LSOpenCFURLRef opens an item for a URL in the default manner in its preferred app.

See: https://developer.apple.com/documentation/coreservices/1442850-lsopencfurlref

func LSOpenFSRef deprecated

func LSOpenFSRef(inRef unsafe.Pointer, outLaunchedRef unsafe.Pointer) int32

LSOpenFSRef opens an item with a file-system reference in the default manner in its preferred app.

Deprecated: Deprecated since macOS 10.10.

See: https://developer.apple.com/documentation/coreservices/1445663-lsopenfsref

func LSOpenFromRefSpec deprecated

func LSOpenFromRefSpec(inLaunchSpec unsafe.Pointer, outLaunchedRef unsafe.Pointer) int32

LSOpenFromRefSpec opens one or more items with a file-system reference in either their preferred apps or a designated app.

Deprecated: Deprecated since macOS 10.10.

See: https://developer.apple.com/documentation/coreservices/1444466-lsopenfromrefspec

func LSOpenFromURLSpec

func LSOpenFromURLSpec(inLaunchSpec unsafe.Pointer, outLaunchedURL *corefoundation.CFURLRef) int32

LSOpenFromURLSpec opens one or more items for a URL in the preferred apps or a designated app.

See: https://developer.apple.com/documentation/coreservices/1441986-lsopenfromurlspec

func LSOpenItemsWithRole deprecated

func LSOpenItemsWithRole(inItems unsafe.Pointer, inItemCount int, inRole LSRolesMask, inAEParam unsafe.Pointer, inAppParams unsafe.Pointer, outPSNs unsafe.Pointer, inMaxPSNCount int) int32

LSOpenItemsWithRole opens items with an array of file-system references with a specified role.

Deprecated: Deprecated since macOS 10.10.

See: https://developer.apple.com/documentation/coreservices/1449783-lsopenitemswithrole

func LSOpenURLsWithRole deprecated

func LSOpenURLsWithRole(inURLs corefoundation.CFArrayRef, inRole LSRolesMask, inAEParam unsafe.Pointer, inAppParams unsafe.Pointer, outPSNs unsafe.Pointer, inMaxPSNCount int) int32

LSOpenURLsWithRole opens one or more URLs with the specified roles.

Deprecated: Deprecated since macOS 10.10.

See: https://developer.apple.com/documentation/coreservices/1448184-lsopenurlswithrole

func LSRegisterURL

func LSRegisterURL(inURL corefoundation.CFURLRef, inUpdate unsafe.Pointer) int32

LSRegisterURL registers an app, using a URL, in the Launch Services database.

See: https://developer.apple.com/documentation/coreservices/1446350-lsregisterurl

func LSSetDefaultHandlerForURLScheme deprecated

func LSSetDefaultHandlerForURLScheme(inURLScheme corefoundation.CFStringRef, inHandlerBundleID corefoundation.CFStringRef) int32

LSSetDefaultHandlerForURLScheme sets the user’s preferred default handler for the specified URL scheme.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1447760-lssetdefaulthandlerforurlscheme

func LSSetDefaultRoleHandlerForContentType deprecated

func LSSetDefaultRoleHandlerForContentType(inContentType corefoundation.CFStringRef, inRole LSRolesMask, inHandlerBundleID corefoundation.CFStringRef) int32

LSSetDefaultRoleHandlerForContentType sets the user’s preferred default handler for the specified content type in the specified roles.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1444955-lssetdefaultrolehandlerforconten

func LSSetExtensionHiddenForURL deprecated

func LSSetExtensionHiddenForURL(inURL corefoundation.CFURLRef, inHide unsafe.Pointer) int32

LSSetExtensionHiddenForURL specifies whether to show or hide the filename extension for an item with a URL.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1443948-lssetextensionhiddenforurl

func LSSetHandlerOptionsForContentType deprecated

func LSSetHandlerOptionsForContentType(inContentType corefoundation.CFStringRef, inOptions LSHandlerOptions) int32

LSSetHandlerOptionsForContentType sets the handler option for the specified content type.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1447588-lssethandleroptionsforcontenttyp

func LSSetItemAttribute deprecated

func LSSetItemAttribute(inItem unsafe.Pointer, inRoles LSRolesMask, inAttributeName corefoundation.CFStringRef, inValue corefoundation.CFTypeRef) int32

LSSetItemAttribute.

Deprecated: Deprecated since macOS 10.10.

See: https://developer.apple.com/documentation/coreservices/1446733-lssetitemattribute

func LSSharedFileListAddObserver deprecated

func LSSharedFileListAddObserver(inList LSSharedFileListRef, inRunloop corefoundation.CFRunLoopRef, inRunloopMode corefoundation.CFStringRef, callback LSSharedFileListChangedProcPtr, context unsafe.Pointer)

LSSharedFileListAddObserver.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1445770-lssharedfilelistaddobserver

func LSSharedFileListCopyProperty deprecated

func LSSharedFileListCopyProperty(inList LSSharedFileListRef, inPropertyName corefoundation.CFStringRef) corefoundation.CFTypeRef

LSSharedFileListCopyProperty.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1444588-lssharedfilelistcopyproperty

func LSSharedFileListCopySnapshot deprecated

func LSSharedFileListCopySnapshot(inList LSSharedFileListRef, outSnapshotSeed *uint32) corefoundation.CFArrayRef

LSSharedFileListCopySnapshot.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1448112-lssharedfilelistcopysnapshot

func LSSharedFileListGetSeedValue deprecated

func LSSharedFileListGetSeedValue(inList LSSharedFileListRef) uint32

LSSharedFileListGetSeedValue.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1444885-lssharedfilelistgetseedvalue

func LSSharedFileListGetTypeID deprecated

func LSSharedFileListGetTypeID() uint

LSSharedFileListGetTypeID.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1450618-lssharedfilelistgettypeid

func LSSharedFileListItemCopyDisplayName deprecated

func LSSharedFileListItemCopyDisplayName(inItem LSSharedFileListItemRef) corefoundation.CFStringRef

LSSharedFileListItemCopyDisplayName.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1449716-lssharedfilelistitemcopydisplayn

func LSSharedFileListItemCopyProperty deprecated

func LSSharedFileListItemCopyProperty(inItem LSSharedFileListItemRef, inPropertyName corefoundation.CFStringRef) corefoundation.CFTypeRef

LSSharedFileListItemCopyProperty.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1445074-lssharedfilelistitemcopyproperty

func LSSharedFileListItemCopyResolvedURL deprecated

func LSSharedFileListItemCopyResolvedURL(inItem LSSharedFileListItemRef, inFlags LSSharedFileListResolutionFlags, outError *corefoundation.CFErrorRef) corefoundation.CFURLRef

LSSharedFileListItemCopyResolvedURL.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1449882-lssharedfilelistitemcopyresolved

func LSSharedFileListItemGetID deprecated

func LSSharedFileListItemGetID(inItem LSSharedFileListItemRef) uint32

LSSharedFileListItemGetID.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1443305-lssharedfilelistitemgetid

func LSSharedFileListItemGetTypeID deprecated

func LSSharedFileListItemGetTypeID() uint

LSSharedFileListItemGetTypeID.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1447138-lssharedfilelistitemgettypeid

func LSSharedFileListItemMove deprecated

func LSSharedFileListItemMove(inList LSSharedFileListRef, inItem LSSharedFileListItemRef, inMoveAfterItem LSSharedFileListItemRef) int32

LSSharedFileListItemMove.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1444348-lssharedfilelistitemmove

func LSSharedFileListItemRemove deprecated

func LSSharedFileListItemRemove(inList LSSharedFileListRef, inItem LSSharedFileListItemRef) int32

LSSharedFileListItemRemove.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1442025-lssharedfilelistitemremove

func LSSharedFileListItemResolve deprecated

func LSSharedFileListItemResolve(inItem LSSharedFileListItemRef, inFlags LSSharedFileListResolutionFlags, outURL *corefoundation.CFURLRef, outRef unsafe.Pointer) int32

LSSharedFileListItemResolve.

Deprecated: Deprecated since macOS 10.10.

See: https://developer.apple.com/documentation/coreservices/1447347-lssharedfilelistitemresolve

func LSSharedFileListItemSetProperty deprecated

func LSSharedFileListItemSetProperty(inItem LSSharedFileListItemRef, inPropertyName corefoundation.CFStringRef, inPropertyData corefoundation.CFTypeRef) int32

LSSharedFileListItemSetProperty.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1445766-lssharedfilelistitemsetproperty

func LSSharedFileListRemoveAllItems deprecated

func LSSharedFileListRemoveAllItems(inList LSSharedFileListRef) int32

LSSharedFileListRemoveAllItems.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1446389-lssharedfilelistremoveallitems

func LSSharedFileListRemoveObserver deprecated

func LSSharedFileListRemoveObserver(inList LSSharedFileListRef, inRunloop corefoundation.CFRunLoopRef, inRunloopMode corefoundation.CFStringRef, callback LSSharedFileListChangedProcPtr, context unsafe.Pointer)

LSSharedFileListRemoveObserver.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1443404-lssharedfilelistremoveobserver

func LSSharedFileListSetAuthorization deprecated

func LSSharedFileListSetAuthorization(inList LSSharedFileListRef, inAuthorization security.AuthorizationRef) int32

LSSharedFileListSetAuthorization.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1446834-lssharedfilelistsetauthorization

func LSSharedFileListSetProperty deprecated

func LSSharedFileListSetProperty(inList LSSharedFileListRef, inPropertyName corefoundation.CFStringRef, inPropertyData corefoundation.CFTypeRef) int32

LSSharedFileListSetProperty.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1448857-lssharedfilelistsetproperty

func LoadResource deprecated

func LoadResource(theResource kernel.Handle)

LoadResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529245-loadresource

func LocaleCountNames deprecated

func LocaleCountNames(locale LocaleRef, opVariant LocaleOperationVariant, nameMask LocaleNameMask, nameCount *uint) int32

LocaleCountNames.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1580255-localecountnames

func LocaleGetIndName deprecated

func LocaleGetIndName(locale LocaleRef, opVariant LocaleOperationVariant, nameMask LocaleNameMask, nameIndex uint, maxNameLen uint, actualNameLen *uint, displayName *uint16, displayLocale *LocaleRef) int32

LocaleGetIndName.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1580265-localegetindname

func LocaleGetName deprecated

func LocaleGetName(locale LocaleRef, opVariant LocaleOperationVariant, nameMask LocaleNameMask, displayLocale LocaleRef, maxNameLen uint, actualNameLen *uint, displayName *uint16) int32

LocaleGetName.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1580248-localegetname

func LocaleOperationCountLocales deprecated

func LocaleOperationCountLocales(opClass LocaleOperationClass, localeCount *uint) int32

LocaleOperationCountLocales.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1580264-localeoperationcountlocales

func LocaleOperationCountNames

func LocaleOperationCountNames(opClass LocaleOperationClass, nameCount *uint) int32

LocaleOperationCountNames.

See: https://developer.apple.com/documentation/coreservices/1580257-localeoperationcountnames

func LocaleOperationGetIndName

func LocaleOperationGetIndName(opClass LocaleOperationClass, nameIndex uint, maxNameLen uint, actualNameLen *uint, displayName *uint16, displayLocale *LocaleRef) int32

LocaleOperationGetIndName.

See: https://developer.apple.com/documentation/coreservices/1580260-localeoperationgetindname

func LocaleOperationGetLocales deprecated

func LocaleOperationGetLocales(opClass LocaleOperationClass, maxLocaleCount uint, actualLocaleCount *uint, localeVariantList *LocaleAndVariant) int32

LocaleOperationGetLocales.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1580279-localeoperationgetlocales

func LocaleOperationGetName

func LocaleOperationGetName(opClass LocaleOperationClass, displayLocale LocaleRef, maxNameLen uint, actualNameLen *uint, displayName *uint16) int32

LocaleOperationGetName.

See: https://developer.apple.com/documentation/coreservices/1580269-localeoperationgetname

func LocaleRefFromLangOrRegionCode

func LocaleRefFromLangOrRegionCode(lang int16, region int16, locale *LocaleRef) int32

LocaleRefFromLangOrRegionCode.

See: https://developer.apple.com/documentation/coreservices/1580276-localereffromlangorregioncode

func LocaleRefFromLocaleString

func LocaleRefFromLocaleString(localeString string, locale *LocaleRef) int32

LocaleRefFromLocaleString.

See: https://developer.apple.com/documentation/coreservices/1580261-localereffromlocalestring

func LocaleRefGetPartString

func LocaleRefGetPartString(locale LocaleRef, partMask LocalePartMask, maxStringLen uint, partString string) int32

LocaleRefGetPartString.

See: https://developer.apple.com/documentation/coreservices/1580273-localerefgetpartstring

func LocaleStringToLangAndRegionCodes

func LocaleStringToLangAndRegionCodes(localeString string, lang *int16, region *int16) int32

LocaleStringToLangAndRegionCodes.

See: https://developer.apple.com/documentation/coreservices/1580277-localestringtolangandregioncodes

func Long2Fix deprecated

func Long2Fix(x int32) int32

Long2Fix.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409235-long2fix

func MDItemCopyAttribute

func MDItemCopyAttribute(item MDItemRef, name corefoundation.CFStringRef) corefoundation.CFTypeRef

MDItemCopyAttribute returns the value of the specified attribute in the metadata item.

See: https://developer.apple.com/documentation/coreservices/1427080-mditemcopyattribute

func MDItemCopyAttributeNames

func MDItemCopyAttributeNames(item MDItemRef) corefoundation.CFArrayRef

MDItemCopyAttributeNames returns an array containing the attribute names existing in the metadata item.

See: https://developer.apple.com/documentation/coreservices/1427066-mditemcopyattributenames

func MDItemCopyAttributes

func MDItemCopyAttributes(item MDItemRef, names corefoundation.CFArrayRef) corefoundation.CFDictionaryRef

MDItemCopyAttributes returns the values of the specified attributes in the metadata item.

See: https://developer.apple.com/documentation/coreservices/1426980-mditemcopyattributes

func MDItemGetTypeID

func MDItemGetTypeID() uint

MDItemGetTypeID returns the type identifier of all MDItem instances.

See: https://developer.apple.com/documentation/coreservices/1427168-mditemgettypeid

func MDQueryCopyQueryString

func MDQueryCopyQueryString(query MDQueryRef) corefoundation.CFStringRef

MDQueryCopyQueryString returns the query string of the query.

See: https://developer.apple.com/documentation/coreservices/1413004-mdquerycopyquerystring

func MDQueryCopySortingAttributes

func MDQueryCopySortingAttributes(query MDQueryRef) corefoundation.CFArrayRef

MDQueryCopySortingAttributes returns the list of attribute names used to sort the results.

See: https://developer.apple.com/documentation/coreservices/1413059-mdquerycopysortingattributes

func MDQueryCopyValueListAttributes

func MDQueryCopyValueListAttributes(query MDQueryRef) corefoundation.CFArrayRef

MDQueryCopyValueListAttributes returns the list of attribute names for which values are being collected by the query.

See: https://developer.apple.com/documentation/coreservices/1413071-mdquerycopyvaluelistattributes

func MDQueryCopyValuesOfAttribute

func MDQueryCopyValuesOfAttribute(query MDQueryRef, name corefoundation.CFStringRef) corefoundation.CFArrayRef

MDQueryCopyValuesOfAttribute returns the list of values from the results of the query for the specified attribute.

See: https://developer.apple.com/documentation/coreservices/1413105-mdquerycopyvaluesofattribute

func MDQueryDisableUpdates

func MDQueryDisableUpdates(query MDQueryRef)

MDQueryDisableUpdates disables updates to the query result list.

See: https://developer.apple.com/documentation/coreservices/1413041-mdquerydisableupdates

func MDQueryEnableUpdates

func MDQueryEnableUpdates(query MDQueryRef)

MDQueryEnableUpdates enables updates to the query result list.

See: https://developer.apple.com/documentation/coreservices/1413066-mdqueryenableupdates

func MDQueryExecute

func MDQueryExecute(query MDQueryRef, optionFlags uint) bool

MDQueryExecute run the query, and populate the query with the results.

See: https://developer.apple.com/documentation/coreservices/1413099-mdqueryexecute

func MDQueryGetAttributeValueOfResultAtIndex

func MDQueryGetAttributeValueOfResultAtIndex(query MDQueryRef, name corefoundation.CFStringRef, idx int) unsafe.Pointer

MDQueryGetAttributeValueOfResultAtIndex returns the value of the named attribute for the result at the given index.

See: https://developer.apple.com/documentation/coreservices/1413046-mdquerygetattributevalueofresult

func MDQueryGetCountOfResultsWithAttributeValue

func MDQueryGetCountOfResultsWithAttributeValue(query MDQueryRef, name corefoundation.CFStringRef, value corefoundation.CFTypeRef) int

MDQueryGetCountOfResultsWithAttributeValue returns the number of results which have the given attribute and attribute value.

See: https://developer.apple.com/documentation/coreservices/1413009-mdquerygetcountofresultswithattr

func MDQueryGetIndexOfResult

func MDQueryGetIndexOfResult(query MDQueryRef, result unsafe.Pointer) int

MDQueryGetIndexOfResult returns the current index of the given result.

See: https://developer.apple.com/documentation/coreservices/1413093-mdquerygetindexofresult

func MDQueryGetResultAtIndex

func MDQueryGetResultAtIndex(query MDQueryRef, idx int) unsafe.Pointer

MDQueryGetResultAtIndex returns the current result at the given index.

See: https://developer.apple.com/documentation/coreservices/1413055-mdquerygetresultatindex

func MDQueryGetResultCount

func MDQueryGetResultCount(query MDQueryRef) int

MDQueryGetResultCount returns the number of results currently collected by the query.

See: https://developer.apple.com/documentation/coreservices/1413008-mdquerygetresultcount

func MDQueryGetTypeID

func MDQueryGetTypeID() uint

MDQueryGetTypeID returns the type identifier of all MDQuery instances

See: https://developer.apple.com/documentation/coreservices/1413037-mdquerygettypeid

func MDQueryIsGatheringComplete

func MDQueryIsGatheringComplete(query MDQueryRef) bool

MDQueryIsGatheringComplete returns true if the first phase of a query, the initial result gathering, has finished.

See: https://developer.apple.com/documentation/coreservices/1413032-mdqueryisgatheringcomplete

func MDQuerySetBatchingParameters

func MDQuerySetBatchingParameters(query MDQueryRef, params unsafe.Pointer)

MDQuerySetBatchingParameters set the query batching parameters.

See: https://developer.apple.com/documentation/coreservices/1413103-mdquerysetbatchingparameters

func MDQuerySetCreateResultFunction

func MDQuerySetCreateResultFunction(query MDQueryRef, func_ MDQueryCreateResultFunction, context unsafe.Pointer, cb unsafe.Pointer)

MDQuerySetCreateResultFunction sets the function used to create the result objects of the MDQuery.

See: https://developer.apple.com/documentation/coreservices/1413064-mdquerysetcreateresultfunction

func MDQuerySetCreateValueFunction

func MDQuerySetCreateValueFunction(query MDQueryRef, func_ MDQueryCreateValueFunction, context unsafe.Pointer, cb unsafe.Pointer)

MDQuerySetCreateValueFunction sets the function used to create the value objects of the MDQuery.

See: https://developer.apple.com/documentation/coreservices/1413017-mdquerysetcreatevaluefunction

func MDQuerySetDispatchQueue

func MDQuerySetDispatchQueue(query MDQueryRef, queue dispatch.Queue)

MDQuerySetDispatchQueue sets the dispatch queue on which query results will be delivered by MDQueryExecute.

See: https://developer.apple.com/documentation/coreservices/1413019-mdquerysetdispatchqueue

func MDQuerySetMaxCount

func MDQuerySetMaxCount(query MDQueryRef, size int)

MDQuerySetMaxCount sets the maximum number of results returned.

See: https://developer.apple.com/documentation/coreservices/1413085-mdquerysetmaxcount

func MDQuerySetSearchScope

func MDQuerySetSearchScope(query MDQueryRef, scopeDirectories corefoundation.CFArrayRef, scopeOptions uint32)

MDQuerySetSearchScope sets the search scope for a query instance.

See: https://developer.apple.com/documentation/coreservices/1413048-mdquerysetsearchscope

func MDQuerySetSortComparator

func MDQuerySetSortComparator(query MDQueryRef, comparator MDQuerySortComparatorFunction, context unsafe.Pointer)

MDQuerySetSortComparator sets the function used to sort the results of an MDQuery.

See: https://developer.apple.com/documentation/coreservices/1413087-mdquerysetsortcomparator

func MDQuerySetSortComparatorBlock

func MDQuerySetSortComparatorBlock(query MDQueryRef, comparator *corefoundation.CFTypeRef, arg2 *corefoundation.CFTypeRef) corefoundation.CFComparisonResult

MDQuerySetSortComparatorBlock sets the block used to sort the results of an MDQuery.

See: https://developer.apple.com/documentation/coreservices/1413021-mdquerysetsortcomparatorblock

func MDQuerySetSortOptionFlagsForAttribute

func MDQuerySetSortOptionFlagsForAttribute(query MDQueryRef, fieldName corefoundation.CFStringRef, flags uint32) bool

MDQuerySetSortOptionFlagsForAttribute.

See: https://developer.apple.com/documentation/coreservices/1413075-mdquerysetsortoptionflagsforattr

func MDQueryStop

func MDQueryStop(query MDQueryRef)

MDQueryStop stops the query from generating more results.

See: https://developer.apple.com/documentation/coreservices/1413077-mdquerystop

func MDSchemaCopyAllAttributes

func MDSchemaCopyAllAttributes() corefoundation.CFArrayRef

MDSchemaCopyAllAttributes returns an array containing all the metadata attributesdefined in the schema.

See: https://developer.apple.com/documentation/coreservices/1445665-mdschemacopyallattributes

func MDSchemaCopyAttributesForContentType

func MDSchemaCopyAttributesForContentType(contentTypeUTI corefoundation.CFStringRef) corefoundation.CFDictionaryRef

MDSchemaCopyAttributesForContentType returns a dictionary containing the metadata attributesfor the specified UTI type.

See: https://developer.apple.com/documentation/coreservices/1444459-mdschemacopyattributesforcontent

func MDSchemaCopyDisplayDescriptionForAttribute

func MDSchemaCopyDisplayDescriptionForAttribute(name corefoundation.CFStringRef) corefoundation.CFStringRef

MDSchemaCopyDisplayDescriptionForAttribute returns the localized description of a metadata attributekey.

See: https://developer.apple.com/documentation/coreservices/1442582-mdschemacopydisplaydescriptionfo

func MDSchemaCopyDisplayNameForAttribute

func MDSchemaCopyDisplayNameForAttribute(name corefoundation.CFStringRef) corefoundation.CFStringRef

MDSchemaCopyDisplayNameForAttribute returns the localized display name of a metadata attributekey.

See: https://developer.apple.com/documentation/coreservices/1450203-mdschemacopydisplaynameforattrib

func MDSchemaCopyMetaAttributesForAttribute

func MDSchemaCopyMetaAttributesForAttribute(name corefoundation.CFStringRef) corefoundation.CFDictionaryRef

MDSchemaCopyMetaAttributesForAttribute returns a dictionary describing the values for the specifiedmetadata attribute key.

See: https://developer.apple.com/documentation/coreservices/1450052-mdschemacopymetaattributesforatt

func MPAllocateAligned deprecated

func MPAllocateAligned(size uint, alignment uint8, options uint32) unsafe.Pointer

MPAllocateAligned allocates a nonrelocatable memory block.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585774-mpallocatealigned

func MPAllocateTaskStorageIndex deprecated

func MPAllocateTaskStorageIndex(taskIndex *TaskStorageIndex) int32

MPAllocateTaskStorageIndex returns an index number to access per-task storage.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585719-mpallocatetaskstorageindex

func MPArmTimer deprecated

func MPArmTimer(timerID MPTimerID, expirationTime *uint64, options uint32) int32

MPArmTimer arms the timer to expire at a given time.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585612-mparmtimer

func MPBlockClear deprecated

func MPBlockClear(address unsafe.Pointer, size uint)

MPBlockClear clears a block of memory.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585642-mpblockclear

func MPBlockCopy deprecated

func MPBlockCopy(source unsafe.Pointer, destination unsafe.Pointer, size uint)

MPBlockCopy copies a block of memory.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585707-mpblockcopy

func MPCancelTimer deprecated

func MPCancelTimer(timerID MPTimerID, timeRemaining *uint64) int32

MPCancelTimer cancels an armed timer.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585745-mpcanceltimer

func MPCauseNotification deprecated

func MPCauseNotification(notificationID MPNotificationID) int32

MPCauseNotification signals a kernel notification.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585754-mpcausenotification

func MPCreateCriticalRegion deprecated

func MPCreateCriticalRegion(criticalRegion *MPCriticalRegionID) int32

MPCreateCriticalRegion creates a critical region object.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585663-mpcreatecriticalregion

func MPCreateEvent deprecated

func MPCreateEvent(event *MPEventID) int32

MPCreateEvent creates an event group.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585702-mpcreateevent

func MPCreateNotification deprecated

func MPCreateNotification(notificationID *MPNotificationID) int32

MPCreateNotification creates a kernel notification

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585723-mpcreatenotification

func MPCreateQueue deprecated

func MPCreateQueue(queue *MPQueueID) int32

MPCreateQueue creates a message queue.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585694-mpcreatequeue

func MPCreateSemaphore deprecated

func MPCreateSemaphore(maximumValue MPSemaphoreCount, initialValue MPSemaphoreCount, semaphore *MPSemaphoreID) int32

MPCreateSemaphore creates a semaphore.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585569-mpcreatesemaphore

func MPCreateTask deprecated

func MPCreateTask(entryPoint unsafe.Pointer, parameter unsafe.Pointer, stackSize uint, notifyQueue MPQueueID, terminationParameter1 unsafe.Pointer, terminationParameter2 unsafe.Pointer, options MPTaskOptions, task *MPTaskID) int32

MPCreateTask creates a preemptive task.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585779-mpcreatetask

func MPCreateTimer deprecated

func MPCreateTimer(timerID *MPTimerID) int32

MPCreateTimer creates a timer.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585748-mpcreatetimer

func MPDeallocateTaskStorageIndex deprecated

func MPDeallocateTaskStorageIndex(taskIndex TaskStorageIndex) int32

MPDeallocateTaskStorageIndex frees an index number used to access per-task storage

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585649-mpdeallocatetaskstorageindex

func MPDelayUntil deprecated

func MPDelayUntil(expirationTime *uint64) int32

MPDelayUntil blocks the calling task until a specified time.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585647-mpdelayuntil

func MPDeleteCriticalRegion deprecated

func MPDeleteCriticalRegion(criticalRegion MPCriticalRegionID) int32

MPDeleteCriticalRegion removes the specified critical region object.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585704-mpdeletecriticalregion

func MPDeleteEvent deprecated

func MPDeleteEvent(event MPEventID) int32

MPDeleteEvent removes an event group.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585691-mpdeleteevent

func MPDeleteNotification deprecated

func MPDeleteNotification(notificationID MPNotificationID) int32

MPDeleteNotification removes a kernel notification.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585659-mpdeletenotification

func MPDeleteQueue deprecated

func MPDeleteQueue(queue MPQueueID) int32

MPDeleteQueue deletes a message queue.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585571-mpdeletequeue

func MPDeleteSemaphore deprecated

func MPDeleteSemaphore(semaphore MPSemaphoreID) int32

MPDeleteSemaphore removes a semaphore.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585586-mpdeletesemaphore

func MPDeleteTimer deprecated

func MPDeleteTimer(timerID MPTimerID) int32

MPDeleteTimer removes a timer.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585761-mpdeletetimer

func MPDisposeTaskException deprecated

func MPDisposeTaskException(task MPTaskID, action uint32) int32

MPDisposeTaskException removes a task exception.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585607-mpdisposetaskexception

func MPEnterCriticalRegion deprecated

func MPEnterCriticalRegion(criticalRegion MPCriticalRegionID, timeout int32) int32

MPEnterCriticalRegion attempts to enter a critical region.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585622-mpentercriticalregion

func MPExit deprecated

func MPExit(status int32)

MPExit allows a task to terminate itself

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585705-mpexit

func MPExitCriticalRegion deprecated

func MPExitCriticalRegion(criticalRegion MPCriticalRegionID) int32

MPExitCriticalRegion exits a critical region.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585758-mpexitcriticalregion

func MPExtractTaskState deprecated

func MPExtractTaskState(task MPTaskID, kind MPTaskStateKind, info unsafe.Pointer) int32

MPExtractTaskState extracts state information from a suspended task.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585718-mpextracttaskstate

func MPFree deprecated

func MPFree(object unsafe.Pointer)

MPFree frees memory allocated by MPAllocateAligned.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585676-mpfree

func MPGetAllocatedBlockSize deprecated

func MPGetAllocatedBlockSize(object unsafe.Pointer) uint

MPGetAllocatedBlockSize returns the size of a memory block.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585717-mpgetallocatedblocksize

func MPGetNextCpuID deprecated

func MPGetNextCpuID(owningCoherenceID MPCoherenceID, cpuID *MPCpuID) int32

MPGetNextCpuID obtains the next CPU ID in the list of physical processors of the specified memory coherence group.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1508189-mpgetnextcpuid

func MPGetNextTaskID deprecated

func MPGetNextTaskID(owningProcessID MPProcessID, taskID *MPTaskID) int32

MPGetNextTaskID obtains the next task ID in the list of available tasks.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1508163-mpgetnexttaskid

func MPModifyNotification deprecated

func MPModifyNotification(notificationID MPNotificationID, anID MPOpaqueID, notifyParam1 unsafe.Pointer, notifyParam2 unsafe.Pointer, notifyParam3 unsafe.Pointer) int32

MPModifyNotification adds a simple notification to a kernel notification.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585780-mpmodifynotification

func MPModifyNotificationParameters deprecated

func MPModifyNotificationParameters(notificationID MPNotificationID, kind MPOpaqueIDClass, notifyParam1 unsafe.Pointer, notifyParam2 unsafe.Pointer, notifyParam3 unsafe.Pointer) int32

MPModifyNotificationParameters.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585668-mpmodifynotificationparameters

func MPNotifyQueue deprecated

func MPNotifyQueue(queue MPQueueID, param1 unsafe.Pointer, param2 unsafe.Pointer, param3 unsafe.Pointer) int32

MPNotifyQueue sends a message to the specified message queue.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585699-mpnotifyqueue

func MPProcessors deprecated

func MPProcessors() uint

MPProcessors returns the number of processors on the host computer.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585778-mpprocessors

func MPProcessorsScheduled deprecated

func MPProcessorsScheduled() uint

MPProcessorsScheduled returns the number of active processors available on the host computer.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585777-mpprocessorsscheduled

func MPRegisterDebugger deprecated

func MPRegisterDebugger(queue MPQueueID, level MPDebuggerLevel) int32

MPRegisterDebugger registers a debugger.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585573-mpregisterdebugger

func MPRemoteCall deprecated

func MPRemoteCall(remoteProc unsafe.Pointer, parameter unsafe.Pointer, context MPRemoteContext) unsafe.Pointer

MPRemoteCall calls a non-reentrant function and blocks the current task.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585652-mpremotecall

func MPRemoteCallCFM deprecated

func MPRemoteCallCFM(remoteProc unsafe.Pointer, parameter unsafe.Pointer, context MPRemoteContext) unsafe.Pointer

MPRemoteCallCFM calls a non-reentrant function and blocks the current task.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585757-mpremotecallcfm

func MPSetEvent deprecated

func MPSetEvent(event MPEventID, flags MPEventFlags) int32

MPSetEvent merges event flags into a specified event group.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585752-mpsetevent

func MPSetExceptionHandler deprecated

func MPSetExceptionHandler(task MPTaskID, exceptionQ MPQueueID) int32

MPSetExceptionHandler sets an exception handler for a task.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585759-mpsetexceptionhandler

func MPSetQueueReserve deprecated

func MPSetQueueReserve(queue MPQueueID, count uint) int32

MPSetQueueReserve reserves space for messages on a specified message queue.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585671-mpsetqueuereserve

func MPSetTaskState deprecated

func MPSetTaskState(task MPTaskID, kind MPTaskStateKind, info unsafe.Pointer) int32

MPSetTaskState sets state information for a suspended task.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585601-mpsettaskstate

func MPSetTaskStorageValue deprecated

func MPSetTaskStorageValue(taskIndex TaskStorageIndex, value TaskStorageValue) int32

MPSetTaskStorageValue sets the storage value for a given index number.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585626-mpsettaskstoragevalue

func MPSetTaskType deprecated

func MPSetTaskType(task MPTaskID, taskType uint32) int32

MPSetTaskType sets the type of the task.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1585695-mpsettasktype

func MPSetTaskWeight deprecated

func MPSetTaskWeight(task MPTaskID, weight MPTaskWeight) int32

MPSetTaskWeight assigns a relative weight to a task, indicating how much processor time it should receive compared to other available tasks.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585665-mpsettaskweight

func MPSetTimerNotify deprecated

func MPSetTimerNotify(timerID MPTimerID, anID MPOpaqueID, notifyParam1 unsafe.Pointer, notifyParam2 unsafe.Pointer, notifyParam3 unsafe.Pointer) int32

MPSetTimerNotify sets the notification information associated with a timer.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585726-mpsettimernotify

func MPSignalSemaphore deprecated

func MPSignalSemaphore(semaphore MPSemaphoreID) int32

MPSignalSemaphore signals a semaphore.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585713-mpsignalsemaphore

func MPTaskIsPreemptive deprecated

func MPTaskIsPreemptive(taskID MPTaskID) bool

MPTaskIsPreemptive determines whether a task is preemptively scheduled.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585681-mptaskispreemptive

func MPTerminateTask deprecated

func MPTerminateTask(task MPTaskID, terminationStatus int32) int32

MPTerminateTask terminates an existing task.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585769-mpterminatetask

func MPThrowException deprecated added in v0.6.17

func MPThrowException(task MPTaskID, kind MPExceptionKind) int32

MPThrowException throws an exception to a specified task.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585743-mpthrowexception

func MPUnregisterDebugger deprecated

func MPUnregisterDebugger(queue MPQueueID) int32

MPUnregisterDebugger unregisters a debugger.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585598-mpunregisterdebugger

func MPWaitForEvent deprecated

func MPWaitForEvent(event MPEventID, flags *MPEventFlags, timeout int32) int32

MPWaitForEvent retrieves event flags from a specified event group.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585656-mpwaitforevent

func MPWaitOnQueue deprecated

func MPWaitOnQueue(queue MPQueueID, param1 unsafe.Pointer, param2 unsafe.Pointer, param3 unsafe.Pointer, timeout int32) int32

MPWaitOnQueue obtains a message from a specified message queue.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585762-mpwaitonqueue

func MPWaitOnSemaphore deprecated

func MPWaitOnSemaphore(semaphore MPSemaphoreID, timeout int32) int32

MPWaitOnSemaphore waits on a semaphore

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585722-mpwaitonsemaphore

func MPYield deprecated

func MPYield()

MPYield allows a task to yield the processor to another task.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585732-mpyield

func MaximumProcessorSpeed deprecated

func MaximumProcessorSpeed() int16

MaximumProcessorSpeed.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1427409-maximumprocessorspeed

func MemError deprecated

func MemError() int16

MemError.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506254-memerror

func Microseconds deprecated

func Microseconds(microTickCount *uint64)

Microseconds.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1550773-microseconds

func MinimumProcessorSpeed deprecated

func MinimumProcessorSpeed() int16

MinimumProcessorSpeed.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1427399-minimumprocessorspeed

func Munger deprecated

func Munger(h kernel.Handle, offset int, ptr1 unsafe.Pointer, len1 int, ptr2 unsafe.Pointer, len2 int) int

Munger.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1588638-munger

func NanosecondsToAbsolute deprecated

func NanosecondsToAbsolute(nanoseconds uint64) uint64

NanosecondsToAbsolute.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501255-nanosecondstoabsolute

func NanosecondsToDuration deprecated

func NanosecondsToDuration(theNanoseconds uint64) int32

NanosecondsToDuration.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501257-nanosecondstoduration

func NearestMacTextEncodings

func NearestMacTextEncodings(generalEncoding kernel.TextEncoding, bestMacEncoding *kernel.TextEncoding, alternateMacEncoding *kernel.TextEncoding) int32

NearestMacTextEncodings obtains the best and alternate Mac text encoding.

See: https://developer.apple.com/documentation/coreservices/1399736-nearestmactextencodings

func NewAEDisposeExternalProcPtrBlock added in v0.6.16

func NewAEDisposeExternalProcPtrBlock(handler AEDisposeExternalProcPtr) (objc.ID, func())

NewAEDisposeExternalProcPtrBlock wraps a Go AEDisposeExternalProcPtr as an Objective-C block. The caller must defer the returned cleanup function.

func NewAERemoteProcessResolverCallbackBlock added in v0.6.16

func NewAERemoteProcessResolverCallbackBlock(handler AERemoteProcessResolverCallback) (objc.ID, func())

NewAERemoteProcessResolverCallbackBlock wraps a Go AERemoteProcessResolverCallback as an Objective-C block. The caller must defer the returned cleanup function.

func NewCSDiskSpaceRecoveryCallbackBlock added in v0.6.16

func NewCSDiskSpaceRecoveryCallbackBlock(handler CSDiskSpaceRecoveryCallback) (objc.ID, func())

NewCSDiskSpaceRecoveryCallbackBlock wraps a Go CSDiskSpaceRecoveryCallback as an Objective-C block. The caller must defer the returned cleanup function.

func NewCSIdentityQueryReceiveEventCallbackBlock added in v0.6.16

func NewCSIdentityQueryReceiveEventCallbackBlock(handler CSIdentityQueryReceiveEventCallback) (objc.ID, func())

NewCSIdentityQueryReceiveEventCallbackBlock wraps a Go CSIdentityQueryReceiveEventCallback as an Objective-C block. The caller must defer the returned cleanup function.

func NewCSIdentityStatusUpdatedCallbackBlock added in v0.6.16

func NewCSIdentityStatusUpdatedCallbackBlock(handler CSIdentityStatusUpdatedCallback) (objc.ID, func())

NewCSIdentityStatusUpdatedCallbackBlock wraps a Go CSIdentityStatusUpdatedCallback as an Objective-C block. The caller must defer the returned cleanup function.

func NewDebugComponent deprecated

func NewDebugComponent(componentSignature uint32, componentName unsafe.Pointer, componentCallback DebugComponentCallbackUPP) int32

NewDebugComponent.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517721-newdebugcomponent

func NewDebugOption deprecated

func NewDebugOption(componentSignature uint32, optionSelectorNum int32, optionName unsafe.Pointer) int32

NewDebugOption.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517718-newdebugoption

func NewEmptyHandle deprecated

func NewEmptyHandle() kernel.Handle

NewEmptyHandle.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506288-newemptyhandle

func NewFSEventStreamCallbackBlock added in v0.6.16

func NewFSEventStreamCallbackBlock(handler FSEventStreamCallback) (objc.ID, func())

NewFSEventStreamCallbackBlock wraps a Go FSEventStreamCallback as an Objective-C block. The caller must defer the returned cleanup function.

func NewGestaltValue deprecated

func NewGestaltValue(selector uint32, newValue int32) int16

NewGestaltValue installs a new Gestalt selector code and a value that Gestalt returns for that selector.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1472055-newgestaltvalue

func NewHandle deprecated

func NewHandle(byteCount int) kernel.Handle

NewHandle.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506244-newhandle

func NewHandleClear deprecated

func NewHandleClear(byteCount int) kernel.Handle

NewHandleClear.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506471-newhandleclear

func NewLSSharedFileListChangedProcPtrBlock added in v0.6.16

func NewLSSharedFileListChangedProcPtrBlock(handler LSSharedFileListChangedProcPtr) (objc.ID, func())

NewLSSharedFileListChangedProcPtrBlock wraps a Go LSSharedFileListChangedProcPtr as an Objective-C block. The caller must defer the returned cleanup function.

func NewOSLDisposeTokenProcPtrBlock added in v0.6.16

func NewOSLDisposeTokenProcPtrBlock(handler OSLDisposeTokenProcPtr) (objc.ID, func())

NewOSLDisposeTokenProcPtrBlock wraps a Go OSLDisposeTokenProcPtr as an Objective-C block. The caller must defer the returned cleanup function.

func NewOSLGetErrDescProcPtrBlock added in v0.6.16

func NewOSLGetErrDescProcPtrBlock(handler OSLGetErrDescProcPtr) (objc.ID, func())

NewOSLGetErrDescProcPtrBlock wraps a Go OSLGetErrDescProcPtr as an Objective-C block. The caller must defer the returned cleanup function.

func NewPtr deprecated

func NewPtr(byteCount int) unsafe.Pointer

NewPtr.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506463-newptr

func NewPtrClear deprecated

func NewPtrClear(byteCount int) unsafe.Pointer

NewPtrClear.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506425-newptrclear

func NewThread deprecated

func NewThread(threadStyle ThreadStyle, threadEntry ThreadEntryTPP, threadParam unsafe.Pointer, stackSize int, options ThreadOptions, threadResult unsafe.Pointer, threadMade *ThreadID) int16

NewThread.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574248-newthread

func Num2dec deprecated

func Num2dec(f *Decform, x float64, d *Decimal)

Num2dec.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1492649-num2dec

func Numtostring deprecated

func Numtostring(theNum int, theString string)

Numtostring.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1579613-numtostring

func OpenAComponent deprecated

func OpenAComponent(aComponent Component, ci *ComponentInstance) int16

OpenAComponent.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516558-openacomponent

func OpenAComponentResFile deprecated

func OpenAComponentResFile(aComponent Component, resRef *ResFileRefNum) int16

OpenAComponentResFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516643-openacomponentresfile

func OpenADefaultComponent deprecated

func OpenADefaultComponent(componentType uint32, componentSubType uint32, ci *ComponentInstance) int16

OpenADefaultComponent.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516360-openadefaultcomponent

func OverrideIconRef deprecated

func OverrideIconRef(oldIconRef IconRef, newIconRef IconRef) int16

OverrideIconRef.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1445253-overrideiconref

func PBAllocateForkAsync deprecated

func PBAllocateForkAsync(paramBlock *FSForkIOParam)

PBAllocateForkAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566083-pballocateforkasync

func PBAllocateForkSync deprecated

func PBAllocateForkSync(paramBlock *FSForkIOParam) int16

PBAllocateForkSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565523-pballocateforksync

func PBCatalogSearchAsync deprecated

func PBCatalogSearchAsync(paramBlock *FSCatalogBulkParam)

PBCatalogSearchAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566401-pbcatalogsearchasync

func PBCatalogSearchSync deprecated

func PBCatalogSearchSync(paramBlock *FSCatalogBulkParam) int16

PBCatalogSearchSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565713-pbcatalogsearchsync

func PBCloseForkAsync deprecated

func PBCloseForkAsync(paramBlock *FSForkIOParam)

PBCloseForkAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565189-pbcloseforkasync

func PBCloseForkSync deprecated

func PBCloseForkSync(paramBlock *FSForkIOParam) int16

PBCloseForkSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566173-pbcloseforksync

func PBCloseIteratorAsync deprecated

func PBCloseIteratorAsync(paramBlock *FSCatalogBulkParam)

PBCloseIteratorAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566055-pbcloseiteratorasync

func PBCloseIteratorSync deprecated

func PBCloseIteratorSync(paramBlock *FSCatalogBulkParam) int16

PBCloseIteratorSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566452-pbcloseiteratorsync

func PBCompareFSRefsAsync deprecated

func PBCompareFSRefsAsync(paramBlock *FSRefParam)

PBCompareFSRefsAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566717-pbcomparefsrefsasync

func PBCompareFSRefsSync deprecated

func PBCompareFSRefsSync(paramBlock *FSRefParam) int16

PBCompareFSRefsSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566817-pbcomparefsrefssync

func PBCreateDirectoryUnicodeAsync deprecated

func PBCreateDirectoryUnicodeAsync(paramBlock *FSRefParam)

PBCreateDirectoryUnicodeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565107-pbcreatedirectoryunicodeasync

func PBCreateDirectoryUnicodeSync deprecated

func PBCreateDirectoryUnicodeSync(paramBlock *FSRefParam) int16

PBCreateDirectoryUnicodeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565315-pbcreatedirectoryunicodesync

func PBCreateFileAndOpenForkUnicodeAsync deprecated

func PBCreateFileAndOpenForkUnicodeAsync(paramBlock FSRefForkIOParamPtr)

PBCreateFileAndOpenForkUnicodeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566593-pbcreatefileandopenforkunicodeas

func PBCreateFileAndOpenForkUnicodeSync deprecated

func PBCreateFileAndOpenForkUnicodeSync(paramBlock FSRefForkIOParamPtr) int32

PBCreateFileAndOpenForkUnicodeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566046-pbcreatefileandopenforkunicodesy

func PBCreateFileUnicodeAsync deprecated

func PBCreateFileUnicodeAsync(paramBlock *FSRefParam)

PBCreateFileUnicodeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565280-pbcreatefileunicodeasync

func PBCreateFileUnicodeSync deprecated

func PBCreateFileUnicodeSync(paramBlock *FSRefParam) int16

PBCreateFileUnicodeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566896-pbcreatefileunicodesync

func PBCreateForkAsync deprecated

func PBCreateForkAsync(paramBlock *FSForkIOParam)

PBCreateForkAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565676-pbcreateforkasync

func PBCreateForkSync deprecated

func PBCreateForkSync(paramBlock *FSForkIOParam) int16

PBCreateForkSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566697-pbcreateforksync

func PBDeleteForkAsync deprecated

func PBDeleteForkAsync(paramBlock *FSForkIOParam)

PBDeleteForkAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566752-pbdeleteforkasync

func PBDeleteForkSync deprecated

func PBDeleteForkSync(paramBlock *FSForkIOParam) int16

PBDeleteForkSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566822-pbdeleteforksync

func PBDeleteObjectAsync deprecated

func PBDeleteObjectAsync(paramBlock *FSRefParam)

PBDeleteObjectAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566325-pbdeleteobjectasync

func PBDeleteObjectSync deprecated

func PBDeleteObjectSync(paramBlock *FSRefParam) int16

PBDeleteObjectSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565966-pbdeleteobjectsync

func PBExchangeObjectsAsync deprecated

func PBExchangeObjectsAsync(paramBlock *FSRefParam)

PBExchangeObjectsAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566021-pbexchangeobjectsasync

func PBExchangeObjectsSync deprecated

func PBExchangeObjectsSync(paramBlock *FSRefParam) int16

PBExchangeObjectsSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566627-pbexchangeobjectssync

func PBFSCopyFileAsync deprecated

func PBFSCopyFileAsync(paramBlock FSRefParamPtr) int32

PBFSCopyFileAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565810-pbfscopyfileasync

func PBFSCopyFileSync deprecated

func PBFSCopyFileSync(paramBlock FSRefParamPtr) int32

PBFSCopyFileSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566297-pbfscopyfilesync

func PBFSResolveNodeIDAsync deprecated

func PBFSResolveNodeIDAsync(paramBlock FSRefParamPtr) int32

PBFSResolveNodeIDAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566562-pbfsresolvenodeidasync

func PBFSResolveNodeIDSync deprecated

func PBFSResolveNodeIDSync(paramBlock FSRefParamPtr) int32

PBFSResolveNodeIDSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565133-pbfsresolvenodeidsync

func PBFlushForkAsync deprecated

func PBFlushForkAsync(paramBlock *FSForkIOParam)

PBFlushForkAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565669-pbflushforkasync

func PBFlushForkSync deprecated

func PBFlushForkSync(paramBlock *FSForkIOParam) int16

PBFlushForkSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565853-pbflushforksync

func PBFlushVolumeAsync deprecated

func PBFlushVolumeAsync(paramBlock FSRefParamPtr) int32

PBFlushVolumeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566072-pbflushvolumeasync

func PBFlushVolumeSync deprecated

func PBFlushVolumeSync(paramBlock FSRefParamPtr) int32

PBFlushVolumeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565550-pbflushvolumesync

func PBGetCatalogInfoAsync deprecated

func PBGetCatalogInfoAsync(paramBlock *FSRefParam)

PBGetCatalogInfoAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565934-pbgetcataloginfoasync

func PBGetCatalogInfoBulkAsync deprecated

func PBGetCatalogInfoBulkAsync(paramBlock *FSCatalogBulkParam)

PBGetCatalogInfoBulkAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566399-pbgetcataloginfobulkasync

func PBGetCatalogInfoBulkSync deprecated

func PBGetCatalogInfoBulkSync(paramBlock *FSCatalogBulkParam) int16

PBGetCatalogInfoBulkSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565707-pbgetcataloginfobulksync

func PBGetCatalogInfoSync deprecated

func PBGetCatalogInfoSync(paramBlock *FSRefParam) int16

PBGetCatalogInfoSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566328-pbgetcataloginfosync

func PBGetForkCBInfoAsync deprecated

func PBGetForkCBInfoAsync(paramBlock *FSForkCBInfoParam)

PBGetForkCBInfoAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566027-pbgetforkcbinfoasync

func PBGetForkCBInfoSync deprecated

func PBGetForkCBInfoSync(paramBlock *FSForkCBInfoParam) int16

PBGetForkCBInfoSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566258-pbgetforkcbinfosync

func PBGetForkPositionAsync deprecated

func PBGetForkPositionAsync(paramBlock *FSForkIOParam)

PBGetForkPositionAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566418-pbgetforkpositionasync

func PBGetForkPositionSync deprecated

func PBGetForkPositionSync(paramBlock *FSForkIOParam) int16

PBGetForkPositionSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565594-pbgetforkpositionsync

func PBGetForkSizeAsync deprecated

func PBGetForkSizeAsync(paramBlock *FSForkIOParam)

PBGetForkSizeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565453-pbgetforksizeasync

func PBGetForkSizeSync deprecated

func PBGetForkSizeSync(paramBlock *FSForkIOParam) int16

PBGetForkSizeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566956-pbgetforksizesync

func PBGetVolumeInfoAsync deprecated

func PBGetVolumeInfoAsync(paramBlock *FSVolumeInfoParam)

PBGetVolumeInfoAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565244-pbgetvolumeinfoasync

func PBGetVolumeInfoSync deprecated

func PBGetVolumeInfoSync(paramBlock *FSVolumeInfoParam) int16

PBGetVolumeInfoSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566892-pbgetvolumeinfosync

func PBIterateForksAsync deprecated

func PBIterateForksAsync(paramBlock *FSForkIOParam)

PBIterateForksAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566251-pbiterateforksasync

func PBIterateForksSync deprecated

func PBIterateForksSync(paramBlock *FSForkIOParam) int16

PBIterateForksSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566093-pbiterateforkssync

func PBMakeFSRefUnicodeAsync deprecated

func PBMakeFSRefUnicodeAsync(paramBlock *FSRefParam)

PBMakeFSRefUnicodeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566268-pbmakefsrefunicodeasync

func PBMakeFSRefUnicodeSync deprecated

func PBMakeFSRefUnicodeSync(paramBlock *FSRefParam) int16

PBMakeFSRefUnicodeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566925-pbmakefsrefunicodesync

func PBMoveObjectAsync deprecated

func PBMoveObjectAsync(paramBlock *FSRefParam)

PBMoveObjectAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566270-pbmoveobjectasync

func PBMoveObjectSync deprecated

func PBMoveObjectSync(paramBlock *FSRefParam) int16

PBMoveObjectSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565935-pbmoveobjectsync

func PBOpenForkAsync deprecated

func PBOpenForkAsync(paramBlock *FSForkIOParam)

PBOpenForkAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566059-pbopenforkasync

func PBOpenForkSync deprecated

func PBOpenForkSync(paramBlock *FSForkIOParam) int16

PBOpenForkSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566802-pbopenforksync

func PBOpenIteratorAsync deprecated

func PBOpenIteratorAsync(paramBlock *FSCatalogBulkParam)

PBOpenIteratorAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566686-pbopeniteratorasync

func PBOpenIteratorSync deprecated

func PBOpenIteratorSync(paramBlock *FSCatalogBulkParam) int16

PBOpenIteratorSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566865-pbopeniteratorsync

func PBReadForkAsync deprecated

func PBReadForkAsync(paramBlock *FSForkIOParam)

PBReadForkAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566703-pbreadforkasync

func PBReadForkSync deprecated

func PBReadForkSync(paramBlock *FSForkIOParam) int16

PBReadForkSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566739-pbreadforksync

func PBRenameUnicodeAsync deprecated

func PBRenameUnicodeAsync(paramBlock *FSRefParam)

PBRenameUnicodeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566334-pbrenameunicodeasync

func PBRenameUnicodeSync deprecated

func PBRenameUnicodeSync(paramBlock *FSRefParam) int16

PBRenameUnicodeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566879-pbrenameunicodesync

func PBSetCatalogInfoAsync deprecated

func PBSetCatalogInfoAsync(paramBlock *FSRefParam)

PBSetCatalogInfoAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566340-pbsetcataloginfoasync

func PBSetCatalogInfoSync deprecated

func PBSetCatalogInfoSync(paramBlock *FSRefParam) int16

PBSetCatalogInfoSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565271-pbsetcataloginfosync

func PBSetForkPositionAsync deprecated

func PBSetForkPositionAsync(paramBlock *FSForkIOParam)

PBSetForkPositionAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565887-pbsetforkpositionasync

func PBSetForkPositionSync deprecated

func PBSetForkPositionSync(paramBlock *FSForkIOParam) int16

PBSetForkPositionSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566035-pbsetforkpositionsync

func PBSetForkSizeAsync deprecated

func PBSetForkSizeAsync(paramBlock *FSForkIOParam)

PBSetForkSizeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566552-pbsetforksizeasync

func PBSetForkSizeSync deprecated

func PBSetForkSizeSync(paramBlock *FSForkIOParam) int16

PBSetForkSizeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566944-pbsetforksizesync

func PBSetVolumeInfoAsync deprecated

func PBSetVolumeInfoAsync(paramBlock *FSVolumeInfoParam)

PBSetVolumeInfoAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566541-pbsetvolumeinfoasync

func PBSetVolumeInfoSync deprecated

func PBSetVolumeInfoSync(paramBlock *FSVolumeInfoParam) int16

PBSetVolumeInfoSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566427-pbsetvolumeinfosync

func PBUnlinkObjectAsync deprecated

func PBUnlinkObjectAsync(paramBlock *FSRefParam)

PBUnlinkObjectAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565840-pbunlinkobjectasync

func PBUnlinkObjectSync deprecated

func PBUnlinkObjectSync(paramBlock *FSRefParam) int16

PBUnlinkObjectSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566516-pbunlinkobjectsync

func PBWriteForkAsync deprecated

func PBWriteForkAsync(paramBlock *FSForkIOParam)

PBWriteForkAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566491-pbwriteforkasync

func PBWriteForkSync deprecated

func PBWriteForkSync(paramBlock *FSForkIOParam) int16

PBWriteForkSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565632-pbwriteforksync

func PBXLockRangeAsync deprecated

func PBXLockRangeAsync(paramBlock FSRangeLockParamPtr) int32

PBXLockRangeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565710-pbxlockrangeasync

func PBXLockRangeSync deprecated

func PBXLockRangeSync(paramBlock FSRangeLockParamPtr) int32

PBXLockRangeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566800-pbxlockrangesync

func PBXUnlockRangeAsync deprecated

func PBXUnlockRangeAsync(paramBlock FSRangeLockParamPtr) int32

PBXUnlockRangeAsync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565257-pbxunlockrangeasync

func PBXUnlockRangeSync deprecated

func PBXUnlockRangeSync(paramBlock FSRangeLockParamPtr) int32

PBXUnlockRangeSync.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565709-pbxunlockrangesync

func PLpos deprecated

func PLpos(str1 unsafe.Pointer, searchStr unsafe.Pointer) int16

PLpos.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585952-plpos

func PLstrcat deprecated

func PLstrcat(str string, append_ unsafe.Pointer) *byte

PLstrcat.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585941-plstrcat

func PLstrchr deprecated

func PLstrchr(str1 unsafe.Pointer, ch1 int16) unsafe.Pointer

PLstrchr.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585945-plstrchr

func PLstrcmp deprecated

func PLstrcmp(str1 unsafe.Pointer, str2 unsafe.Pointer) int16

PLstrcmp.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585947-plstrcmp

func PLstrcpy deprecated

func PLstrcpy(dest *byte, source unsafe.Pointer) *byte

PLstrcpy.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585940-plstrcpy

func PLstrlen deprecated

func PLstrlen(str unsafe.Pointer) int16

PLstrlen.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585944-plstrlen

func PLstrncat deprecated

func PLstrncat(str1 string, append_ unsafe.Pointer, num int16) *byte

PLstrncat.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585949-plstrncat

func PLstrncmp deprecated

func PLstrncmp(str1 unsafe.Pointer, str2 unsafe.Pointer, num int16) int16

PLstrncmp.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585951-plstrncmp

func PLstrncpy deprecated

func PLstrncpy(dest *byte, source unsafe.Pointer, num int16) *byte

PLstrncpy.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585946-plstrncpy

func PLstrpbrk deprecated

func PLstrpbrk(str1 unsafe.Pointer, charSet unsafe.Pointer) unsafe.Pointer

PLstrpbrk.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585948-plstrpbrk

func PLstrrchr deprecated

func PLstrrchr(str1 unsafe.Pointer, ch1 int16) unsafe.Pointer

PLstrrchr.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585943-plstrrchr

func PLstrspn deprecated

func PLstrspn(str1 unsafe.Pointer, charSet unsafe.Pointer) int16

PLstrspn.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585950-plstrspn

func PLstrstr deprecated

func PLstrstr(str1 unsafe.Pointer, searchStr unsafe.Pointer) unsafe.Pointer

PLstrstr.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1585942-plstrstr

func PrimeTime deprecated

func PrimeTime(tmTaskPtr QElemPtr, count int)

PrimeTime.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1550774-primetime

func PrimeTimeTask deprecated

func PrimeTimeTask(tmTaskPtr QElemPtr, count int) int16

PrimeTimeTask.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1550783-primetimetask

func PtrAndHand deprecated

func PtrAndHand(ptr1 unsafe.Pointer, hand2 kernel.Handle, size int) int16

PtrAndHand.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506365-ptrandhand

func PtrToHand deprecated

func PtrToHand(srcPtr unsafe.Pointer, dstHndl *kernel.Handle, size int) int16

PtrToHand.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506370-ptrtohand

func PtrToXHand deprecated

func PtrToXHand(srcPtr unsafe.Pointer, dstHndl kernel.Handle, size int) int16

PtrToXHand.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506246-ptrtoxhand

func PurgeCollection deprecated

func PurgeCollection(c Collection, whichAttributes int32, matchingAttributes int32)

PurgeCollection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551434-purgecollection

func PurgeCollectionTag deprecated

func PurgeCollectionTag(c Collection, tag CollectionTag)

PurgeCollectionTag.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551327-purgecollectiontag

func QueryUnicodeMappings

func QueryUnicodeMappings(iFilter uint32, iFindMapping ConstUnicodeMappingPtr, iMaxCount uint, oActualCount *uint, oReturnedMappings *UnicodeMapping) int32

QueryUnicodeMappings returns a list of the conversion mappings available onthe system that meet specified matching criteria and returns thenumber of mappings found.

See: https://developer.apple.com/documentation/coreservices/1433630-queryunicodemappings

func Randomx deprecated

func Randomx(x *float64) float64

Randomx.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1492636-randomx

func ReadIconFromFSRef deprecated

func ReadIconFromFSRef(ref unsafe.Pointer, iconFamily *IconFamilyHandle) int32

ReadIconFromFSRef.

Deprecated: Deprecated since macOS 10.13.

See: https://developer.apple.com/documentation/coreservices/1444939-readiconfromfsref

func ReadLocation deprecated

func ReadLocation(loc *MachineLocation)

ReadLocation.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1533377-readlocation

func ReadPartialResource deprecated

func ReadPartialResource(theResource kernel.Handle, offset int, buffer unsafe.Pointer, count int)

ReadPartialResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529248-readpartialresource

func ReallocateHandle deprecated

func ReallocateHandle(h kernel.Handle, byteCount int)

ReallocateHandle.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506393-reallocatehandle

func RecoverHandle deprecated

func RecoverHandle(p unsafe.Pointer) kernel.Handle

RecoverHandle.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506310-recoverhandle

func RegisterComponentFileRef deprecated

func RegisterComponentFileRef(ref *FSRef, global int16) int16

RegisterComponentFileRef.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516564-registercomponentfileref

func RegisterComponentFileRefEntries deprecated

func RegisterComponentFileRefEntries(ref *FSRef, global int16, toRegister *ComponentDescription, registerCount uint32) int16

RegisterComponentFileRefEntries.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516395-registercomponentfilerefentries

func RegisterComponentResourceFile deprecated

func RegisterComponentResourceFile(resRefNum int16, global int16) int32

RegisterComponentResourceFile registers all component resources in the given resource file.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516511-registercomponentresourcefile

func RegisterIconRefFromFSRef deprecated

func RegisterIconRefFromFSRef(creator uint32, iconType uint32, iconFile unsafe.Pointer, theIconRef *IconRef) int32

RegisterIconRefFromFSRef.

Deprecated: Deprecated since macOS 10.13.

See: https://developer.apple.com/documentation/coreservices/1446795-registericonreffromfsref

func RegisterIconRefFromIconFamily deprecated

func RegisterIconRefFromIconFamily(creator uint32, iconType uint32, iconFamily IconFamilyHandle, theIconRef *IconRef) int16

RegisterIconRefFromIconFamily.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1443918-registericonreffromiconfamily

func ReleaseCollection deprecated

func ReleaseCollection(c Collection) int32

ReleaseCollection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551418-releasecollection

func ReleaseFolder deprecated

func ReleaseFolder(vRefNum FSVolumeRefNum, folderType uint32) int16

ReleaseFolder.

Deprecated: Deprecated since macOS 10.3.

See: https://developer.apple.com/documentation/coreservices/1389109-releasefolder

func ReleaseIconRef deprecated

func ReleaseIconRef(theIconRef IconRef) int16

ReleaseIconRef.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1443504-releaseiconref

func ReleaseResource deprecated

func ReleaseResource(theResource kernel.Handle)

ReleaseResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529259-releaseresource

func RemoveCollectionItem deprecated

func RemoveCollectionItem(c Collection, tag CollectionTag, id int32) int16

RemoveCollectionItem.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551326-removecollectionitem

func RemoveFolderDescriptor deprecated

func RemoveFolderDescriptor(foldType FolderType) int16

RemoveFolderDescriptor.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389531-removefolderdescriptor

func RemoveIconRefOverride deprecated

func RemoveIconRefOverride(theIconRef IconRef) int16

RemoveIconRefOverride.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1445832-removeiconrefoverride

func RemoveIndexedCollectionItem deprecated

func RemoveIndexedCollectionItem(c Collection, itemIndex int32) int16

RemoveIndexedCollectionItem.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551414-removeindexedcollectionitem

func RemoveResource deprecated

func RemoveResource(theResource kernel.Handle)

RemoveResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529272-removeresource

func RemoveTimeTask deprecated

func RemoveTimeTask(tmTaskPtr QElemPtr) int16

RemoveTimeTask.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1550772-removetimetask

func ReplaceGestaltValue deprecated

func ReplaceGestaltValue(selector uint32, replacementValue int32) int16

ReplaceGestaltValue replaces the value that the function Gestalt returns for a specified selector code with the value provided to the function.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1472000-replacegestaltvalue

func ReplaceIndexedCollectionItem deprecated

func ReplaceIndexedCollectionItem(c Collection, itemIndex int32, itemSize int32, itemData unsafe.Pointer) int16

ReplaceIndexedCollectionItem.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551424-replaceindexedcollectionitem

func ReplaceIndexedCollectionItemHdl deprecated

func ReplaceIndexedCollectionItemHdl(aCollection Collection, itemIndex int32, itemData kernel.Handle) int16

ReplaceIndexedCollectionItemHdl.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551345-replaceindexedcollectionitemhdl

func ResError deprecated

func ResError() int16

ResError.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529333-reserror

func ResetTextToUnicodeInfo

func ResetTextToUnicodeInfo(ioTextToUnicodeInfo TextToUnicodeInfo) int32

ResetTextToUnicodeInfo reinitializes all state information kept by the contextobjects.

See: https://developer.apple.com/documentation/coreservices/1433526-resettexttounicodeinfo

func ResetUnicodeToTextInfo

func ResetUnicodeToTextInfo(ioUnicodeToTextInfo UnicodeToTextInfo) int32

ResetUnicodeToTextInfo reinitializes all state information kept by a Unicodeconverter object.

See: https://developer.apple.com/documentation/coreservices/1433647-resetunicodetotextinfo

func ResetUnicodeToTextRunInfo

func ResetUnicodeToTextRunInfo(ioUnicodeToTextRunInfo UnicodeToTextRunInfo) int32

ResetUnicodeToTextRunInfo reinitializes all state information kept by the contextobjects in TextRun conversions.

See: https://developer.apple.com/documentation/coreservices/1433495-resetunicodetotextruninfo

func ResolveDefaultTextEncoding

func ResolveDefaultTextEncoding(encoding kernel.TextEncoding) kernel.TextEncoding

ResolveDefaultTextEncoding returns a text encoding specification in which any meta-valueshave been resolved to real values.

See: https://developer.apple.com/documentation/coreservices/1400111-resolvedefaulttextencoding

func RetainCollection deprecated

func RetainCollection(c Collection) int32

RetainCollection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551332-retaincollection

func RevertTextEncodingToScriptInfo

func RevertTextEncodingToScriptInfo(iEncoding kernel.TextEncoding, oTextScriptID *int16, oTextLanguageID *int16, oTextFontname unsafe.Pointer) int32

RevertTextEncodingToScriptInfo converts the given Mac OS text encoding specificationto the corresponding script code and, if possible, language codeand font name.

See: https://developer.apple.com/documentation/coreservices/1400023-reverttextencodingtoscriptinfo

func RmvTime deprecated

func RmvTime(tmTaskPtr QElemPtr)

RmvTime.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1550775-rmvtime

func S64Divide

func S64Divide(dividend int64, divisor int64, remainderP *int64) int64

S64Divide.

See: https://developer.apple.com/documentation/coreservices/1536237-s64divide

func SKDocumentCopyURL

func SKDocumentCopyURL(inDocument SKDocumentRef) corefoundation.CFURLRef

SKDocumentCopyURL builds a CFURL object from a document URL object (of type SKDocument).

See: https://developer.apple.com/documentation/coreservices/1449624-skdocumentcopyurl

func SKDocumentGetName

func SKDocumentGetName(inDocument SKDocumentRef) corefoundation.CFStringRef

SKDocumentGetName gets the name of a document URL object (of type SKDocument).

See: https://developer.apple.com/documentation/coreservices/1442657-skdocumentgetname

func SKDocumentGetSchemeName

func SKDocumentGetSchemeName(inDocument SKDocumentRef) corefoundation.CFStringRef

SKDocumentGetSchemeName gets the scheme name for a document URL object (of type SKDocument).

See: https://developer.apple.com/documentation/coreservices/1448262-skdocumentgetschemename

func SKDocumentGetTypeID

func SKDocumentGetTypeID() uint

SKDocumentGetTypeID gets the type identifier for Search Kit document URL objects.

See: https://developer.apple.com/documentation/coreservices/1448891-skdocumentgettypeid

func SKIndexAddDocument

func SKIndexAddDocument(inIndex SKIndexRef, inDocument SKDocumentRef, inMIMETypeHint corefoundation.CFStringRef, inCanReplace unsafe.Pointer) bool

SKIndexAddDocument adds location information for a file-based document, and the document’s textual content, to an index.

See: https://developer.apple.com/documentation/coreservices/1444897-skindexadddocument

func SKIndexAddDocumentWithText

func SKIndexAddDocumentWithText(inIndex SKIndexRef, inDocument SKDocumentRef, inDocumentText corefoundation.CFStringRef, inCanReplace unsafe.Pointer) bool

SKIndexAddDocumentWithText adds a document URL (SKDocument) object, and the associated document’s textual content, to an index.

See: https://developer.apple.com/documentation/coreservices/1444518-skindexadddocumentwithtext

func SKIndexClose

func SKIndexClose(inIndex SKIndexRef)

SKIndexClose closes an index.

See: https://developer.apple.com/documentation/coreservices/1442401-skindexclose

func SKIndexCompact

func SKIndexCompact(inIndex SKIndexRef) bool

SKIndexCompact invokes all pending updates associated with an index, compacts the index if compaction is needed, and commits all changes to backing store.

See: https://developer.apple.com/documentation/coreservices/1443628-skindexcompact

func SKIndexCopyDocumentIDArrayForTermID

func SKIndexCopyDocumentIDArrayForTermID(inIndex SKIndexRef, inTermID int) corefoundation.CFArrayRef

SKIndexCopyDocumentIDArrayForTermID obtains document IDs for documents that contain a given term.

See: https://developer.apple.com/documentation/coreservices/1448003-skindexcopydocumentidarrayforter

func SKIndexCopyDocumentProperties

func SKIndexCopyDocumentProperties(inIndex SKIndexRef, inDocument SKDocumentRef) corefoundation.CFDictionaryRef

SKIndexCopyDocumentProperties obtains the application-defined properties of an indexed document.

See: https://developer.apple.com/documentation/coreservices/1449500-skindexcopydocumentproperties

func SKIndexCopyDocumentRefsForDocumentIDs

func SKIndexCopyDocumentRefsForDocumentIDs(inIndex SKIndexRef, inCount int, inDocumentIDsArray *SKDocumentID, outDocumentRefsArray *SKDocumentRef)

SKIndexCopyDocumentRefsForDocumentIDs gets document URL objects (of type SKDocument) based on document IDs.

See: https://developer.apple.com/documentation/coreservices/1445305-skindexcopydocumentrefsfordocume

func SKIndexCopyDocumentURLsForDocumentIDs

func SKIndexCopyDocumentURLsForDocumentIDs(inIndex SKIndexRef, inCount int, inDocumentIDsArray *SKDocumentID, outDocumentURLsArray *corefoundation.CFURLRef)

SKIndexCopyDocumentURLsForDocumentIDs gets document URLs based on document IDs.

See: https://developer.apple.com/documentation/coreservices/1443501-skindexcopydocumenturlsfordocume

func SKIndexCopyInfoForDocumentIDs

func SKIndexCopyInfoForDocumentIDs(inIndex SKIndexRef, inCount int, inDocumentIDsArray *SKDocumentID, outNamesArray *corefoundation.CFStringRef, outParentIDsArray *SKDocumentID)

SKIndexCopyInfoForDocumentIDs gets document names and parent IDs based on document IDs.

See: https://developer.apple.com/documentation/coreservices/1445499-skindexcopyinfofordocumentids

func SKIndexCopyTermIDArrayForDocumentID

func SKIndexCopyTermIDArrayForDocumentID(inIndex SKIndexRef, inDocumentID SKDocumentID) corefoundation.CFArrayRef

SKIndexCopyTermIDArrayForDocumentID obtains the IDs for the terms of an indexed document.

See: https://developer.apple.com/documentation/coreservices/1446868-skindexcopytermidarrayfordocumen

func SKIndexCopyTermStringForTermID

func SKIndexCopyTermStringForTermID(inIndex SKIndexRef, inTermID int) corefoundation.CFStringRef

SKIndexCopyTermStringForTermID obtains a term, specified by ID, from an index.

See: https://developer.apple.com/documentation/coreservices/1442802-skindexcopytermstringfortermid

func SKIndexDocumentIteratorGetTypeID

func SKIndexDocumentIteratorGetTypeID() uint

SKIndexDocumentIteratorGetTypeID gets the type identifier for Search Kit document iterators.

See: https://developer.apple.com/documentation/coreservices/1443022-skindexdocumentiteratorgettypeid

func SKIndexFlush

func SKIndexFlush(inIndex SKIndexRef) bool

SKIndexFlush invokes all pending updates associated with an index and commits them to backing store.

See: https://developer.apple.com/documentation/coreservices/1450667-skindexflush

func SKIndexGetAnalysisProperties

func SKIndexGetAnalysisProperties(inIndex SKIndexRef) corefoundation.CFDictionaryRef

SKIndexGetAnalysisProperties gets the text analysis properties of an index.

See: https://developer.apple.com/documentation/coreservices/1443461-skindexgetanalysisproperties

func SKIndexGetDocumentCount

func SKIndexGetDocumentCount(inIndex SKIndexRef) int

SKIndexGetDocumentCount gets the total number of documents represented in an index.

See: https://developer.apple.com/documentation/coreservices/1449093-skindexgetdocumentcount

func SKIndexGetDocumentTermCount

func SKIndexGetDocumentTermCount(inIndex SKIndexRef, inDocumentID SKDocumentID) int

SKIndexGetDocumentTermCount gets the number of terms for a document in an index.

See: https://developer.apple.com/documentation/coreservices/1448341-skindexgetdocumenttermcount

func SKIndexGetDocumentTermFrequency

func SKIndexGetDocumentTermFrequency(inIndex SKIndexRef, inDocumentID SKDocumentID, inTermID int) int

SKIndexGetDocumentTermFrequency gets the number of occurrences of a term in a document.

See: https://developer.apple.com/documentation/coreservices/1447537-skindexgetdocumenttermfrequency

func SKIndexGetMaximumBytesBeforeFlush

func SKIndexGetMaximumBytesBeforeFlush(inIndex SKIndexRef) int

SKIndexGetMaximumBytesBeforeFlush not recommended.

See: https://developer.apple.com/documentation/coreservices/1445329-skindexgetmaximumbytesbeforeflus

func SKIndexGetMaximumTermID

func SKIndexGetMaximumTermID(inIndex SKIndexRef) int

SKIndexGetMaximumTermID gets the highest-numbered term ID in an index.

See: https://developer.apple.com/documentation/coreservices/1444278-skindexgetmaximumtermid

func SKIndexGetTermDocumentCount

func SKIndexGetTermDocumentCount(inIndex SKIndexRef, inTermID int) int

SKIndexGetTermDocumentCount gets the number of documents containing a given term represented in an index.

See: https://developer.apple.com/documentation/coreservices/1444015-skindexgettermdocumentcount

func SKIndexGetTermIDForTermString

func SKIndexGetTermIDForTermString(inIndex SKIndexRef, inTermString corefoundation.CFStringRef) int

SKIndexGetTermIDForTermString gets the ID for a term in an index.

See: https://developer.apple.com/documentation/coreservices/1448558-skindexgettermidfortermstring

func SKIndexGetTypeID

func SKIndexGetTypeID() uint

SKIndexGetTypeID gets the type identifier for Search Kit indexes.

See: https://developer.apple.com/documentation/coreservices/1450223-skindexgettypeid

func SKIndexMoveDocument

func SKIndexMoveDocument(inIndex SKIndexRef, inDocument SKDocumentRef, inNewParent SKDocumentRef) bool

SKIndexMoveDocument changes the parent of a document URL object (of type SKDocument) in an index.

See: https://developer.apple.com/documentation/coreservices/1449899-skindexmovedocument

func SKIndexRemoveDocument

func SKIndexRemoveDocument(inIndex SKIndexRef, inDocument SKDocumentRef) bool

SKIndexRemoveDocument removes a document URL object (of type SKDocument) and its children, if any, from an index.

See: https://developer.apple.com/documentation/coreservices/1444375-skindexremovedocument

func SKIndexRenameDocument

func SKIndexRenameDocument(inIndex SKIndexRef, inDocument SKDocumentRef, inNewName corefoundation.CFStringRef) bool

SKIndexRenameDocument changes the name of a document URL object (of type SKDocument) in an index.

See: https://developer.apple.com/documentation/coreservices/1448935-skindexrenamedocument

func SKIndexSetDocumentProperties

func SKIndexSetDocumentProperties(inIndex SKIndexRef, inDocument SKDocumentRef, inProperties corefoundation.CFDictionaryRef)

SKIndexSetDocumentProperties sets the application-defined properties of a document URL object (of type SKDocument).

See: https://developer.apple.com/documentation/coreservices/1444576-skindexsetdocumentproperties

func SKIndexSetMaximumBytesBeforeFlush

func SKIndexSetMaximumBytesBeforeFlush(inIndex SKIndexRef, inBytesForUpdate int)

SKIndexSetMaximumBytesBeforeFlush not recommended.

See: https://developer.apple.com/documentation/coreservices/1448696-skindexsetmaximumbytesbeforeflus

func SKLoadDefaultExtractorPlugIns

func SKLoadDefaultExtractorPlugIns()

SKLoadDefaultExtractorPlugIns tells Search Kit to use the Spotlight metadata importers.

See: https://developer.apple.com/documentation/coreservices/1447859-skloaddefaultextractorplugins

func SKSearchCancel

func SKSearchCancel(inSearch SKSearchRef)

SKSearchCancel cancels an asynchronous search request.

See: https://developer.apple.com/documentation/coreservices/1442083-sksearchcancel

func SKSearchFindMatches

func SKSearchFindMatches(inSearch SKSearchRef, inMaximumCount int, outDocumentIDsArray *SKDocumentID, outScoresArray unsafe.Pointer, maximumTime corefoundation.CFTimeInterval, outFoundCount *int) bool

SKSearchFindMatches extracts search result information from a search object.

See: https://developer.apple.com/documentation/coreservices/1448608-sksearchfindmatches

func SKSearchGetTypeID

func SKSearchGetTypeID() uint

SKSearchGetTypeID gets the type identifier for Search Kit search objects.

See: https://developer.apple.com/documentation/coreservices/1448621-sksearchgettypeid

func SKSearchGroupGetTypeID deprecated

func SKSearchGroupGetTypeID() uint

SKSearchGroupGetTypeID deprecated.

Deprecated: Deprecated since macOS 10.4.

See: https://developer.apple.com/documentation/coreservices/1448637-sksearchgroupgettypeid

func SKSummaryCopyParagraphAtIndex

func SKSummaryCopyParagraphAtIndex(summary SKSummaryRef, i int) corefoundation.CFStringRef

SKSummaryCopyParagraphAtIndex gets a specified paragraph from the text in a summarization object.

See: https://developer.apple.com/documentation/coreservices/1445711-sksummarycopyparagraphatindex

func SKSummaryCopyParagraphSummaryString

func SKSummaryCopyParagraphSummaryString(summary SKSummaryRef, numParagraphs int) corefoundation.CFStringRef

SKSummaryCopyParagraphSummaryString gets a text string consisting of a summary with, at most, the requested number of paragraphs.

See: https://developer.apple.com/documentation/coreservices/1449746-sksummarycopyparagraphsummarystr

func SKSummaryCopySentenceAtIndex

func SKSummaryCopySentenceAtIndex(summary SKSummaryRef, i int) corefoundation.CFStringRef

SKSummaryCopySentenceAtIndex gets a specified sentence from the text in a summarization object.

See: https://developer.apple.com/documentation/coreservices/1450287-sksummarycopysentenceatindex

func SKSummaryCopySentenceSummaryString

func SKSummaryCopySentenceSummaryString(summary SKSummaryRef, numSentences int) corefoundation.CFStringRef

SKSummaryCopySentenceSummaryString gets a text string consisting of a summary with, at most, the requested number of sentences.

See: https://developer.apple.com/documentation/coreservices/1449700-sksummarycopysentencesummarystri

func SKSummaryGetParagraphCount

func SKSummaryGetParagraphCount(summary SKSummaryRef) int

SKSummaryGetParagraphCount gets the number of paragraphs in a summarization object.

See: https://developer.apple.com/documentation/coreservices/1449304-sksummarygetparagraphcount

func SKSummaryGetParagraphSummaryInfo

func SKSummaryGetParagraphSummaryInfo(summary SKSummaryRef, numParagraphsInSummary int, outRankOrderOfParagraphs *int, outParagraphIndexOfParagraphs *int) int

SKSummaryGetParagraphSummaryInfo gets detailed information about a body of text for constructing a custom paragraph-based summary string.

See: https://developer.apple.com/documentation/coreservices/1447517-sksummarygetparagraphsummaryinfo

func SKSummaryGetSentenceCount

func SKSummaryGetSentenceCount(summary SKSummaryRef) int

SKSummaryGetSentenceCount gets the number of sentences in a summarization object.

See: https://developer.apple.com/documentation/coreservices/1450009-sksummarygetsentencecount

func SKSummaryGetSentenceSummaryInfo

func SKSummaryGetSentenceSummaryInfo(summary SKSummaryRef, numSentencesInSummary int, outRankOrderOfSentences *int, outSentenceIndexOfSentences *int, outParagraphIndexOfSentences *int) int

SKSummaryGetSentenceSummaryInfo gets detailed information about a body of text for constructing a custom sentence-based summary string.

See: https://developer.apple.com/documentation/coreservices/1444767-sksummarygetsentencesummaryinfo

func SKSummaryGetTypeID

func SKSummaryGetTypeID() uint

SKSummaryGetTypeID gets the type identifier for Search Kit summarization objects.

See: https://developer.apple.com/documentation/coreservices/1444796-sksummarygettypeid

func SetCollectionDefaultAttributes deprecated

func SetCollectionDefaultAttributes(c Collection, whichAttributes int32, newAttributes int32)

SetCollectionDefaultAttributes.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551442-setcollectiondefaultattributes

func SetCollectionExceptionProc deprecated

func SetCollectionExceptionProc(c Collection, exceptionProc CollectionExceptionUPP)

SetCollectionExceptionProc.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551417-setcollectionexceptionproc

func SetCollectionItemInfo deprecated

func SetCollectionItemInfo(c Collection, tag CollectionTag, id int32, whichAttributes int32, newAttributes int32) int16

SetCollectionItemInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551372-setcollectioniteminfo

func SetComponentInstanceError deprecated

func SetComponentInstanceError(aComponentInstance ComponentInstance, theError int16)

SetComponentInstanceError passes error information to the Component Manager which sets the current error value for the appropriate connection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516663-setcomponentinstanceerror

func SetComponentInstanceStorage deprecated

func SetComponentInstanceStorage(aComponentInstance ComponentInstance, theStorage kernel.Handle)

SetComponentInstanceStorage allows your component to associate memory with a connection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516556-setcomponentinstancestorage

func SetComponentRefcon deprecated

func SetComponentRefcon(aComponent Component, theRefcon int)

SetComponentRefcon sets the reference constant for your component.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516562-setcomponentrefcon

func SetCustomIconsEnabled deprecated

func SetCustomIconsEnabled(vRefNum int16, enableCustomIcons unsafe.Pointer) int16

SetCustomIconsEnabled.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1449302-setcustomiconsenabled

func SetDebugOptionValue deprecated

func SetDebugOptionValue(componentSignature uint32, optionSelectorNum int32, newOptionSetting bool) int32

SetDebugOptionValue.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517709-setdebugoptionvalue

func SetDebuggerNotificationProcs deprecated

func SetDebuggerNotificationProcs(notifyNewThread DebuggerNewThreadTPP, notifyDisposeThread DebuggerDisposeThreadTPP, notifyThreadScheduler DebuggerThreadSchedulerTPP) int16

SetDebuggerNotificationProcs.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574202-setdebuggernotificationprocs

func SetDefaultComponent deprecated

func SetDefaultComponent(aComponent Component, flags int16) int16

SetDefaultComponent changes the search order for registered components.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516566-setdefaultcomponent

func SetFallbackUnicodeToText

func SetFallbackUnicodeToText(iUnicodeToTextInfo UnicodeToTextInfo, iFallback UnicodeToTextFallbackUPP, iControlFlags uint32, iInfoPtr unsafe.Pointer) int32

SetFallbackUnicodeToText specifies a fallback handler to be used for convertinga Unicode text segment to another encoding when the Unicode Convertercannot convert the text using the mapping table specified by theUnicode converter object.

See: https://developer.apple.com/documentation/coreservices/1433614-setfallbackunicodetotext

func SetFallbackUnicodeToTextRun

func SetFallbackUnicodeToTextRun(iUnicodeToTextRunInfo UnicodeToTextRunInfo, iFallback UnicodeToTextFallbackUPP, iControlFlags uint32, iInfoPtr unsafe.Pointer) int32

SetFallbackUnicodeToTextRun specifies a fallback handler to be used for convertinga Unicode text segment to another encoding when the Unicode Convertercannot convert the text using the mapping table specified by a Unicodeconverter object.

See: https://developer.apple.com/documentation/coreservices/1433644-setfallbackunicodetotextrun

func SetGestaltValue deprecated

func SetGestaltValue(selector uint32, newValue int32) int16

SetGestaltValue sets the value the function Gestalt will return for a specified selector code, installing the selector if it was not already installed.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1470991-setgestaltvalue

func SetHandleSize deprecated

func SetHandleSize(h kernel.Handle, newSize int)

SetHandleSize.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506241-sethandlesize

func SetIndexedCollectionItemInfo deprecated

func SetIndexedCollectionItemInfo(c Collection, itemIndex int32, whichAttributes int32, newAttributes int32) int16

SetIndexedCollectionItemInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551406-setindexedcollectioniteminfo

func SetPtrSize deprecated

func SetPtrSize(p unsafe.Pointer, newSize int)

SetPtrSize.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506428-setptrsize

func SetResAttrs deprecated

func SetResAttrs(theResource kernel.Handle, attrs ResAttributes)

SetResAttrs.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529240-setresattrs

func SetResFileAttrs deprecated

func SetResFileAttrs(refNum ResFileRefNum, attrs ResFileAttributes)

SetResFileAttrs.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529257-setresfileattrs

func SetResInfo deprecated

func SetResInfo(theResource kernel.Handle, theID ResID, name unsafe.Pointer)

SetResInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529247-setresinfo

func SetResLoad deprecated

func SetResLoad(load bool)

SetResLoad.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529294-setresload

func SetResPurge deprecated

func SetResPurge(install bool)

SetResPurge.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529316-setrespurge

func SetResourceSize deprecated

func SetResourceSize(theResource kernel.Handle, newSize int)

SetResourceSize.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529277-setresourcesize

func SetScriptManagerVariable deprecated

func SetScriptManagerVariable(selector int16, param int) int16

SetScriptManagerVariable.

Deprecated: Deprecated since macOS 10.5.

See: https://developer.apple.com/documentation/coreservices/1483931-setscriptmanagervariable

func SetThreadReadyGivenTaskRef deprecated

func SetThreadReadyGivenTaskRef(threadTRef ThreadTaskRef, threadToSet ThreadID) int16

SetThreadReadyGivenTaskRef.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574279-setthreadreadygiventaskref

func SetThreadScheduler deprecated

func SetThreadScheduler(threadScheduler ThreadSchedulerTPP) int16

SetThreadScheduler.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574195-setthreadscheduler

func SetThreadState deprecated

func SetThreadState(threadToSet ThreadID, newState kernel.ThreadState, suggestedThread ThreadID) int16

SetThreadState.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574212-setthreadstate

func SetThreadStateEndCritical deprecated

func SetThreadStateEndCritical(threadToSet ThreadID, newState kernel.ThreadState, suggestedThread ThreadID) int16

SetThreadStateEndCritical.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574289-setthreadstateendcritical

func SetThreadSwitcher deprecated

func SetThreadSwitcher(thread ThreadID, threadSwitcher ThreadSwitchTPP, switchProcParam unsafe.Pointer, inOrOut bool) int16

SetThreadSwitcher.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574270-setthreadswitcher

func SetThreadTerminator deprecated

func SetThreadTerminator(thread ThreadID, threadTerminator ThreadTerminationTPP, terminationProcParam unsafe.Pointer) int16

SetThreadTerminator.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574205-setthreadterminator

func SleepQInstall deprecated

func SleepQInstall(qRecPtr SleepQRecPtr)

SleepQInstall.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1427477-sleepqinstall

func SleepQRemove deprecated

func SleepQRemove(qRecPtr SleepQRecPtr)

SleepQRemove.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1427457-sleepqremove

func Str2dec deprecated

func Str2dec(s string, ix *int16, d *Decimal, vp *int16)

Str2dec.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1492635-str2dec

func SubAbsoluteFromAbsolute deprecated

func SubAbsoluteFromAbsolute(leftAbsoluteTime uint64, rightAbsoluteTime uint64) uint64

SubAbsoluteFromAbsolute.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501265-subabsolutefromabsolute

func SubDurationFromAbsolute deprecated

func SubDurationFromAbsolute(duration int32, absoluteTime uint64) uint64

SubDurationFromAbsolute.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501261-subdurationfromabsolute

func SubNanosecondsFromAbsolute deprecated

func SubNanosecondsFromAbsolute(nanoseconds uint64, absoluteTime uint64) uint64

SubNanosecondsFromAbsolute.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501240-subnanosecondsfromabsolute

func SysError deprecated

func SysError(errorCode int16)

SysError.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1559937-syserror

func TECClearConverterContextInfo

func TECClearConverterContextInfo(encodingConverter TECObjectRef) int32

TECClearConverterContextInfo resets a converter object to its initial state so youcan reuse it.

See: https://developer.apple.com/documentation/coreservices/1571844-tecclearconvertercontextinfo

func TECClearSnifferContextInfo

func TECClearSnifferContextInfo(encodingSniffer TECSnifferObjectRef) int32

TECClearSnifferContextInfo resets a sniffer object to its initial settings so youcan reuse it.

See: https://developer.apple.com/documentation/coreservices/1571850-tecclearsniffercontextinfo

func TECConvertText

func TECConvertText(encodingConverter TECObjectRef, inputBuffer ConstTextPtr, inputBufferLength uint, actualInputLength *uint, outputBuffer TextPtr, outputBufferLength uint, actualOutputLength *uint) int32

TECConvertText converts a stream of text from a source encoding to adestination encoding.

See: https://developer.apple.com/documentation/coreservices/1571824-tecconverttext

func TECConvertTextToMultipleEncodings

func TECConvertTextToMultipleEncodings(encodingConverter TECObjectRef, inputBuffer ConstTextPtr, inputBufferLength uint, actualInputLength *uint, outputBuffer TextPtr, outputBufferLength uint, actualOutputLength *uint, outEncodingsBuffer *TextEncodingRun, maxOutEncodingRuns uint, actualOutEncodingRuns *uint) int32

TECConvertTextToMultipleEncodings converts text in the source encoding to runs of text inmultiple destination encodings.

See: https://developer.apple.com/documentation/coreservices/1571849-tecconverttexttomultipleencoding

func TECCopyTextEncodingInternetNameAndMIB

func TECCopyTextEncodingInternetNameAndMIB(textEncoding kernel.TextEncoding, usage TECInternetNameUsageMask, encodingNamePtr *corefoundation.CFStringRef, mibEnumPtr *int32) int32

TECCopyTextEncodingInternetNameAndMIB.

See: https://developer.apple.com/documentation/coreservices/1571835-teccopytextencodinginternetnamea

func TECCountAvailableSniffers

func TECCountAvailableSniffers(numberOfEncodings *uint) int32

TECCountAvailableSniffers counts and returns the number of sniffers available inall installed plug-ins.

See: https://developer.apple.com/documentation/coreservices/1571795-teccountavailablesniffers

func TECCountAvailableTextEncodings

func TECCountAvailableTextEncodings(numberEncodings *uint) int32

TECCountAvailableTextEncodings counts and returns the number of text encodings currentlyconfigured in the Text Encoding Converter.

See: https://developer.apple.com/documentation/coreservices/1571853-teccountavailabletextencodings

func TECCountDestinationTextEncodings

func TECCountDestinationTextEncodings(inputEncoding kernel.TextEncoding, numberOfEncodings *uint) int32

TECCountDestinationTextEncodings counts and returns the number of destination encodingsto which a specified source encoding can be converted in one step.

See: https://developer.apple.com/documentation/coreservices/1571805-teccountdestinationtextencodings

func TECCountDirectTextEncodingConversions

func TECCountDirectTextEncodingConversions(numberOfEncodings *uint) int32

TECCountDirectTextEncodingConversions counts and returns the number of direct conversions currentlyconfigured in the Text Encoding Converter.

See: https://developer.apple.com/documentation/coreservices/1571822-teccountdirecttextencodingconver

func TECCountMailTextEncodings

func TECCountMailTextEncodings(locale int16, numberEncodings *uint) int32

TECCountMailTextEncodings counts and returns the number of currently supported e-mailencodings for a specified region.

See: https://developer.apple.com/documentation/coreservices/1571826-teccountmailtextencodings

func TECCountSubTextEncodings

func TECCountSubTextEncodings(inputEncoding kernel.TextEncoding, numberOfEncodings *uint) int32

TECCountSubTextEncodings counts and returns the number of subencodings a text encodingsupports.

See: https://developer.apple.com/documentation/coreservices/1571820-teccountsubtextencodings

func TECCountWebTextEncodings

func TECCountWebTextEncodings(locale int16, numberEncodings *uint) int32

TECCountWebTextEncodings counts and returns the number of currently supported textencodings for a region code.

See: https://developer.apple.com/documentation/coreservices/1571837-teccountwebtextencodings

func TECCreateConverter

func TECCreateConverter(newEncodingConverter *TECObjectRef, inputEncoding kernel.TextEncoding, outputEncoding kernel.TextEncoding) int32

TECCreateConverter determines a conversion path for a source and destinationencoding, then creates a text encoding converter object and returnsa pointer to it.

See: https://developer.apple.com/documentation/coreservices/1571815-teccreateconverter

func TECCreateConverterFromPath

func TECCreateConverterFromPath(newEncodingConverter *TECObjectRef, inPath *kernel.TextEncoding, inEncodings uint) int32

TECCreateConverterFromPath creates a converter object for a specific conversion path—froma source encoding through intermediate encodings to a destinationencoding—and returns a pointer to it.

See: https://developer.apple.com/documentation/coreservices/1571829-teccreateconverterfrompath

func TECCreateOneToManyConverter

func TECCreateOneToManyConverter(newEncodingConverter *TECObjectRef, inputEncoding kernel.TextEncoding, numOutputEncodings uint, outputEncodings *kernel.TextEncoding) int32

TECCreateOneToManyConverter determines a conversion path for the source encoding anddestinations encodings you specify, creates a text encoding converterobject, and returns a reference to it.

See: https://developer.apple.com/documentation/coreservices/1571794-teccreateonetomanyconverter

func TECCreateSniffer

func TECCreateSniffer(encodingSniffer *TECSnifferObjectRef, testEncodings *kernel.TextEncoding, numTextEncodings uint) int32

TECCreateSniffer creates a sniffer object and returns a reference to it.

See: https://developer.apple.com/documentation/coreservices/1571832-teccreatesniffer

func TECDisposeConverter

func TECDisposeConverter(newEncodingConverter TECObjectRef) int32

TECDisposeConverter disposes of a converter object.

See: https://developer.apple.com/documentation/coreservices/1571839-tecdisposeconverter

func TECDisposeSniffer

func TECDisposeSniffer(encodingSniffer TECSnifferObjectRef) int32

TECDisposeSniffer disposes of a sniffer object.

See: https://developer.apple.com/documentation/coreservices/1571854-tecdisposesniffer

func TECFlushMultipleEncodings

func TECFlushMultipleEncodings(encodingConverter TECObjectRef, outputBuffer TextPtr, outputBufferLength uint, actualOutputLength *uint, outEncodingsBuffer *TextEncodingRun, maxOutEncodingRuns uint, actualOutEncodingRuns *uint) int32

TECFlushMultipleEncodings flushes out any encodings that may be stored in a converterobject’s temporary buffers and shifts encodings back to theirdefault state, if any.

See: https://developer.apple.com/documentation/coreservices/1571842-tecflushmultipleencodings

func TECFlushText

func TECFlushText(encodingConverter TECObjectRef, outputBuffer TextPtr, outputBufferLength uint, actualOutputLength *uint) int32

TECFlushText flushes out any data in a converter object’s temporarybuffers and resets the converter object.

See: https://developer.apple.com/documentation/coreservices/1571848-tecflushtext

func TECGetAvailableSniffers

func TECGetAvailableSniffers(availableSniffers *kernel.TextEncoding, maxAvailableSniffers uint, actualAvailableSniffers *uint) int32

TECGetAvailableSniffers returns the list of sniffers available in all installedplug-ins.

See: https://developer.apple.com/documentation/coreservices/1571841-tecgetavailablesniffers

func TECGetAvailableTextEncodings

func TECGetAvailableTextEncodings(availableEncodings *kernel.TextEncoding, maxAvailableEncodings uint, actualAvailableEncodings *uint) int32

TECGetAvailableTextEncodings returns the text encoding specifications currently configuredin the Text Encoding Converter.

See: https://developer.apple.com/documentation/coreservices/1571819-tecgetavailabletextencodings

func TECGetDestinationTextEncodings

func TECGetDestinationTextEncodings(inputEncoding kernel.TextEncoding, destinationEncodings *kernel.TextEncoding, maxDestinationEncodings uint, actualDestinationEncodings *uint) int32

TECGetDestinationTextEncodings returns the encoding specifications for all the destinationtext encodings to which the Text Encoding Converter can directlyconvert the specified source encoding.

See: https://developer.apple.com/documentation/coreservices/1571808-tecgetdestinationtextencodings

func TECGetDirectTextEncodingConversions

func TECGetDirectTextEncodingConversions(availableConversions *TECConversionInfo, maxAvailableConversions uint, actualAvailableConversions *uint) int32

TECGetDirectTextEncodingConversions returns the types of direct conversions currently configuredin the Text Encoding Converter.

See: https://developer.apple.com/documentation/coreservices/1571834-tecgetdirecttextencodingconversi

func TECGetEncodingList

func TECGetEncodingList(encodingConverter TECObjectRef, numEncodings *uint, encodingList *kernel.Handle) int32

TECGetEncodingList gets the list of destination encodings from a converterobject.

See: https://developer.apple.com/documentation/coreservices/1571830-tecgetencodinglist

func TECGetInfo

func TECGetInfo(tecInfo *TECInfoHandle) int32

TECGetInfo allocates a converter information structure of type TECInfo inthe application heap using NewHandle,fills it out, and returns a handle.

See: https://developer.apple.com/documentation/coreservices/1400430-tecgetinfo

func TECGetMailTextEncodings

func TECGetMailTextEncodings(locale int16, availableEncodings *kernel.TextEncoding, maxAvailableEncodings uint, actualAvailableEncodings *uint) int32

TECGetMailTextEncodings returns the currently supported mail encoding specificationsfor a region code.

See: https://developer.apple.com/documentation/coreservices/1571845-tecgetmailtextencodings

func TECGetSubTextEncodings

func TECGetSubTextEncodings(inputEncoding kernel.TextEncoding, subEncodings *kernel.TextEncoding, maxSubEncodings uint, actualSubEncodings *uint) int32

TECGetSubTextEncodings returns the text encoding specifications for the subencodingsthe encoding scheme supports.

See: https://developer.apple.com/documentation/coreservices/1571796-tecgetsubtextencodings

func TECGetTextEncodingFromInternetName

func TECGetTextEncodingFromInternetName(textEncoding *kernel.TextEncoding, encodingName unsafe.Pointer) int32

TECGetTextEncodingFromInternetName returns the Mac OS text encoding specification that correspondsto an Internet encoding name.

See: https://developer.apple.com/documentation/coreservices/1571825-tecgettextencodingfrominternetna

func TECGetTextEncodingFromInternetNameOrMIB

func TECGetTextEncodingFromInternetNameOrMIB(textEncodingPtr *kernel.TextEncoding, usage TECInternetNameUsageMask, encodingName corefoundation.CFStringRef, mibEnum int32) int32

TECGetTextEncodingFromInternetNameOrMIB.

See: https://developer.apple.com/documentation/coreservices/1571816-tecgettextencodingfrominternetna

func TECGetTextEncodingInternetName

func TECGetTextEncodingInternetName(textEncoding kernel.TextEncoding, encodingName unsafe.Pointer) int32

TECGetTextEncodingInternetName returns the Internet encoding name that corresponds toa Mac OS text encoding.

See: https://developer.apple.com/documentation/coreservices/1571851-tecgettextencodinginternetname

func TECGetWebTextEncodings

func TECGetWebTextEncodings(locale int16, availableEncodings *kernel.TextEncoding, maxAvailableEncodings uint, actualAvailableEncodings *uint) int32

TECGetWebTextEncodings returns the currently supported text encoding specificationsfor a region code.

See: https://developer.apple.com/documentation/coreservices/1571798-tecgetwebtextencodings

func TECSetBasicOptions

func TECSetBasicOptions(encodingConverter TECObjectRef, controlFlags uint32) int32

TECSetBasicOptions.

See: https://developer.apple.com/documentation/coreservices/1571847-tecsetbasicoptions

func TECSniffTextEncoding

func TECSniffTextEncoding(encodingSniffer TECSnifferObjectRef, inputBuffer ConstTextPtr, inputBufferLength uint, testEncodings *kernel.TextEncoding, numTextEncodings uint, numErrsArray *uint, maxErrs uint, numFeaturesArray *uint, maxFeatures uint) int32

TECSniffTextEncoding analyzes a text stream and returns the probable encodingsin a ranked list, based on an array of possible encodings you supply.It also returns the number of errors and features for each encoding.

See: https://developer.apple.com/documentation/coreservices/1571836-tecsnifftextencoding

func TaskLevel deprecated

func TaskLevel() uint32

TaskLevel.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517734-tasklevel

func TempNewHandle deprecated

func TempNewHandle(logicalSize int, resultCode *int16) kernel.Handle

TempNewHandle.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1506376-tempnewhandle

func TestAndClear deprecated

func TestAndClear(bit uint32, address []byte) bool

TestAndClear.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490573-testandclear

func TestAndSet deprecated

func TestAndSet(bit uint32, address []byte) bool

TestAndSet.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1490582-testandset

func ThreadBeginCritical deprecated

func ThreadBeginCritical() int16

ThreadBeginCritical.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574258-threadbegincritical

func ThreadCurrentStackSpace deprecated

func ThreadCurrentStackSpace(thread ThreadID, freeStack *uint) int16

ThreadCurrentStackSpace.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574269-threadcurrentstackspace

func ThreadEndCritical deprecated

func ThreadEndCritical() int16

ThreadEndCritical.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574230-threadendcritical

func TickCount deprecated

func TickCount() uint32

TickCount.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1533365-tickcount

func TruncateForTextToUnicode

func TruncateForTextToUnicode(iTextToUnicodeInfo ConstTextToUnicodeInfo, iSourceLen uint, iSourceStr unsafe.Pointer, iMaxLen uint, oTruncatedLen *uint) int32

TruncateForTextToUnicode identifies where your application can safely break a multibytestring to be converted to Unicode so that the string is not brokenin the middle of a multibyte character.

See: https://developer.apple.com/documentation/coreservices/1433518-truncatefortexttounicode

func TruncateForUnicodeToText

func TruncateForUnicodeToText(iUnicodeToTextInfo ConstUnicodeToTextInfo, iSourceLen uint, iSourceStr *uint16, iControlFlags uint32, iMaxLen uint, oTruncatedLen *uint) int32

TruncateForUnicodeToText identifies where your application can safely break a Unicodestring to be converted to any encoding so that the string is brokenin a way that preserves the text element integrity.

See: https://developer.apple.com/documentation/coreservices/1433649-truncateforunicodetotext

func U64Compare deprecated

func U64Compare(left uint64, right uint64) int32

U64Compare.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1536343-u64compare

func U64Divide

func U64Divide(dividend uint64, divisor uint64, remainder *uint64) uint64

U64Divide.

See: https://developer.apple.com/documentation/coreservices/1536326-u64divide

func UCCompareCollationKeys

func UCCompareCollationKeys(key1Ptr *UCCollationValue, key1Length unsafe.Pointer, key2Ptr *UCCollationValue, key2Length unsafe.Pointer, equivalent unsafe.Pointer, order int32) int32

UCCompareCollationKeys uses collation keys to compare Unicode strings.

See: https://developer.apple.com/documentation/coreservices/1390378-uccomparecollationkeys

func UCCompareText

func UCCompareText(collatorRef CollatorRef, text1Ptr *uint16, text1Length unsafe.Pointer, text2Ptr *uint16, text2Length unsafe.Pointer, equivalent unsafe.Pointer, order int32) int32

UCCompareText uses locale-specific collation information to compare Unicode strings.

See: https://developer.apple.com/documentation/coreservices/1390642-uccomparetext

func UCCompareTextDefault

func UCCompareTextDefault(options UCCollateOptions, text1Ptr *uint16, text1Length unsafe.Pointer, text2Ptr *uint16, text2Length unsafe.Pointer, equivalent unsafe.Pointer, order int32) int32

UCCompareTextDefault uses the default system locale to compare Unicode strings.

See: https://developer.apple.com/documentation/coreservices/1390472-uccomparetextdefault

func UCCompareTextNoLocale

func UCCompareTextNoLocale(options UCCollateOptions, text1Ptr *uint16, text1Length unsafe.Pointer, text2Ptr *uint16, text2Length unsafe.Pointer, equivalent unsafe.Pointer, order int32) int32

UCCompareTextNoLocale uses a fixed, locale-insensitive order to compare Unicode strings.

See: https://developer.apple.com/documentation/coreservices/1390513-uccomparetextnolocale

func UCConvertCFAbsoluteTimeToLongDateTime

func UCConvertCFAbsoluteTimeToLongDateTime(iCFTime corefoundation.CFAbsoluteTime, oLongDate *LongDateTime) int32

UCConvertCFAbsoluteTimeToLongDateTime.

See: https://developer.apple.com/documentation/coreservices/1551577-ucconvertcfabsolutetimetolongdat

func UCConvertCFAbsoluteTimeToUTCDateTime

func UCConvertCFAbsoluteTimeToUTCDateTime(iCFTime corefoundation.CFAbsoluteTime, oUTCDate *UTCDateTime) int32

UCConvertCFAbsoluteTimeToUTCDateTime.

See: https://developer.apple.com/documentation/coreservices/1551529-ucconvertcfabsolutetimetoutcdate

func UCConvertLongDateTimeToCFAbsoluteTime

func UCConvertLongDateTimeToCFAbsoluteTime(iLongTime LongDateTime, oCFTime *corefoundation.CFAbsoluteTime) int32

UCConvertLongDateTimeToCFAbsoluteTime.

See: https://developer.apple.com/documentation/coreservices/1551619-ucconvertlongdatetimetocfabsolut

func UCConvertUTCDateTimeToCFAbsoluteTime

func UCConvertUTCDateTimeToCFAbsoluteTime(iUTCDate *UTCDateTime, oCFTime *corefoundation.CFAbsoluteTime) int32

UCConvertUTCDateTimeToCFAbsoluteTime.

See: https://developer.apple.com/documentation/coreservices/1551556-ucconvertutcdatetimetocfabsolute

func UCCreateCollator

func UCCreateCollator(locale LocaleRef, opVariant LocaleOperationVariant, options UCCollateOptions, collatorRef *CollatorRef) int32

UCCreateCollator creates an object encapsulating locale and collation information, for the purpose of performing Unicode string comparison.

See: https://developer.apple.com/documentation/coreservices/1390403-uccreatecollator

func UCDisposeCollator

func UCDisposeCollator(collatorRef *CollatorRef) int32

UCDisposeCollator disposes a collator object.

See: https://developer.apple.com/documentation/coreservices/1390435-ucdisposecollator

func UCGetCharProperty

func UCGetCharProperty(charPtr *uint16, textLength uint, propType UCCharPropertyType, propValue *UCCharPropertyValue) int32

UCGetCharProperty obtains the value associated with a property type forthe specified [UniChar] characters.

See: https://developer.apple.com/documentation/coreservices/1400224-ucgetcharproperty

func UCGetCollationKey

func UCGetCollationKey(collatorRef CollatorRef, textPtr *uint16, textLength unsafe.Pointer, maxKeySize unsafe.Pointer, actualKeySize unsafe.Pointer, collationKey *UCCollationValue) int32

UCGetCollationKey uses locale-specific collation information to generate a collation key for a Unicode string.

See: https://developer.apple.com/documentation/coreservices/1390468-ucgetcollationkey

func UCKeyTranslate

func UCKeyTranslate(keyLayoutPtr unsafe.Pointer, virtualKeyCode uint16, keyAction uint16, modifierKeyState uint32, keyboardType uint32, keyTranslateOptions uint32, deadKeyState *uint32, maxStringLength unsafe.Pointer, actualStringLength unsafe.Pointer, unicodeString *uint16) int32

UCKeyTranslate converts a combination of a virtual key code, a modifier key state, and a dead-key state into a string of one or more Unicode characters.

See: https://developer.apple.com/documentation/coreservices/1390584-uckeytranslate

func UCTypeSelectFindItem

func UCTypeSelectFindItem(ref UCTypeSelectRef, listSize uint32, listDataPtr unsafe.Pointer, refcon uintptr, userUPP IndexToUCStringUPP, closestItem *uint32) int32

UCTypeSelectFindItem.

See: https://developer.apple.com/documentation/coreservices/1390368-uctypeselectfinditem

func UCTypeSelectWalkList

func UCTypeSelectWalkList(ref UCTypeSelectRef, currSelect corefoundation.CFStringRef, direction UCTSWalkDirection, listSize uint32, listDataPtr unsafe.Pointer, refcon uintptr, userUPP IndexToUCStringUPP, closestItem *uint32) int32

UCTypeSelectWalkList.

See: https://developer.apple.com/documentation/coreservices/1390442-uctypeselectwalklist

func UTCreateStringForOSType deprecated

func UTCreateStringForOSType(inOSType uint32) corefoundation.CFStringRef

UTCreateStringForOSType encodes an [OSType] into a string suitable for use as a tag argument.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1442804-utcreatestringforostype

func UTGetOSTypeFromString deprecated

func UTGetOSTypeFromString(inString corefoundation.CFStringRef) uint32

UTGetOSTypeFromString decodes a tag string into an OSType.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1450472-utgetostypefromstring

func UTTypeConformsTo deprecated

func UTTypeConformsTo(inUTI corefoundation.CFStringRef, inConformsToUTI corefoundation.CFStringRef) bool

UTTypeConformsTo returns whether a uniform type identifier conforms to another uniform type identifier.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1444079-uttypeconformsto

func UTTypeCopyAllTagsWithClass deprecated

func UTTypeCopyAllTagsWithClass(inUTI corefoundation.CFStringRef, inTagClass corefoundation.CFStringRef) corefoundation.CFArrayRef

UTTypeCopyAllTagsWithClass.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1448473-uttypecopyalltagswithclass

func UTTypeCopyDeclaration deprecated

func UTTypeCopyDeclaration(inUTI corefoundation.CFStringRef) corefoundation.CFDictionaryRef

UTTypeCopyDeclaration returns a uniform type’s declaration.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1442505-uttypecopydeclaration

func UTTypeCopyDeclaringBundleURL deprecated

func UTTypeCopyDeclaringBundleURL(inUTI corefoundation.CFStringRef) corefoundation.CFURLRef

UTTypeCopyDeclaringBundleURL returns the location of a bundle containing the declaration for a type.

Deprecated: Deprecated since macOS 11.0.

See: https://developer.apple.com/documentation/coreservices/1447781-uttypecopydeclaringbundleurl

func UTTypeCopyDescription deprecated

func UTTypeCopyDescription(inUTI corefoundation.CFStringRef) corefoundation.CFStringRef

UTTypeCopyDescription returns the localized, user-readable type description string associated with a uniform type identifier.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1448514-uttypecopydescription

func UTTypeCopyPreferredTagWithClass deprecated

func UTTypeCopyPreferredTagWithClass(inUTI corefoundation.CFStringRef, inTagClass corefoundation.CFStringRef) corefoundation.CFStringRef

UTTypeCopyPreferredTagWithClass translates a uniform type identifier to a list of tags in a different type classification method.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1442744-uttypecopypreferredtagwithclass

func UTTypeCreateAllIdentifiersForTag deprecated

func UTTypeCreateAllIdentifiersForTag(inTagClass corefoundation.CFStringRef, inTag corefoundation.CFStringRef, inConformingToUTI corefoundation.CFStringRef) corefoundation.CFArrayRef

UTTypeCreateAllIdentifiersForTag creates an array of all uniform type identifiers for the type indicated by the specified tag.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1447261-uttypecreateallidentifiersfortag

func UTTypeCreatePreferredIdentifierForTag deprecated

func UTTypeCreatePreferredIdentifierForTag(inTagClass corefoundation.CFStringRef, inTag corefoundation.CFStringRef, inConformingToUTI corefoundation.CFStringRef) corefoundation.CFStringRef

UTTypeCreatePreferredIdentifierForTag creates a uniform type identifier for the type indicated by the specified tag.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1448939-uttypecreatepreferredidentifierf

func UTTypeEqual deprecated

func UTTypeEqual(inUTI1 corefoundation.CFStringRef, inUTI2 corefoundation.CFStringRef) bool

UTTypeEqual returns whether two uniform type identifiers are equal.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1447783-uttypeequal

func UTTypeIsDeclared deprecated

func UTTypeIsDeclared(inUTI corefoundation.CFStringRef) bool

UTTypeIsDeclared.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1450352-uttypeisdeclared

func UTTypeIsDynamic deprecated

func UTTypeIsDynamic(inUTI corefoundation.CFStringRef) bool

UTTypeIsDynamic.

Deprecated: Deprecated since macOS 12.0.

See: https://developer.apple.com/documentation/coreservices/1442980-uttypeisdynamic

func UncaptureComponent deprecated

func UncaptureComponent(aComponent Component) int16

UncaptureComponent allows your component to uncapture a previously captured component.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516646-uncapturecomponent

func UnflattenCollection deprecated

func UnflattenCollection(c Collection, flattenProc CollectionFlattenUPP, refCon uintptr) int16

UnflattenCollection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551348-unflattencollection

func UnflattenCollectionFromHdl deprecated

func UnflattenCollectionFromHdl(aCollection Collection, flattened kernel.Handle) int16

UnflattenCollectionFromHdl.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551400-unflattencollectionfromhdl

func UnregisterComponent deprecated

func UnregisterComponent(aComponent Component) int16

UnregisterComponent removes a component from the Component Manager’s registration list.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516645-unregistercomponent

func UnregisterIconRef deprecated

func UnregisterIconRef(creator uint32, iconType uint32) int16

UnregisterIconRef.

Deprecated: Deprecated since macOS 10.13.

See: https://developer.apple.com/documentation/coreservices/1444660-unregistericonref

func UnsignedFixedMulDiv deprecated

func UnsignedFixedMulDiv(value uint32, multiplier uint32, divisor uint32) uint32

UnsignedFixedMulDiv.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409276-unsignedfixedmuldiv

func UpTime deprecated

func UpTime() uint64

UpTime.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1501237-uptime

func UpdateIconRef deprecated

func UpdateIconRef(theIconRef IconRef) int16

UpdateIconRef.

Deprecated: Deprecated since macOS 10.15.

See: https://developer.apple.com/documentation/coreservices/1445921-updateiconref

func UpdateResFile deprecated

func UpdateResFile(refNum ResFileRefNum)

UpdateResFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529379-updateresfile

func UpdateSystemActivity deprecated

func UpdateSystemActivity(activity uint8) int16

UpdateSystemActivity.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1427505-updatesystemactivity

func UpgradeScriptInfoToTextEncoding

func UpgradeScriptInfoToTextEncoding(iTextScriptID int16, iTextLanguageID int16, iRegionID int16, iTextFontname unsafe.Pointer, oEncoding *kernel.TextEncoding) int32

UpgradeScriptInfoToTextEncoding converts any combination of a Mac OS script code, a languagecode, a region code, and a font name to a text encoding.

See: https://developer.apple.com/documentation/coreservices/1399625-upgradescriptinfototextencoding

func UseResFile deprecated

func UseResFile(refNum ResFileRefNum)

UseResFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529268-useresfile

func VAEBuildAppleEvent

func VAEBuildAppleEvent(theClass AEEventClass, theID AEEventID, addressType DescType, addressData unsafe.Pointer, addressLength int, returnID int16, transactionID int32, resultEvt *AEDesc, err unsafe.Pointer, paramsFmt string, args unsafe.Pointer) int32

VAEBuildAppleEvent allows you to encapsulate calls to AEBuildAppleEvent in a wrapper routine.

See: https://developer.apple.com/documentation/coreservices/1441729-vaebuildappleevent

func VAEBuildDesc

func VAEBuildDesc(dst unsafe.Pointer, err unsafe.Pointer, src string, args unsafe.Pointer) int32

VAEBuildDesc allows you to encapsulate calls to AEBuildDesc in your own wrapper routines.

See: https://developer.apple.com/documentation/coreservices/1446775-vaebuilddesc

func VAEBuildParameters

func VAEBuildParameters(event *AEDesc, err unsafe.Pointer, format string, args unsafe.Pointer) int32

VAEBuildParameters allows you to encapsulate calls to AEBuildParameters in your own `stdarg`-style wrapper routines, using techniques similar to those allowed by vsprintf.

See: https://developer.apple.com/documentation/coreservices/1448040-vaebuildparameters

func WSGetCFTypeIDFromWSTypeID deprecated

func WSGetCFTypeIDFromWSTypeID(typeID int32) uint

WSGetCFTypeIDFromWSTypeID gets the CFType associated with a given WSType

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1508451-wsgetcftypeidfromwstypeid

func WSGetWSTypeIDFromCFType deprecated

func WSGetWSTypeIDFromCFType(ref corefoundation.CFTypeRef) int32

WSGetWSTypeIDFromCFType returns the WSTypeID associated with a given [CFTypeRef].

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1508442-wsgetwstypeidfromcftype

func WSMethodInvocationAddDeserializationOverride deprecated

func WSMethodInvocationAddDeserializationOverride(invocation WSMethodInvocationRef, typeNamespace corefoundation.CFStringRef, typeName corefoundation.CFStringRef, deserializationProc unsafe.Pointer, context *WSClientContext)

WSMethodInvocationAddDeserializationOverride specifies a callback to be made when parsing the XML in a method response.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576436-wsmethodinvocationadddeserializa

func WSMethodInvocationAddSerializationOverride deprecated

func WSMethodInvocationAddSerializationOverride(invocation WSMethodInvocationRef, objType uint, serializationProc unsafe.Pointer, context *WSClientContext)

WSMethodInvocationAddSerializationOverride specifies a callback to be made when creating the XML for an method invocation.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576435-wsmethodinvocationaddserializati

func WSMethodInvocationCopyParameters deprecated

func WSMethodInvocationCopyParameters(invocation WSMethodInvocationRef, parameterOrder *corefoundation.CFArrayRef) corefoundation.CFDictionaryRef

WSMethodInvocationCopyParameters creates a copy of the parameters dictionary and sets the order in an array.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576399-wsmethodinvocationcopyparameters

func WSMethodInvocationCopyProperty deprecated

func WSMethodInvocationCopyProperty(invocation WSMethodInvocationRef, propertyName corefoundation.CFStringRef) corefoundation.CFTypeRef

WSMethodInvocationCopyProperty creates a copy of a named property of the invocation reference.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576432-wsmethodinvocationcopyproperty

func WSMethodInvocationCopySerialization deprecated

func WSMethodInvocationCopySerialization(invocation WSMethodInvocationRef) corefoundation.CFDataRef

WSMethodInvocationCopySerialization creates an XML serialization of a method invocation.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576441-wsmethodinvocationcopyserializat

func WSMethodInvocationGetTypeID deprecated

func WSMethodInvocationGetTypeID() uint

WSMethodInvocationGetTypeID returns the type ID of the current method invocation.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576434-wsmethodinvocationgettypeid

func WSMethodInvocationInvoke deprecated

func WSMethodInvocationInvoke(invocation WSMethodInvocationRef) corefoundation.CFDictionaryRef

WSMethodInvocationInvoke invokes an web services operation synchronously.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576428-wsmethodinvocationinvoke

func WSMethodInvocationScheduleWithRunLoop deprecated

func WSMethodInvocationScheduleWithRunLoop(invocation WSMethodInvocationRef, runLoop corefoundation.CFRunLoopRef, runLoopMode corefoundation.CFStringRef)

WSMethodInvocationScheduleWithRunLoop schedule a method invocation for asynchronous execution on a run loop.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576408-wsmethodinvocationschedulewithru

func WSMethodInvocationSetCallBack deprecated

func WSMethodInvocationSetCallBack(invocation WSMethodInvocationRef, clientCB unsafe.Pointer, context *WSClientContext)

WSMethodInvocationSetCallBack set a callback to handle the response to an asynchronous method invocation.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576439-wsmethodinvocationsetcallback

func WSMethodInvocationSetParameters deprecated

func WSMethodInvocationSetParameters(invocation WSMethodInvocationRef, parameters corefoundation.CFDictionaryRef, parameterOrder corefoundation.CFArrayRef)

WSMethodInvocationSetParameters set the parameter names, types, and order for a method invocation.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576420-wsmethodinvocationsetparameters

func WSMethodInvocationSetProperty deprecated

func WSMethodInvocationSetProperty(invocation WSMethodInvocationRef, propertyName corefoundation.CFStringRef, propertyValue corefoundation.CFTypeRef)

WSMethodInvocationSetProperty sets a named property of the method invocation.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576407-wsmethodinvocationsetproperty

func WSMethodInvocationUnscheduleFromRunLoop deprecated

func WSMethodInvocationUnscheduleFromRunLoop(invocation WSMethodInvocationRef, runLoop corefoundation.CFRunLoopRef, runLoopMode corefoundation.CFStringRef)

WSMethodInvocationUnscheduleFromRunLoop unschedules a method invocation from a run loop.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576409-wsmethodinvocationunschedulefrom

func WSMethodResultIsFault deprecated

func WSMethodResultIsFault(methodResult corefoundation.CFDictionaryRef) bool

WSMethodResultIsFault tests a method result dictionary for a fault condition.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576401-wsmethodresultisfault

func WSProtocolHandlerCopyFaultDocument deprecated

func WSProtocolHandlerCopyFaultDocument(ref WSProtocolHandlerRef, methodContext corefoundation.CFDictionaryRef, faultDict corefoundation.CFDictionaryRef) corefoundation.CFDataRef

WSProtocolHandlerCopyFaultDocument creates a Fault XML response for a given WSProtocolHandler and fault details dictionary.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1423449-wsprotocolhandlercopyfaultdocume

func WSProtocolHandlerCopyProperty deprecated

func WSProtocolHandlerCopyProperty(ref WSProtocolHandlerRef, propertyName corefoundation.CFStringRef) corefoundation.CFTypeRef

WSProtocolHandlerCopyProperty returns a copy of a property from a protocol handler reference.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1423436-wsprotocolhandlercopyproperty

func WSProtocolHandlerCopyReplyDictionary deprecated

func WSProtocolHandlerCopyReplyDictionary(ref WSProtocolHandlerRef, methodName corefoundation.CFStringRef, data corefoundation.CFDataRef) corefoundation.CFDictionaryRef

WSProtocolHandlerCopyReplyDictionary parses an incoming XML document as if it were the reply of a method.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1423441-wsprotocolhandlercopyreplydictio

func WSProtocolHandlerCopyReplyDocument deprecated

func WSProtocolHandlerCopyReplyDocument(ref WSProtocolHandlerRef, methodContext corefoundation.CFDictionaryRef, resultValue corefoundation.CFTypeRef) corefoundation.CFDataRef

WSProtocolHandlerCopyReplyDocument creates a Reply XML document for a given WS ProtocolHandler and context dictionary.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1423440-wsprotocolhandlercopyreplydocume

func WSProtocolHandlerCopyRequestDictionary deprecated

func WSProtocolHandlerCopyRequestDictionary(ref WSProtocolHandlerRef, data corefoundation.CFDataRef) corefoundation.CFDictionaryRef

WSProtocolHandlerCopyRequestDictionary parses an incoming XML document for the method name and parameters.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1423451-wsprotocolhandlercopyrequestdict

func WSProtocolHandlerCopyRequestDocument deprecated

func WSProtocolHandlerCopyRequestDocument(ref WSProtocolHandlerRef, methodName corefoundation.CFStringRef, methodParams corefoundation.CFDictionaryRef, methodParamOrder corefoundation.CFArrayRef, methodExtras corefoundation.CFDictionaryRef) corefoundation.CFDataRef

WSProtocolHandlerCopyRequestDocument creates an XML request for a given [WSProtocolHandler] and parameter list.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1423437-wsprotocolhandlercopyrequestdocu

func WSProtocolHandlerGetTypeID deprecated

func WSProtocolHandlerGetTypeID() uint

WSProtocolHandlerGetTypeID returns a [CFTypeID] for the current WSProtocolHandlerRef.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1423455-wsprotocolhandlergettypeid

func WSProtocolHandlerSetDeserializationOverride deprecated

func WSProtocolHandlerSetDeserializationOverride(protocol_ WSProtocolHandlerRef, typeNamespace corefoundation.CFStringRef, typeName corefoundation.CFStringRef, deserializationProc unsafe.Pointer, context *WSClientContext)

WSProtocolHandlerSetDeserializationOverride specifies a callback to be made when parsing an XML method response.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1423444-wsprotocolhandlersetdeserializat

func WSProtocolHandlerSetProperty deprecated

func WSProtocolHandlerSetProperty(ref WSProtocolHandlerRef, propertyName corefoundation.CFStringRef, propertyValue corefoundation.CFTypeRef)

WSProtocolHandlerSetProperty sets a property in a specified protocol handler.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1423442-wsprotocolhandlersetproperty

func WSProtocolHandlerSetSerializationOverride deprecated

func WSProtocolHandlerSetSerializationOverride(protocol_ WSProtocolHandlerRef, objType uint, serializationProc unsafe.Pointer, context *WSClientContext)

WSProtocolHandlerSetSerializationOverride specifies a callback which will be called to produce the XML that represents the serialization of a given type ref.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1423438-wsprotocolhandlersetserializatio

func WideAdd deprecated

func WideAdd(target unsafe.Pointer, source unsafe.Pointer) unsafe.Pointer

WideAdd.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409245-wideadd

func WideBitShift deprecated

func WideBitShift(target unsafe.Pointer, shift int32) unsafe.Pointer

WideBitShift.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409247-widebitshift

func WideCompare deprecated

func WideCompare(target unsafe.Pointer, source unsafe.Pointer) int16

WideCompare.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409264-widecompare

func WideDivide deprecated

func WideDivide(dividend unsafe.Pointer, divisor int32, remainder *int32) int32

WideDivide.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409233-widedivide

func WideMultiply deprecated

func WideMultiply(multiplicand int32, multiplier int32, target unsafe.Pointer) unsafe.Pointer

WideMultiply.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409273-widemultiply

func WideNegate deprecated

func WideNegate(target unsafe.Pointer) unsafe.Pointer

WideNegate.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409221-widenegate

func WideShift deprecated

func WideShift(target unsafe.Pointer, shift int32) unsafe.Pointer

WideShift.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409239-wideshift

func WideSquareRoot deprecated

func WideSquareRoot(source unsafe.Pointer) uint32

WideSquareRoot.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409227-widesquareroot

func WideSubtract deprecated

func WideSubtract(target unsafe.Pointer, source unsafe.Pointer) unsafe.Pointer

WideSubtract.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409210-widesubtract

func WideWideDivide deprecated

func WideWideDivide(dividend unsafe.Pointer, divisor int32, remainder *int32) unsafe.Pointer

WideWideDivide.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409265-widewidedivide

func WritePartialResource deprecated

func WritePartialResource(theResource kernel.Handle, offset int, buffer unsafe.Pointer, count int)

WritePartialResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529305-writepartialresource

func WriteResource deprecated

func WriteResource(theResource kernel.Handle)

WriteResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529291-writeresource

func X2Fix deprecated

func X2Fix(x float64) int32

X2Fix.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409237-x2fix

func X2Frac deprecated

func X2Frac(x float64) int32

X2Frac.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1409261-x2frac

func X80tod deprecated

func X80tod(x80 unsafe.Pointer) float64

X80tod.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1492658-x80tod

func YieldToAnyThread deprecated

func YieldToAnyThread() int16

YieldToAnyThread.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574238-yieldtoanythread

func YieldToThread deprecated

func YieldToThread(suggestedThread ThreadID) int16

YieldToThread.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574240-yieldtothread

Types

type AEAddressDesc

type AEAddressDesc = AEDesc

AEAddressDesc is a descriptor that contains the address of an application, used to describe the target application for an Apple event.

See: https://developer.apple.com/documentation/coreservices/aeaddressdesc

type AEArrayData

type AEArrayData [8]uint16

AEArrayData is stores array information to be put into a descriptor listwith the AEPutArray functionor extracted from a descriptor list with the AEGetArray function.

See: https://developer.apple.com/documentation/coreservices/1443170-aearraydata AEArrayData is opaque storage with the size and alignment C gives AEArrayData: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type AEArrayDataPointer

type AEArrayDataPointer = unsafe.Pointer

AEArrayDataPointer is a pointer to a union of type AEArrayData.

See: https://developer.apple.com/documentation/coreservices/aearraydatapointer

type AEArrayType

type AEArrayType = int8

AEArrayType is stores a value that specifies an array type.

See: https://developer.apple.com/documentation/coreservices/aearraytype

type AEBuildError

type AEBuildError struct {
	// contains filtered or unexported fields
}

AEBuildError - Defines a structure for storing additional error codeinformation for “AEBuild” routines.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/aebuilderror

func (*AEBuildError) FError

func (s *AEBuildError) FError() AEBuildErrorCode

FError returns the FError field from the record's packed storage.

func (*AEBuildError) FErrorPos

func (s *AEBuildError) FErrorPos() uint32

FErrorPos returns the FErrorPos field from the record's packed storage.

func (*AEBuildError) SetFError added in v0.6.17

func (s *AEBuildError) SetFError(v AEBuildErrorCode)

SetFError updates the FError field in the record's packed storage.

func (*AEBuildError) SetFErrorPos added in v0.6.17

func (s *AEBuildError) SetFErrorPos(v uint32)

SetFErrorPos updates the FErrorPos field in the record's packed storage.

type AEBuildErrorCode

type AEBuildErrorCode = uint32

AEBuildErrorCode is represents syntax errors found by an Apple Event build routine.

See: https://developer.apple.com/documentation/coreservices/aebuilderrorcode

type AECoerceDescProcPtr

type AECoerceDescProcPtr = func(fromDesc unsafe.Pointer, toType uint32, handlerRefcon uintptr, toDesc unsafe.Pointer) int16

AECoerceDescProcPtr is defines a pointer to a function that coerces data stored in a descriptor. Your descriptor coercion callback function coerces the data from the passed descriptor to the specified type, returning the coerced data in a second descriptor.

See: https://developer.apple.com/documentation/coreservices/aecoercedescprocptr

type AECoerceDescUPP

type AECoerceDescUPP = unsafe.Pointer

AECoerceDescUPP is defines a data type for the universal procedure pointer for the AECoerceDescProcPtr callback function pointer.

See: https://developer.apple.com/documentation/coreservices/aecoercedescupp

func NewAECoerceDescUPP

func NewAECoerceDescUPP(userRoutine AECoerceDescProcPtr) AECoerceDescUPP

NewAECoerceDescUPP creates a new universal procedure pointer to a function that coerces data stored in a descriptor.

See: https://developer.apple.com/documentation/coreservices/1445885-newaecoercedescupp

type AECoercePtrProcPtr

type AECoercePtrProcPtr = func(typeCode uint32, dataPtr unsafe.Pointer, dataSize int, toType uint32, handlerRefcon uintptr, result unsafe.Pointer) int16

AECoercePtrProcPtr is defines a pointer to a function that coerces data stored in a buffer. Your pointer coercion callback routine coerces the data from the passed buffer to the specified type, returning the coerced data in a descriptor.

See: https://developer.apple.com/documentation/coreservices/aecoerceptrprocptr

type AECoercePtrUPP

type AECoercePtrUPP = unsafe.Pointer

AECoercePtrUPP is defines a data type for the universal procedure pointer for the AECoercePtrProcPtr callback function pointer.

See: https://developer.apple.com/documentation/coreservices/aecoerceptrupp

func NewAECoercePtrUPP

func NewAECoercePtrUPP(userRoutine AECoercePtrProcPtr) AECoercePtrUPP

NewAECoercePtrUPP creates a new universal procedure pointer to a function that coerces data stored in a buffer.

See: https://developer.apple.com/documentation/coreservices/1449962-newaecoerceptrupp

type AECoercionHandlerUPP

type AECoercionHandlerUPP = unsafe.Pointer

AECoercionHandlerUPP is defines a data type for the universal procedure pointer for the AECoercionHandlerUPP callback function pointer.

See: https://developer.apple.com/documentation/coreservices/aecoercionhandlerupp

type AEDataStorage

type AEDataStorage = unsafe.Pointer

AEDataStorage is a pointer to an opaque data type that provides storage for an AEDesc descriptor.

See: https://developer.apple.com/documentation/coreservices/aedatastorage

type AEDataStorageType

type AEDataStorageType = unsafe.Pointer

AEDataStorageType is an opaque data type used to store data in Apple event descriptors.

See: https://developer.apple.com/documentation/coreservices/aedatastoragetype

type AEDesc

type AEDesc struct {
	// contains filtered or unexported fields
}

AEDesc - Stores data and an accompanying descriptor type to formthe basic building block of all Apple Events.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/aedesc

func (*AEDesc) DataHandle

func (s *AEDesc) DataHandle() uintptr

DataHandle returns the DataHandle field from the record's packed storage.

func (*AEDesc) DescriptorType

func (s *AEDesc) DescriptorType() DescType

DescriptorType returns the DescriptorType field from the record's packed storage.

func (*AEDesc) SetDataHandle added in v0.6.17

func (s *AEDesc) SetDataHandle(v uintptr)

SetDataHandle updates the DataHandle field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*AEDesc) SetDescriptorType added in v0.6.17

func (s *AEDesc) SetDescriptorType(v DescType)

SetDescriptorType updates the DescriptorType field in the record's packed storage.

type AEDescList

type AEDescList = AEDesc

AEDescList is a descriptor whose data consists of a list of one or more descriptors.

See: https://developer.apple.com/documentation/coreservices/aedesclist

type AEDisposeExternalProcPtr

type AEDisposeExternalProcPtr = func(dataPtr unsafe.Pointer, dataLength int, refcon uintptr)

AEDisposeExternalProcPtr is defines a pointer to a function the Apple Event Manager calls to dispose of a descriptor created by the AECreateDescFromExternalPtr function. Your callback function disposes of the buffer you originally passed to that function.

See: https://developer.apple.com/documentation/coreservices/aedisposeexternalprocptr

type AEDisposeExternalUPP

type AEDisposeExternalUPP = unsafe.Pointer

AEDisposeExternalUPP is defines a universal procedure pointer to a function the Apple Event Manager calls to dispose of a descriptor created by the AECreateDescFromExternalPtr function.

See: https://developer.apple.com/documentation/coreservices/aedisposeexternalupp

func NewAEDisposeExternalUPP

func NewAEDisposeExternalUPP(userRoutine AEDisposeExternalProcPtr) AEDisposeExternalUPP

NewAEDisposeExternalUPP creates a new universal procedure pointer to a function that disposes of data stored in a buffer.

See: https://developer.apple.com/documentation/coreservices/1447774-newaedisposeexternalupp

type AEEventClass

type AEEventClass = uint32

AEEventClass is specifies the event class of an Apple event.

See: https://developer.apple.com/documentation/coreservices/aeeventclass

type AEEventHandlerProcPtr

type AEEventHandlerProcPtr = func(theAppleEvent unsafe.Pointer, reply unsafe.Pointer, handlerRefcon uintptr) int16

AEEventHandlerProcPtr is defines a pointer to a function that handles one or more Apple events. Your Apple event handler function performs any action requested by the Apple event, adds parameters to the reply Apple event if appropriate (possibly including error information), and returns a result code.

See: https://developer.apple.com/documentation/coreservices/aeeventhandlerprocptr

type AEEventHandlerUPP

type AEEventHandlerUPP = unsafe.Pointer

AEEventHandlerUPP is defines a data type for the universal procedure pointer for the AEEventHandlerUPP callback function pointer.

See: https://developer.apple.com/documentation/coreservices/aeeventhandlerupp

func NewAEEventHandlerUPP

func NewAEEventHandlerUPP(userRoutine AEEventHandlerProcPtr) AEEventHandlerUPP

NewAEEventHandlerUPP creates a new universal procedure pointer to an event handler function.

See: https://developer.apple.com/documentation/coreservices/1446862-newaeeventhandlerupp

type AEEventID

type AEEventID = uint32

AEEventID is specifies the event ID of an Apple event.

See: https://developer.apple.com/documentation/coreservices/aeeventid

type AEEventSource

type AEEventSource = int8

AEEventSource is a data type for values that specify how an Apple event was delivered.

See: https://developer.apple.com/documentation/coreservices/aeeventsource

type AEKeyDesc

type AEKeyDesc struct {
	// contains filtered or unexported fields
}

AEKeyDesc - Associates a keyword with a descriptor to form a keyword-specifieddescriptor.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/aekeydesc

func (*AEKeyDesc) DescContent

func (s *AEKeyDesc) DescContent() AEDesc

DescContent returns the DescContent field from the record's packed storage.

func (*AEKeyDesc) DescKey

func (s *AEKeyDesc) DescKey() AEKeyword

DescKey returns the DescKey field from the record's packed storage.

func (*AEKeyDesc) SetDescContent added in v0.6.17

func (s *AEKeyDesc) SetDescContent(v AEDesc)

SetDescContent updates the DescContent field in the record's packed storage.

func (*AEKeyDesc) SetDescKey added in v0.6.17

func (s *AEKeyDesc) SetDescKey(v AEKeyword)

SetDescKey updates the DescKey field in the record's packed storage.

type AEKeyword

type AEKeyword = uint32

AEKeyword is a four-character code that uniquely identifies a descriptor in an Apple event record or an Apple event.

See: https://developer.apple.com/documentation/coreservices/aekeyword

type AERecord

type AERecord [6]uint16

AERecord is a descriptor whose data is a list of keyword-specified descriptors.

See: https://developer.apple.com/documentation/coreservices/aerecord AERecord is opaque storage with the size and alignment C gives AERecord: 12 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 12 into.

type AERemoteProcessResolverCallback

type AERemoteProcessResolverCallback = func(ref AERemoteProcessResolverRef, info unsafe.Pointer)

AERemoteProcessResolverCallback is defines a pointer to a function the Apple Event Manager calls when the asynchronous execution of a remote process resolver completes, either due to success or failure, after a call to the AERemoteProcessResolverScheduleWithRunLoop function. Your callback function can use the reference passed to it to get the remote process information.

See: https://developer.apple.com/documentation/coreservices/aeremoteprocessresolvercallback

type AERemoteProcessResolverContext

type AERemoteProcessResolverContext struct {
	// contains filtered or unexported fields
}

AERemoteProcessResolverContext - Supplied as a parameter when performing asynchronous resolutionof remote processes.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/aeremoteprocessresolvercontext

func (*AERemoteProcessResolverContext) CopyDescription

func (s *AERemoteProcessResolverContext) CopyDescription() uintptr

CopyDescription returns a raw C code address from the record's packed storage. The address is not callable from Go. To call C through it, use purego to bind a Go function value to the address.

func (*AERemoteProcessResolverContext) Info

Info returns the Info field from the record's packed storage.

func (*AERemoteProcessResolverContext) Release

Release returns a raw C code address from the record's packed storage. The address is not callable from Go. To call C through it, use purego to bind a Go function value to the address.

func (*AERemoteProcessResolverContext) Retain

Retain returns a raw C code address from the record's packed storage. The address is not callable from Go. To call C through it, use purego to bind a Go function value to the address.

func (*AERemoteProcessResolverContext) SetCopyDescription added in v0.6.17

func (s *AERemoteProcessResolverContext) SetCopyDescription(v uintptr)

SetCopyDescription stores a raw C code address in the record's packed storage. Use purego.NewCallback to obtain the address for a Go callback. The callback and its address must outlive every use C can make through this record.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*AERemoteProcessResolverContext) SetInfo added in v0.6.17

SetInfo updates the Info field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*AERemoteProcessResolverContext) SetRelease added in v0.6.17

func (s *AERemoteProcessResolverContext) SetRelease(v uintptr)

SetRelease stores a raw C code address in the record's packed storage. Use purego.NewCallback to obtain the address for a Go callback. The callback and its address must outlive every use C can make through this record.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*AERemoteProcessResolverContext) SetRetain added in v0.6.17

func (s *AERemoteProcessResolverContext) SetRetain(v uintptr)

SetRetain stores a raw C code address in the record's packed storage. Use purego.NewCallback to obtain the address for a Go callback. The callback and its address must outlive every use C can make through this record.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*AERemoteProcessResolverContext) SetVersion added in v0.6.17

func (s *AERemoteProcessResolverContext) SetVersion(v int)

SetVersion updates the Version field in the record's packed storage.

func (*AERemoteProcessResolverContext) Version

func (s *AERemoteProcessResolverContext) Version() int

Version returns the Version field from the record's packed storage.

type AERemoteProcessResolverRef

type AERemoteProcessResolverRef uintptr

AERemoteProcessResolverRef is an opaque reference to an object that encapsulates the mechanism for obtaining a list of processes running on a remote machine.

See: https://developer.apple.com/documentation/coreservices/aeremoteprocessresolverref

func AECreateRemoteProcessResolver

func AECreateRemoteProcessResolver(allocator corefoundation.CFAllocatorRef, url corefoundation.CFURLRef) AERemoteProcessResolverRef

AECreateRemoteProcessResolver creates an object for resolving a list of remote processes.

See: https://developer.apple.com/documentation/coreservices/1445692-aecreateremoteprocessresolver

type AEReturnID

type AEReturnID = int16

AEReturnID is specifies a return ID for a created Apple event.

See: https://developer.apple.com/documentation/coreservices/aereturnid

type AESendMode

type AESendMode = int32

AESendMode is specify send preferences to the [AESend] function.

See: https://developer.apple.com/documentation/coreservices/aesendmode

type AESendPriority

type AESendPriority = int16

AESendPriority is specifies the processing priority for a sent Apple event.

See: https://developer.apple.com/documentation/coreservices/aesendpriority

type AEStreamRef

type AEStreamRef uintptr

AEStreamRef is an opaque data structure for storing stream-based descriptor data.

See: https://developer.apple.com/documentation/coreservices/aestreamref

func AEStreamCreateEvent

func AEStreamCreateEvent(clazz AEEventClass, id AEEventID, targetType DescType, targetData unsafe.Pointer, targetLength int, returnID int16, transactionID int32) AEStreamRef

AEStreamCreateEvent creates a new Apple event and opens a stream for writing data to it.

See: https://developer.apple.com/documentation/coreservices/1446562-aestreamcreateevent

func AEStreamOpen

func AEStreamOpen() AEStreamRef

AEStreamOpen opens a new AEStreamRef for use in building a descriptor.

See: https://developer.apple.com/documentation/coreservices/1447732-aestreamopen

func AEStreamOpenEvent

func AEStreamOpenEvent(event *AEDesc) AEStreamRef

AEStreamOpenEvent opens a stream for an existing Apple event.

See: https://developer.apple.com/documentation/coreservices/1445366-aestreamopenevent

type AETransactionID

type AETransactionID = int32

AETransactionID is specifies a transaction ID.

See: https://developer.apple.com/documentation/coreservices/aetransactionid

type AFPAlternateAddress

type AFPAlternateAddress [3]byte

See: https://developer.apple.com/documentation/coreservices/afpalternateaddress AFPAlternateAddress is opaque storage with the size and alignment C gives AFPAlternateAddress: 3 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 3 into.

type AFPTagData

type AFPTagData [3]byte

See: https://developer.apple.com/documentation/coreservices/afptagdata AFPTagData is opaque storage with the size and alignment C gives AFPTagData: 3 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 3 into.

type AFPVolMountInfo

type AFPVolMountInfo [84]uint16

See: https://developer.apple.com/documentation/coreservices/afpvolmountinfo AFPVolMountInfo is opaque storage with the size and alignment C gives AFPVolMountInfo: 168 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 168 into.

type AFPXVolMountInfo

type AFPXVolMountInfo [103]uint16

See: https://developer.apple.com/documentation/coreservices/afpxvolmountinfo AFPXVolMountInfo is opaque storage with the size and alignment C gives AFPXVolMountInfo: 206 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 206 into.

type AIFFLoop

type AIFFLoop [3]uint16

See: https://developer.apple.com/documentation/coreservices/aiffloop AIFFLoop is opaque storage with the size and alignment C gives AIFFLoop: 6 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 6 into.

type AbortErr

type AbortErr int32
const (
	AbortErrValue  AbortErr = -27
	BdNamErr       AbortErr = -37
	DceExtErr      AbortErr = -30
	DirFulErr      AbortErr = -33
	DskFulErr      AbortErr = -34
	EofErr         AbortErr = -39
	FLckdErr       AbortErr = -45
	FnOpnErr       AbortErr = -38
	FnfErr         AbortErr = -43
	GcrOnMFMErr    AbortErr = -400
	IIOAbortErr    AbortErr = -27
	IoErr          AbortErr = -36
	MFulErr        AbortErr = -41
	NotOpenErr     AbortErr = -28
	NsvErr         AbortErr = -35
	PosErr         AbortErr = -40
	SlotNumErr     AbortErr = -360
	TmfoErr        AbortErr = -42
	UnitTblFullErr AbortErr = -29
	WPrErr         AbortErr = -44
)

func (AbortErr) String

func (e AbortErr) String() string

type AeBuildSyntax

type AeBuildSyntax uint32
const (
	// AeBuildSyntaxBadData: Bad data was found inside a variable argument list.
	AeBuildSyntaxBadData AeBuildSyntax = 12
	// AeBuildSyntaxBadDesc: An illegal descriptor was specified.
	AeBuildSyntaxBadDesc AeBuildSyntax = 11
	// AeBuildSyntaxBadEOF: An unexpected end of format string was encountered.
	AeBuildSyntaxBadEOF AeBuildSyntax = 2
	// AeBuildSyntaxBadHex: A hex string contained characters other than hexadecimal digits.
	AeBuildSyntaxBadHex AeBuildSyntax = 6
	// AeBuildSyntaxBadNegative: A minus sign “-” was not followed by digits.
	AeBuildSyntaxBadNegative AeBuildSyntax = 4
	// AeBuildSyntaxBadToken: An illegal character was specified.
	AeBuildSyntaxBadToken AeBuildSyntax = 1
	// AeBuildSyntaxCoercedList: Cannot coerce a list.
	AeBuildSyntaxCoercedList AeBuildSyntax = 18
	// AeBuildSyntaxMissingQuote: A string was not terminated by a closing quotation mark.
	AeBuildSyntaxMissingQuote AeBuildSyntax = 5
	// AeBuildSyntaxNoCloseBrace: A comma or closing brace “}” was expected.
	AeBuildSyntaxNoCloseBrace AeBuildSyntax = 15
	// AeBuildSyntaxNoCloseBracket: A comma or closing bracket “]” was expected.
	AeBuildSyntaxNoCloseBracket AeBuildSyntax = 14
	// AeBuildSyntaxNoCloseHex: A hex string was missing a “$” or “»” character.
	AeBuildSyntaxNoCloseHex AeBuildSyntax = 8
	// AeBuildSyntaxNoCloseParen: A data value was missing a closing parenthesis.
	AeBuildSyntaxNoCloseParen AeBuildSyntax = 13
	// AeBuildSyntaxNoCloseString: A string was missing a closing quote.
	AeBuildSyntaxNoCloseString AeBuildSyntax = 10
	// AeBuildSyntaxNoColon: In a descriptor, one of the keywords was not followed by a colon.
	AeBuildSyntaxNoColon AeBuildSyntax = 17
	// AeBuildSyntaxNoEOF: There were unexpected characters beyond the end of the format string.
	AeBuildSyntaxNoEOF AeBuildSyntax = 3
	// AeBuildSyntaxNoErr: No error.
	AeBuildSyntaxNoErr AeBuildSyntax = 0
	// AeBuildSyntaxNoKey: A keyword was missing from a descriptor.
	AeBuildSyntaxNoKey AeBuildSyntax = 16
	// AeBuildSyntaxOddHex: A hex string contained an odd number of digits.
	AeBuildSyntaxOddHex AeBuildSyntax = 7
	// AeBuildSyntaxUncoercedDoubleAt: You must coerce a “@@” substitution.
	AeBuildSyntaxUncoercedDoubleAt AeBuildSyntax = 19
	// AeBuildSyntaxUncoercedHex: A hex string must be coerced to a type.
	AeBuildSyntaxUncoercedHex AeBuildSyntax = 9
)

func (AeBuildSyntax) String

func (e AeBuildSyntax) String() string

type AfpAccessDenied

type AfpAccessDenied int32
const (
	AfpAccessDeniedValue  AfpAccessDenied = -5000
	AfpAlreadyLoggedInErr AfpAccessDenied = -5047
	AfpAuthContinue       AfpAccessDenied = -5001
	AfpBadIDErr           AfpAccessDenied = -5039
	AfpBadUAM             AfpAccessDenied = -5002
	AfpBadVersNum         AfpAccessDenied = -5003
	AfpBitmapErr          AfpAccessDenied = -5004
	AfpCallNotAllowed     AfpAccessDenied = -5048
	AfpCallNotSupported   AfpAccessDenied = -5024
	AfpCantMove           AfpAccessDenied = -5005
	AfpCantRename         AfpAccessDenied = -5028
	AfpCatalogChanged     AfpAccessDenied = -5037
	AfpContainsSharedErr  AfpAccessDenied = -5033
	AfpDenyConflict       AfpAccessDenied = -5006
	AfpDiffVolErr         AfpAccessDenied = -5036
	AfpDirNotEmpty        AfpAccessDenied = -5007
	AfpDirNotFound        AfpAccessDenied = -5029
	AfpDiskFull           AfpAccessDenied = -5008
	AfpEofError           AfpAccessDenied = -5009
	AfpFileBusy           AfpAccessDenied = -5010
	AfpFlatVol            AfpAccessDenied = -5011
	AfpIDExists           AfpAccessDenied = -5035
	AfpIDNotFound         AfpAccessDenied = -5034
	AfpIconTypeError      AfpAccessDenied = -5030
	AfpInsideSharedErr    AfpAccessDenied = -5043
	AfpInsideTrashErr     AfpAccessDenied = -5044
	AfpItemNotFound       AfpAccessDenied = -5012
	AfpLockErr            AfpAccessDenied = -5013
	AfpMiscErr            AfpAccessDenied = -5014
	AfpNoMoreLocks        AfpAccessDenied = -5015
	AfpNoServer           AfpAccessDenied = -5016
	AfpObjectExists       AfpAccessDenied = -5017
	AfpObjectLocked       AfpAccessDenied = -5032
	AfpObjectNotFound     AfpAccessDenied = -5018
	AfpObjectTypeErr      AfpAccessDenied = -5025
	AfpParmErr            AfpAccessDenied = -5019
	AfpPwdExpiredErr      AfpAccessDenied = -5042
	AfpPwdNeedsChangeErr  AfpAccessDenied = -5045
	AfpPwdPolicyErr       AfpAccessDenied = -5046
	AfpPwdSameErr         AfpAccessDenied = -5040
	AfpPwdTooShortErr     AfpAccessDenied = -5041
	AfpRangeNotLocked     AfpAccessDenied = -5020
	AfpRangeOverlap       AfpAccessDenied = -5021
	AfpSameObjectErr      AfpAccessDenied = -5038
	AfpServerGoingDown    AfpAccessDenied = -5027
	AfpSessClosed         AfpAccessDenied = -5022
	AfpTooManyFilesOpen   AfpAccessDenied = -5026
	AfpUserNotAuth        AfpAccessDenied = -5023
	AfpVolLocked          AfpAccessDenied = -5031
)

func (AfpAccessDenied) String added in v0.6.17

func (e AfpAccessDenied) String() string

type AfpBadDirIDType

type AfpBadDirIDType int32
const (
	AfpAlreadyMounted     AfpBadDirIDType = -5062
	AfpBadDirIDTypeValue  AfpBadDirIDType = -5060
	AfpCantMountMoreSrvre AfpBadDirIDType = -5061
	AfpSameNodeErr        AfpBadDirIDType = -5063
)

func (AfpBadDirIDType) String added in v0.6.17

func (e AfpBadDirIDType) String() string

type Aifc added in v0.5.1

type Aifc uint32
const (
	AIFCVersion1 Aifc = 0xa2805140
)

func (Aifc) String added in v0.5.1

func (e Aifc) String() string

type Aiffid added in v0.5.1

type Aiffid uint32
const (
	AIFCID                Aiffid = 'A'<<24 | 'I'<<16 | 'F'<<8 | 'C' // 'AIFC'
	AIFFID                Aiffid = 'A'<<24 | 'I'<<16 | 'F'<<8 | 'F' // 'AIFF'
	AnnotationID          Aiffid = 'A'<<24 | 'N'<<16 | 'N'<<8 | 'O' // 'ANNO'
	ApplicationSpecificID Aiffid = 'A'<<24 | 'P'<<16 | 'P'<<8 | 'L' // 'APPL'
	AudioRecordingID      Aiffid = 'A'<<24 | 'E'<<16 | 'S'<<8 | 'D' // 'AESD'
	AuthorID              Aiffid = 'A'<<24 | 'U'<<16 | 'T'<<8 | 'H' // 'AUTH'
	CommentID             Aiffid = 'C'<<24 | 'O'<<16 | 'M'<<8 | 'T' // 'COMT'
	CommonID              Aiffid = 'C'<<24 | 'O'<<16 | 'M'<<8 | 'M' // 'COMM'
	CopyrightID           Aiffid = '('<<24 | 'c'<<16 | ')'<<8 | ' ' // '(c) '
	FORMID                Aiffid = 'F'<<24 | 'O'<<16 | 'R'<<8 | 'M' // 'FORM'
	FormatVersionID       Aiffid = 'F'<<24 | 'V'<<16 | 'E'<<8 | 'R' // 'FVER'
	InstrumentID          Aiffid = 'I'<<24 | 'N'<<16 | 'S'<<8 | 'T' // 'INST'
	MIDIDataID            Aiffid = 'M'<<24 | 'I'<<16 | 'D'<<8 | 'I' // 'MIDI'
	MarkerID              Aiffid = 'M'<<24 | 'A'<<16 | 'R'<<8 | 'K' // 'MARK'
	NameID                Aiffid = 'N'<<24 | 'A'<<16 | 'M'<<8 | 'E' // 'NAME'
	SoundDataID           Aiffid = 'S'<<24 | 'S'<<16 | 'N'<<8 | 'D' // 'SSND'
)

func (Aiffid) String added in v0.5.1

func (e Aiffid) String() string

type AliasHandle

type AliasHandle = *AliasPtr

AliasHandle is abst_AliasHandle.

See: https://developer.apple.com/documentation/coreservices/aliashandle

type AliasInfoType

type AliasInfoType = int16

AliasInfoType is defines the alias record information type used in the index parameter of [GetAliasInfo].

See: https://developer.apple.com/documentation/coreservices/aliasinfotype

type AliasPtr

type AliasPtr = unsafe.Pointer

AliasPtr is abst_AliasPtr.

See: https://developer.apple.com/documentation/coreservices/aliasptr

type AliasRecord

type AliasRecord [6]byte

AliasRecord is defines an alias record.

See: https://developer.apple.com/documentation/coreservices/aliasrecord AliasRecord is opaque storage with the size and alignment C gives AliasRecord: 6 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 6 into.

type AppleEvent

type AppleEvent = AEDesc

AppleEvent is a descriptor whose data is a list of descriptors containing both attributes and parameters that make up an Apple event.

See: https://developer.apple.com/documentation/coreservices/appleevent

type AppleShareMedia added in v0.5.1

type AppleShareMedia uint32
const (
	AppleShareMediaType AppleShareMedia = 'a'<<24 | 'f'<<16 | 'p'<<8 | 'm' // 'afpm'
)

func (AppleShareMedia) String added in v0.5.1

func (e AppleShareMedia) String() string

type ApplicationSpecificChunk

type ApplicationSpecificChunk [7]uint16

See: https://developer.apple.com/documentation/coreservices/applicationspecificchunk ApplicationSpecificChunk is opaque storage with the size and alignment C gives ApplicationSpecificChunk: 14 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 14 into.

type Asi added in v0.5.1

type Asi int32
const (
	// Deprecated.
	AsiAliasName Asi = 0
	// Deprecated.
	AsiParentName Asi = 1
	// Deprecated.
	AsiServerName Asi = -2
	// Deprecated.
	AsiVolumeName Asi = -1
	// Deprecated.
	AsiZoneName Asi = -3
)

func (Asi) String added in v0.5.1

func (e Asi) String() string

type Asp

type Asp int32
const (
	AspBadVersNum  Asp = -1066
	AspBufTooSmall Asp = -1067
	AspNoAck       Asp = -1075
	AspNoMoreSess  Asp = -1068
	AspNoServers   Asp = -1069
	AspParamErr    Asp = -1070
	AspServerBusy  Asp = -1071
	AspSessClosed  Asp = -1072
	AspSizeErr     Asp = -1073
	AspTooMany     Asp = -1074
)

func (Asp) String

func (e Asp) String() string

type AudioRecordingChunk

type AudioRecordingChunk [16]uint16

See: https://developer.apple.com/documentation/coreservices/audiorecordingchunk AudioRecordingChunk is opaque storage with the size and alignment C gives AudioRecordingChunk: 32 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 32 into.

type BHasDirectI added in v0.5.1

type BHasDirectI uint32
const (
	BHasDirectIO BHasDirectI = 1
)

func (BHasDirectI) String added in v0.5.1

func (e BHasDirectI) String() string

type BIsEjectable added in v0.5.1

type BIsEjectable uint32
const (
	BAllowCDiDataHandler          BIsEjectable = 17
	BAncestorModDateChanges       BIsEjectable = 11
	BDoNotDisplay                 BIsEjectable = 24
	BIsAutoMounted                BIsEjectable = 14
	BIsCasePreserving             BIsEjectable = 23
	BIsCaseSensitive              BIsEjectable = 22
	BIsEjectableValue             BIsEjectable = 0
	BIsOnExternalBus              BIsEjectable = 27
	BIsOnInternalBus              BIsEjectable = 21
	BIsRemovable                  BIsEjectable = 25
	BL2PCanMapFileBlocks          BIsEjectable = 9
	BNoRootTimes                  BIsEjectable = 26
	BNoVolumeSizes                BIsEjectable = 20
	BParentModDateChanges         BIsEjectable = 10
	BSupports2TBFiles             BIsEjectable = 4
	BSupportsExclusiveLocks       BIsEjectable = 18
	BSupportsExtendedFileSecurity BIsEjectable = 28
	BSupportsFSCatalogSearch      BIsEjectable = 2
	BSupportsFSExchangeObjects    BIsEjectable = 3
	BSupportsHFSPlusAPIs          BIsEjectable = 1
	BSupportsJournaling           BIsEjectable = 19
	BSupportsLongNames            BIsEjectable = 5
	BSupportsMultiScriptNames     BIsEjectable = 6
	BSupportsNamedForks           BIsEjectable = 7
	BSupportsSubtreeIterators     BIsEjectable = 8
	BSupportsSymbolicLinks        BIsEjectable = 13
)

func (BIsEjectable) String added in v0.5.1

func (e BIsEjectable) String() string

type BLimitFCBs added in v0.5.1

type BLimitFCBs uint32
const (
	BAccessCntl                  BLimitFCBs = 18
	BHasBTreeMgr                 BLimitFCBs = 5
	BHasBlankAccessPrivileges    BLimitFCBs = 4
	BHasCatSearch                BLimitFCBs = 7
	BHasCopyFile                 BLimitFCBs = 14
	BHasDesktopMgr               BLimitFCBs = 12
	BHasExtFSVol                 BLimitFCBs = 16
	BHasFileIDs                  BLimitFCBs = 6
	BHasFolderLock               BLimitFCBs = 10
	BHasMoveRename               BLimitFCBs = 13
	BHasOpenDeny                 BLimitFCBs = 15
	BHasPersonalAccessPrivileges BLimitFCBs = 9
	BHasShortName                BLimitFCBs = 11
	BHasUserGroupList            BLimitFCBs = 8
	BLimitFCBsValue              BLimitFCBs = 31
	BLocalWList                  BLimitFCBs = 30
	BNoBootBlks                  BLimitFCBs = 19
	BNoDeskItems                 BLimitFCBs = 20
	BNoLclSync                   BLimitFCBs = 27
	BNoMiniFndr                  BLimitFCBs = 29
	BNoSwitchTo                  BLimitFCBs = 25
	BNoSysDir                    BLimitFCBs = 17
	BNoVNEdit                    BLimitFCBs = 28
	BSupportsAsyncRequests       BLimitFCBs = 3
	BSupportsTrashVolumeCache    BLimitFCBs = 2
	BTrshOffLine                 BLimitFCBs = 26
)

func (BLimitFCBs) String added in v0.5.1

func (e BLimitFCBs) String() string

type BadComponent

type BadComponent int32
const (
	// BadComponentInstance: Invalid component  passed to Component Manager.
	BadComponentInstance BadComponent = -2147450879
	// BadComponentSelector: Component does not support the specified request code.
	BadComponentSelector BadComponent = -2147450878
)

func (BadComponent) String

func (e BadComponent) String() string

type BadDragRefErr

type BadDragRefErr int32
const (
	BadDragFlavorErr          BadDragRefErr = -1852
	BadDragItemErr            BadDragRefErr = -1851
	BadDragRefErrValue        BadDragRefErr = -1850
	BadImageErr               BadDragRefErr = -1861
	BadImageRgnErr            BadDragRefErr = -1860
	CantGetFlavorErr          BadDragRefErr = -1854
	DragNotAcceptedErr        BadDragRefErr = -1857
	DuplicateFlavorErr        BadDragRefErr = -1853
	DuplicateHandlerErr       BadDragRefErr = -1855
	HandlerNotFoundErr        BadDragRefErr = -1856
	NoSuitableDisplaysErr     BadDragRefErr = -1859
	NonDragOriginatorErr      BadDragRefErr = -1862
	UnsupportedForPlatformErr BadDragRefErr = -1858
)

func (BadDragRefErr) String

func (e BadDragRefErr) String() string

type BadFolderDescErr

type BadFolderDescErr int32
const (
	BadFolderDescErrValue  BadFolderDescErr = -4270
	BadRoutingSizeErr      BadFolderDescErr = -4276
	DuplicateFolderDescErr BadFolderDescErr = -4271
	DuplicateRoutingErr    BadFolderDescErr = -4274
	InvalidFolderTypeErr   BadFolderDescErr = -4273
	NoMoreFolderDescErr    BadFolderDescErr = -4272
	RoutingNotFoundErr     BadFolderDescErr = -4275
)

func (BadFolderDescErr) String

func (e BadFolderDescErr) String() string

type BigEndianFixed

type BigEndianFixed [2]uint16

BigEndianFixed is protects a big-endian Fixed value from being changed bylittle-endian code.

See: https://developer.apple.com/documentation/coreservices/bigendianfixed BigEndianFixed is opaque storage with the size and alignment C gives BigEndianFixed: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

type BigEndianLong

type BigEndianLong [4]uint16

BigEndianLong is protects a big-endian long value from being changed bylittle-endian code.

See: https://developer.apple.com/documentation/coreservices/bigendianlong BigEndianLong is opaque storage with the size and alignment C gives BigEndianLong: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type BigEndianOSType

type BigEndianOSType [2]uint16

See: https://developer.apple.com/documentation/coreservices/bigendianostype BigEndianOSType is opaque storage with the size and alignment C gives BigEndianOSType: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

type BigEndianShort

type BigEndianShort [1]uint16

BigEndianShort is protects a big-endian short value from being changed bylittle-endian code.

See: https://developer.apple.com/documentation/coreservices/bigendianshort BigEndianShort is opaque storage with the size and alignment C gives BigEndianShort: 2 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 2 into.

type BigEndianUInt32

type BigEndianUInt32 [2]uint16

See: https://developer.apple.com/documentation/coreservices/bigendianuint32 BigEndianUInt32 is opaque storage with the size and alignment C gives BigEndianUInt32: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

type BigEndianUnsignedFixed

type BigEndianUnsignedFixed [2]uint16

BigEndianUnsignedFixed is protects a big-endian unsigned Fixed value from beingchanged by little-endian code.

See: https://developer.apple.com/documentation/coreservices/bigendianunsignedfixed BigEndianUnsignedFixed is opaque storage with the size and alignment C gives BigEndianUnsignedFixed: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

type BigEndianUnsignedLong

type BigEndianUnsignedLong [4]uint16

BigEndianUnsignedLong is protects a big-endian unsigned long value from being changedby little-endian code.

See: https://developer.apple.com/documentation/coreservices/bigendianunsignedlong BigEndianUnsignedLong is opaque storage with the size and alignment C gives BigEndianUnsignedLong: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type BigEndianUnsignedShort

type BigEndianUnsignedShort [1]uint16

BigEndianUnsignedShort is protects a big-endian unsigned short value from beingchanged by little-endian code.

See: https://developer.apple.com/documentation/coreservices/bigendianunsignedshort BigEndianUnsignedShort is opaque storage with the size and alignment C gives BigEndianUnsignedShort: 2 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 2 into.

type Boolean added in v0.6.17

type Boolean = TypeBoolean

Boolean is an alias for referenced enum type TypeBoolean.

type Buf2SmallErr

type Buf2SmallErr int32
const (
	AtpBadRsp         Buf2SmallErr = -3107
	AtpLenErr         Buf2SmallErr = -3106
	Buf2SmallErrValue Buf2SmallErr = -3101
	CkSumErr          Buf2SmallErr = -3103
	ExtractErr        Buf2SmallErr = -3104
	NoMPPErr          Buf2SmallErr = -3102
	ReadQErr          Buf2SmallErr = -3105
	RecNotFnd         Buf2SmallErr = -3108
	SktClosedErr      Buf2SmallErr = -3109
)

func (Buf2SmallErr) String

func (e Buf2SmallErr) String() string

type CAEList added in v0.5.1

type CAEList uint32
const (
	CAEListValue    CAEList = 'l'<<24 | 'i'<<16 | 's'<<8 | 't' // 'list'
	CApplication    CAEList = 'c'<<24 | 'a'<<16 | 'p'<<8 | 'p' // 'capp'
	CArc            CAEList = 'c'<<24 | 'a'<<16 | 'r'<<8 | 'c' // 'carc'
	CBoolean        CAEList = 'b'<<24 | 'o'<<16 | 'o'<<8 | 'l' // 'bool'
	CCell           CAEList = 'c'<<24 | 'c'<<16 | 'e'<<8 | 'l' // 'ccel'
	CChar           CAEList = 'c'<<24 | 'h'<<16 | 'a'<<8 | ' ' // 'cha '
	CColorTable     CAEList = 'c'<<24 | 'l'<<16 | 'r'<<8 | 't' // 'clrt'
	CColumn         CAEList = 'c'<<24 | 'c'<<16 | 'o'<<8 | 'l' // 'ccol'
	CDocument       CAEList = 'd'<<24 | 'o'<<16 | 'c'<<8 | 'u' // 'docu'
	CDrawingArea    CAEList = 'c'<<24 | 'd'<<16 | 'r'<<8 | 'w' // 'cdrw'
	CEnumeration    CAEList = 'e'<<24 | 'n'<<16 | 'u'<<8 | 'm' // 'enum'
	CFile           CAEList = 'f'<<24 | 'i'<<16 | 'l'<<8 | 'e' // 'file'
	CFixed          CAEList = 'f'<<24 | 'i'<<16 | 'x'<<8 | 'd' // 'fixd'
	CFixedPoint     CAEList = 'f'<<24 | 'p'<<16 | 'n'<<8 | 't' // 'fpnt'
	CFixedRectangle CAEList = 'f'<<24 | 'r'<<16 | 'c'<<8 | 't' // 'frct'
	CGraphicLine    CAEList = 'g'<<24 | 'l'<<16 | 'i'<<8 | 'n' // 'glin'
	CGraphicObject  CAEList = 'c'<<24 | 'g'<<16 | 'o'<<8 | 'b' // 'cgob'
	CGraphicShape   CAEList = 'c'<<24 | 'g'<<16 | 's'<<8 | 'h' // 'cgsh'
	CGraphicText    CAEList = 'c'<<24 | 'g'<<16 | 't'<<8 | 'x' // 'cgtx'
	CGroupedGraphic CAEList = 'c'<<24 | 'p'<<16 | 'i'<<8 | 'c' // 'cpic'
)

func (CAEList) String added in v0.5.1

func (e CAEList) String() string

type CDEFNFndConstants

type CDEFNFndConstants int32
const (
	CDEFNFnd         CDEFNFndConstants = 88
	DsBadStartupDisk CDEFNFndConstants = 42
	DsHD20Installed  CDEFNFndConstants = -12
	DsNotThe1        CDEFNFndConstants = 31
	DsSystemFileErr  CDEFNFndConstants = 43
	ExUserBreak      CDEFNFndConstants = -492
	FsDSIntErr       CDEFNFndConstants = -127
	HMenuFindErr     CDEFNFndConstants = -127
	MBarNFnd         CDEFNFndConstants = -126
	StrUserBreak     CDEFNFndConstants = -491
	UserBreak        CDEFNFndConstants = -490
)

func (CDEFNFndConstants) String

func (e CDEFNFndConstants) String() string

type CInsertionLoc added in v0.5.1

type CInsertionLoc uint32
const (
	CInsertionLocValue  CInsertionLoc = 'i'<<24 | 'n'<<16 | 's'<<8 | 'l' // 'insl'
	CInsertionPoint     CInsertionLoc = 'c'<<24 | 'i'<<16 | 'n'<<8 | 's' // 'cins'
	CIntlText           CInsertionLoc = 'i'<<24 | 't'<<16 | 'x'<<8 | 't' // 'itxt'
	CIntlWritingCode    CInsertionLoc = 'i'<<24 | 'n'<<16 | 't'<<8 | 'l' // 'intl'
	CItem               CInsertionLoc = 'c'<<24 | 'i'<<16 | 't'<<8 | 'm' // 'citm'
	CLine               CInsertionLoc = 'c'<<24 | 'l'<<16 | 'i'<<8 | 'n' // 'clin'
	CLongDateTime       CInsertionLoc = 'l'<<24 | 'd'<<16 | 't'<<8 | ' ' // 'ldt '
	CLongFixed          CInsertionLoc = 'l'<<24 | 'f'<<16 | 'x'<<8 | 'd' // 'lfxd'
	CLongFixedPoint     CInsertionLoc = 'l'<<24 | 'f'<<16 | 'p'<<8 | 't' // 'lfpt'
	CLongFixedRectangle CInsertionLoc = 'l'<<24 | 'f'<<16 | 'r'<<8 | 'c' // 'lfrc'
	CLongInteger        CInsertionLoc = 'l'<<24 | 'o'<<16 | 'n'<<8 | 'g' // 'long'
	CLongPoint          CInsertionLoc = 'l'<<24 | 'p'<<16 | 'n'<<8 | 't' // 'lpnt'
	CLongRectangle      CInsertionLoc = 'l'<<24 | 'r'<<16 | 'c'<<8 | 't' // 'lrct'
	CMachineLoc         CInsertionLoc = 'm'<<24 | 'L'<<16 | 'o'<<8 | 'c' // 'mLoc'
	CMenu               CInsertionLoc = 'c'<<24 | 'm'<<16 | 'n'<<8 | 'u' // 'cmnu'
	CMenuItem           CInsertionLoc = 'c'<<24 | 'm'<<16 | 'e'<<8 | 'n' // 'cmen'
	CObject             CInsertionLoc = 'c'<<24 | 'o'<<16 | 'b'<<8 | 'j' // 'cobj'
	CObjectSpecifier    CInsertionLoc = 'o'<<24 | 'b'<<16 | 'j'<<8 | ' ' // 'obj '
	COpenableObject     CInsertionLoc = 'c'<<24 | 'o'<<16 | 'o'<<8 | 'b' // 'coob'
	COval               CInsertionLoc = 'c'<<24 | 'o'<<16 | 'v'<<8 | 'l' // 'covl'
)

func (CInsertionLoc) String added in v0.5.1

func (e CInsertionLoc) String() string

type CKeystroke added in v0.5.1

type CKeystroke uint32
const (
	CKeystrokeValue CKeystroke = 'k'<<24 | 'p'<<16 | 'r'<<8 | 's' // 'kprs'
	ECapsLockDown   CKeystroke = 'K'<<24 | 'c'<<16 | 'l'<<8 | 'k' // 'Kclk'
	EClearKey       CKeystroke = 0x6b734700
	ECommandDown    CKeystroke = 'K'<<24 | 'c'<<16 | 'm'<<8 | 'd' // 'Kcmd'
	EControlDown    CKeystroke = 'K'<<24 | 'c'<<16 | 't'<<8 | 'l' // 'Kctl'
	EDeleteKey      CKeystroke = 0x6b733300
	EDownArrowKey   CKeystroke = 0x6b737d00
	EEndKey         CKeystroke = 0x6b737700
	EEnterKey       CKeystroke = 0x6b734c00
	EEscapeKey      CKeystroke = 0x6b733500
	EF10Key         CKeystroke = 0x6b736d00
	EF11Key         CKeystroke = 0x6b736700
	EF12Key         CKeystroke = 0x6b736f00
	EF13Key         CKeystroke = 0x6b736900
	EF14Key         CKeystroke = 0x6b736b00
	EF15Key         CKeystroke = 0x6b737100
	EF1Key          CKeystroke = 0x6b737a00
	EF2Key          CKeystroke = 0x6b737800
	EF3Key          CKeystroke = 0x6b736300
	EF4Key          CKeystroke = 0x6b737600
	EF5Key          CKeystroke = 0x6b736000
	EF6Key          CKeystroke = 0x6b736100
	EF7Key          CKeystroke = 0x6b736200
	EF8Key          CKeystroke = 0x6b736400
	EF9Key          CKeystroke = 0x6b736500
	EForwardDelKey  CKeystroke = 0x6b737500
	EHelpKey        CKeystroke = 0x6b737200
	EHomeKey        CKeystroke = 0x6b737300
	EKeyKind        CKeystroke = 'e'<<24 | 'k'<<16 | 's'<<8 | 't' // 'ekst'
	ELeftArrowKey   CKeystroke = 0x6b737b00
	EModifiers      CKeystroke = 'e'<<24 | 'M'<<16 | 'd'<<8 | 's' // 'eMds'
	EOptionDown     CKeystroke = 'K'<<24 | 'o'<<16 | 'p'<<8 | 't' // 'Kopt'
	EPageDownKey    CKeystroke = 0x6b737900
	EPageUpKey      CKeystroke = 0x6b737400
	EReturnKey      CKeystroke = 0x6b732400
	ERightArrowKey  CKeystroke = 0x6b737c00
	EShiftDown      CKeystroke = 'K'<<24 | 's'<<16 | 'f'<<8 | 't' // 'Ksft'
	ETabKey         CKeystroke = 0x6b733000
	EUpArrowKey     CKeystroke = 0x6b737e00
	PKeyKind        CKeystroke = 'k'<<24 | 'k'<<16 | 'n'<<8 | 'd' // 'kknd'
	PKeystrokeKey   CKeystroke = 'k'<<24 | 'M'<<16 | 's'<<8 | 'g' // 'kMsg'
	PModifiers      CKeystroke = 'k'<<24 | 'M'<<16 | 'o'<<8 | 'd' // 'kMod'
)

func (CKeystroke) String added in v0.5.1

func (e CKeystroke) String() string

type CMatchErr

type CMatchErr int32
const (
	CDepthErr             CMatchErr = -157
	CDevErr               CMatchErr = -155
	CMatchErrValue        CMatchErr = -150
	CNoMemErr             CMatchErr = -152
	CProtectErr           CMatchErr = -154
	CRangeErr             CMatchErr = -153
	CResErr               CMatchErr = -156
	CTempMemErr           CMatchErr = -151
	CantLoadPickMethodErr CMatchErr = -11003
	ColorsRequestedErr    CMatchErr = -11004
	PictInfoIDErr         CMatchErr = -11001
	PictInfoVerbErr       CMatchErr = -11002
	PictInfoVersionErr    CMatchErr = -11000
	PictureDataErr        CMatchErr = -11005
	RgnTooBigErr          CMatchErr = -500
	UpdPixMemErr          CMatchErr = -125
)

func (CMatchErr) String

func (e CMatchErr) String() string

type CParagraph

type CParagraph uint32
const (
	// CPICT: A PICT format figure.
	CPICT CParagraph = 'P'<<24 | 'I'<<16 | 'C'<<8 | 'T' // 'PICT'
	// CParagraphValue: A paragraph of text.
	CParagraphValue CParagraph = 'c'<<24 | 'p'<<16 | 'a'<<8 | 'r' // 'cpar'
	CPixel          CParagraph = 'c'<<24 | 'p'<<16 | 'x'<<8 | 'l' // 'cpxl'
	CPixelMap       CParagraph = 'c'<<24 | 'p'<<16 | 'i'<<8 | 'x' // 'cpix'
	CPolygon        CParagraph = 'c'<<24 | 'p'<<16 | 'g'<<8 | 'n' // 'cpgn'
	// CProperty: A property of any object class.
	CProperty    CParagraph = 'p'<<24 | 'r'<<16 | 'o'<<8 | 'p' // 'prop'
	CQDPoint     CParagraph = 'Q'<<24 | 'D'<<16 | 'p'<<8 | 't' // 'QDpt'
	CQDRectangle CParagraph = 'q'<<24 | 'd'<<16 | 'r'<<8 | 't' // 'qdrt'
	// CRGBColor: An RGB color value.
	CRGBColor         CParagraph = 'c'<<24 | 'R'<<16 | 'G'<<8 | 'B' // 'cRGB'
	CRectangle        CParagraph = 'c'<<24 | 'r'<<16 | 'e'<<8 | 'c' // 'crec'
	CRotation         CParagraph = 't'<<24 | 'r'<<16 | 'o'<<8 | 't' // 'trot'
	CRoundedRectangle CParagraph = 'c'<<24 | 'r'<<16 | 'r'<<8 | 'c' // 'crrc'
	CRow              CParagraph = 'c'<<24 | 'r'<<16 | 'o'<<8 | 'w' // 'crow'
	CSelection        CParagraph = 'c'<<24 | 's'<<16 | 'e'<<8 | 'l' // 'csel'
	CShortInteger     CParagraph = 's'<<24 | 'h'<<16 | 'o'<<8 | 'r' // 'shor'
	CTable            CParagraph = 'c'<<24 | 't'<<16 | 'b'<<8 | 'l' // 'ctbl'
	CText             CParagraph = 'c'<<24 | 't'<<16 | 'x'<<8 | 't' // 'ctxt'
	CTextFlow         CParagraph = 'c'<<24 | 'f'<<16 | 'l'<<8 | 'o' // 'cflo'
	CTextStyles       CParagraph = 't'<<24 | 's'<<16 | 't'<<8 | 'y' // 'tsty'
	CType             CParagraph = 't'<<24 | 'y'<<16 | 'p'<<8 | 'e' // 'type'
)

func (CParagraph) String

func (e CParagraph) String() string

type CSComponentsThreadMode

type CSComponentsThreadMode = uint32

See: https://developer.apple.com/documentation/coreservices/cscomponentsthreadmode

func CSGetComponentsThreadMode deprecated

func CSGetComponentsThreadMode() CSComponentsThreadMode

CSGetComponentsThreadMode indicates whether using thread-unsafe components is allowed in the current thread.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516409-csgetcomponentsthreadmode

type CSIdentityClientContext

type CSIdentityClientContext struct {
	// contains filtered or unexported fields
}

CSIdentityClientContext

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/csidentityclientcontext

func (*CSIdentityClientContext) CopyDescription

func (s *CSIdentityClientContext) CopyDescription() uintptr

CopyDescription returns a raw C code address from the record's packed storage. The address is not callable from Go. To call C through it, use purego to bind a Go function value to the address.

func (*CSIdentityClientContext) Info

func (s *CSIdentityClientContext) Info() uintptr

Info returns the Info field from the record's packed storage.

func (*CSIdentityClientContext) Release

func (s *CSIdentityClientContext) Release() uintptr

Release returns a raw C code address from the record's packed storage. The address is not callable from Go. To call C through it, use purego to bind a Go function value to the address.

func (*CSIdentityClientContext) Retain

func (s *CSIdentityClientContext) Retain() uintptr

Retain returns a raw C code address from the record's packed storage. The address is not callable from Go. To call C through it, use purego to bind a Go function value to the address.

func (*CSIdentityClientContext) SetCopyDescription added in v0.6.17

func (s *CSIdentityClientContext) SetCopyDescription(v uintptr)

SetCopyDescription stores a raw C code address in the record's packed storage. Use purego.NewCallback to obtain the address for a Go callback. The callback and its address must outlive every use C can make through this record.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*CSIdentityClientContext) SetInfo added in v0.6.17

func (s *CSIdentityClientContext) SetInfo(v uintptr)

SetInfo updates the Info field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*CSIdentityClientContext) SetRelease added in v0.6.17

func (s *CSIdentityClientContext) SetRelease(v uintptr)

SetRelease stores a raw C code address in the record's packed storage. Use purego.NewCallback to obtain the address for a Go callback. The callback and its address must outlive every use C can make through this record.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*CSIdentityClientContext) SetRetain added in v0.6.17

func (s *CSIdentityClientContext) SetRetain(v uintptr)

SetRetain stores a raw C code address in the record's packed storage. Use purego.NewCallback to obtain the address for a Go callback. The callback and its address must outlive every use C can make through this record.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*CSIdentityClientContext) SetStatusUpdated added in v0.6.17

func (s *CSIdentityClientContext) SetStatusUpdated(v uintptr)

SetStatusUpdated updates the StatusUpdated field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*CSIdentityClientContext) SetVersion added in v0.6.17

func (s *CSIdentityClientContext) SetVersion(v int)

SetVersion updates the Version field in the record's packed storage.

func (*CSIdentityClientContext) StatusUpdated

func (s *CSIdentityClientContext) StatusUpdated() uintptr

StatusUpdated returns the StatusUpdated field from the record's packed storage.

func (*CSIdentityClientContext) Version

func (s *CSIdentityClientContext) Version() int

Version returns the Version field from the record's packed storage.

type CSIdentityQueryClientContext

type CSIdentityQueryClientContext struct {
	// contains filtered or unexported fields
}

CSIdentityQueryClientContext

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/csidentityqueryclientcontext

func (*CSIdentityQueryClientContext) CopyInfoDescription

func (s *CSIdentityQueryClientContext) CopyInfoDescription() uintptr

CopyInfoDescription returns a raw C code address from the record's packed storage. The address is not callable from Go. To call C through it, use purego to bind a Go function value to the address.

func (*CSIdentityQueryClientContext) Info

Info returns the Info field from the record's packed storage.

func (*CSIdentityQueryClientContext) ReceiveEvent

func (s *CSIdentityQueryClientContext) ReceiveEvent() uintptr

ReceiveEvent returns the ReceiveEvent field from the record's packed storage.

func (*CSIdentityQueryClientContext) ReleaseInfo

func (s *CSIdentityQueryClientContext) ReleaseInfo() uintptr

ReleaseInfo returns a raw C code address from the record's packed storage. The address is not callable from Go. To call C through it, use purego to bind a Go function value to the address.

func (*CSIdentityQueryClientContext) RetainInfo

func (s *CSIdentityQueryClientContext) RetainInfo() uintptr

RetainInfo returns a raw C code address from the record's packed storage. The address is not callable from Go. To call C through it, use purego to bind a Go function value to the address.

func (*CSIdentityQueryClientContext) SetCopyInfoDescription added in v0.6.17

func (s *CSIdentityQueryClientContext) SetCopyInfoDescription(v uintptr)

SetCopyInfoDescription stores a raw C code address in the record's packed storage. Use purego.NewCallback to obtain the address for a Go callback. The callback and its address must outlive every use C can make through this record.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*CSIdentityQueryClientContext) SetInfo added in v0.6.17

func (s *CSIdentityQueryClientContext) SetInfo(v uintptr)

SetInfo updates the Info field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*CSIdentityQueryClientContext) SetReceiveEvent added in v0.6.17

func (s *CSIdentityQueryClientContext) SetReceiveEvent(v uintptr)

SetReceiveEvent updates the ReceiveEvent field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*CSIdentityQueryClientContext) SetReleaseInfo added in v0.6.17

func (s *CSIdentityQueryClientContext) SetReleaseInfo(v uintptr)

SetReleaseInfo stores a raw C code address in the record's packed storage. Use purego.NewCallback to obtain the address for a Go callback. The callback and its address must outlive every use C can make through this record.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*CSIdentityQueryClientContext) SetRetainInfo added in v0.6.17

func (s *CSIdentityQueryClientContext) SetRetainInfo(v uintptr)

SetRetainInfo stores a raw C code address in the record's packed storage. Use purego.NewCallback to obtain the address for a Go callback. The callback and its address must outlive every use C can make through this record.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*CSIdentityQueryClientContext) SetVersion added in v0.6.17

func (s *CSIdentityQueryClientContext) SetVersion(v int)

SetVersion updates the Version field in the record's packed storage.

func (*CSIdentityQueryClientContext) Version

func (s *CSIdentityQueryClientContext) Version() int

Version returns the Version field from the record's packed storage.

type CSIdentityQueryRef

type CSIdentityQueryRef uintptr

See: https://developer.apple.com/documentation/coreservices/csidentityqueryref

type CURL added in v0.5.1

type CURL uint32
const (
	// CFTPItem: Specifies FTP (File Transfer Protocol) protocol.
	CFTPItem CURL = 'f'<<24 | 't'<<16 | 'p'<<8 | ' ' // 'ftp '
	// CHTML: Specifies HTML (HyperText Markup Language) format.
	CHTML CURL = 'h'<<24 | 't'<<16 | 'm'<<8 | 'l' // 'html'
	// CInternetAddress: Specifies an Internet or Intranet address for the TCP/IP protocol.
	CInternetAddress CURL = 'I'<<24 | 'P'<<16 | 'A'<<8 | 'D' // 'IPAD'
	// CURLValue: Specifies a Uniform Resource Locator or Uniform Resource ID (URI).
	CURLValue CURL = 'u'<<24 | 'r'<<16 | 'l'<<8 | ' ' // 'url '
)

func (CURL) String added in v0.5.1

func (e CURL) String() string

type CVersion

type CVersion uint32
const (
	CVersionValue     CVersion = 'v'<<24 | 'e'<<16 | 'r'<<8 | 's' // 'vers'
	CWindow           CVersion = 'c'<<24 | 'w'<<16 | 'i'<<8 | 'n' // 'cwin'
	CWord             CVersion = 'c'<<24 | 'w'<<16 | 'o'<<8 | 'r' // 'cwor'
	EnumArrows        CVersion = 'a'<<24 | 'r'<<16 | 'r'<<8 | 'o' // 'arro'
	EnumJustification CVersion = 'j'<<24 | 'u'<<16 | 's'<<8 | 't' // 'just'
	EnumKeyForm       CVersion = 'k'<<24 | 'f'<<16 | 'r'<<8 | 'm' // 'kfrm'
	EnumPosition      CVersion = 'p'<<24 | 'o'<<16 | 's'<<8 | 'i' // 'posi'
	EnumProtection    CVersion = 'p'<<24 | 'r'<<16 | 't'<<8 | 'n' // 'prtn'
	EnumQuality       CVersion = 'q'<<24 | 'u'<<16 | 'a'<<8 | 'l' // 'qual'
	EnumSaveOptions   CVersion = 's'<<24 | 'a'<<16 | 'v'<<8 | 'o' // 'savo'
	EnumStyle         CVersion = 's'<<24 | 't'<<16 | 'y'<<8 | 'l' // 'styl'
	EnumTransferMode  CVersion = 't'<<24 | 'r'<<16 | 'a'<<8 | 'n' // 'tran'
	KAEAbout          CVersion = 'a'<<24 | 'b'<<16 | 'o'<<8 | 'u' // 'abou'
	KAEAfter          CVersion = 'a'<<24 | 'f'<<16 | 't'<<8 | 'e' // 'afte'
	KAEAliasSelection CVersion = 's'<<24 | 'a'<<16 | 'l'<<8 | 'i' // 'sali'
	KAEAllCaps        CVersion = 'a'<<24 | 'l'<<16 | 'c'<<8 | 'p' // 'alcp'
	KAEArrowAtEnd     CVersion = 'a'<<24 | 'r'<<16 | 'e'<<8 | 'n' // 'aren'
	KAEArrowAtStart   CVersion = 'a'<<24 | 'r'<<16 | 's'<<8 | 't' // 'arst'
	KAEArrowBothEnds  CVersion = 'a'<<24 | 'r'<<16 | 'b'<<8 | 'o' // 'arbo'
)

func (CVersion) String

func (e CVersion) String() string

type Cal added in v0.5.1

type Cal uint32
const (
	// Deprecated.
	CalArabicCivil Cal = 1
	// Deprecated.
	CalArabicLunar Cal = 2
	// Deprecated.
	CalCoptic Cal = 5
	// Deprecated.
	CalGregorian Cal = 0
	// Deprecated.
	CalJapanese Cal = 3
	// Deprecated.
	CalJewish Cal = 4
	// Deprecated.
	CalPersian Cal = 6
)

func (Cal) String added in v0.5.1

func (e Cal) String() string

type CannotFindAtomErr

type CannotFindAtomErr int32
const (
	AAPNotCreatedErr                 CannotFindAtomErr = -2120
	AAPNotFoundErr                   CannotFindAtomErr = -2121
	ASDBadForkErr                    CannotFindAtomErr = -2123
	ASDBadHeaderErr                  CannotFindAtomErr = -2122
	ASDEntryNotFoundErr              CannotFindAtomErr = -2124
	AtomIndexInvalidErr              CannotFindAtomErr = -2104
	AtomsNotOfSameTypeErr            CannotFindAtomErr = -2103
	CannotBeLeafAtomErr              CannotFindAtomErr = -2109
	CannotFindAtomErrValue           CannotFindAtomErr = -2101
	DuplicateAtomTypeAndIDErr        CannotFindAtomErr = -2105
	EmptyPathErr                     CannotFindAtomErr = -2111
	FileOffsetTooBigErr              CannotFindAtomErr = -2125
	InvalidAtomContainerErr          CannotFindAtomErr = -2107
	InvalidAtomErr                   CannotFindAtomErr = -2106
	InvalidAtomTypeErr               CannotFindAtomErr = -2108
	NoPathMappingErr                 CannotFindAtomErr = -2112
	NotAllowedToSaveMovieErr         CannotFindAtomErr = -2126
	NotEnoughDataErr                 CannotFindAtomErr = -2149
	NotLeafAtomErr                   CannotFindAtomErr = -2102
	PathNotVerifiedErr               CannotFindAtomErr = -2113
	PathTooLongErr                   CannotFindAtomErr = -2110
	QfcbNotCreatedErr                CannotFindAtomErr = -2119
	QfcbNotFoundErr                  CannotFindAtomErr = -2118
	QtActionNotHandledErr            CannotFindAtomErr = -2157
	QtNetworkAlreadyAllocatedErr     CannotFindAtomErr = -2127
	QtXMLApplicationErr              CannotFindAtomErr = -2159
	QtXMLParseErr                    CannotFindAtomErr = -2158
	UnknownFormatErr                 CannotFindAtomErr = -2114
	UrlDataHFTPBadNameListErr        CannotFindAtomErr = -2144
	UrlDataHFTPBadPasswordErr        CannotFindAtomErr = -2136
	UrlDataHFTPBadUserErr            CannotFindAtomErr = -2135
	UrlDataHFTPDataConnectionErr     CannotFindAtomErr = -2138
	UrlDataHFTPFilenameErr           CannotFindAtomErr = -2142
	UrlDataHFTPNeedPasswordErr       CannotFindAtomErr = -2145
	UrlDataHFTPNoDirectoryErr        CannotFindAtomErr = -2139
	UrlDataHFTPNoNetDriverErr        CannotFindAtomErr = -2143
	UrlDataHFTPNoPasswordErr         CannotFindAtomErr = -2146
	UrlDataHFTPPermissionsErr        CannotFindAtomErr = -2141
	UrlDataHFTPProtocolErr           CannotFindAtomErr = -2133
	UrlDataHFTPQuotaErr              CannotFindAtomErr = -2140
	UrlDataHFTPServerDisconnectedErr CannotFindAtomErr = -2147
	UrlDataHFTPServerErr             CannotFindAtomErr = -2137
	UrlDataHFTPShutdownErr           CannotFindAtomErr = -2134
	UrlDataHFTPURLErr                CannotFindAtomErr = -2148
	UrlDataHHTTPNoNetDriverErr       CannotFindAtomErr = -2130
	UrlDataHHTTPProtocolErr          CannotFindAtomErr = -2129
	UrlDataHHTTPRedirectErr          CannotFindAtomErr = -2132
	UrlDataHHTTPURLErr               CannotFindAtomErr = -2131
	WackBadFileErr                   CannotFindAtomErr = -2115
	WackBadMetaDataErr               CannotFindAtomErr = -2117
	WackForkNotFoundErr              CannotFindAtomErr = -2116
)

func (CannotFindAtomErr) String

func (e CannotFindAtomErr) String() string

type CatPositionRec

type CatPositionRec [8]uint16

See: https://developer.apple.com/documentation/coreservices/catpositionrec CatPositionRec is opaque storage with the size and alignment C gives CatPositionRec: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type CcntTokenRecord

type CcntTokenRecord struct {
	// contains filtered or unexported fields
}

CcntTokenRecord - Stores token information used by the AEResolve functionwhile locating a range of objects.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/ccnttokenrecord

func (*CcntTokenRecord) SetToken added in v0.6.17

func (s *CcntTokenRecord) SetToken(v AEDesc)

SetToken updates the Token field in the record's packed storage.

func (*CcntTokenRecord) SetTokenClass added in v0.6.17

func (s *CcntTokenRecord) SetTokenClass(v DescType)

SetTokenClass updates the TokenClass field in the record's packed storage.

func (*CcntTokenRecord) Token

func (s *CcntTokenRecord) Token() AEDesc

Token returns the Token field from the record's packed storage.

func (*CcntTokenRecord) TokenClass

func (s *CcntTokenRecord) TokenClass() DescType

TokenClass returns the TokenClass field from the record's packed storage.

type CfragFirstErrCode

type CfragFirstErrCode int32
const (
	CfragAbortClosureErr    CfragFirstErrCode = -2830
	CfragArchitectureErr    CfragFirstErrCode = -2823
	CfragCFMInternalErr     CfragFirstErrCode = -2819
	CfragCFMStartupErr      CfragFirstErrCode = -2818
	CfragCFragRsrcErr       CfragFirstErrCode = -2857
	CfragClosureIDErr       CfragFirstErrCode = -2829
	CfragConnectionIDErr    CfragFirstErrCode = -2801
	CfragContainerIDErr     CfragFirstErrCode = -2828
	CfragContextIDErr       CfragFirstErrCode = -2800
	CfragDupRegistrationErr CfragFirstErrCode = -2805
	CfragExecFileRefErr     CfragFirstErrCode = -2854
	CfragFileSizeErr        CfragFirstErrCode = -2825
	CfragFirstErrCodeValue  CfragFirstErrCode = -2800
	CfragFragmentCorruptErr CfragFirstErrCode = -2820
	CfragFragmentFormatErr  CfragFirstErrCode = -2806
	CfragFragmentUsageErr   CfragFirstErrCode = -2824
	CfragImportTooNewErr    CfragFirstErrCode = -2814
	CfragImportTooOldErr    CfragFirstErrCode = -2813
	CfragInitAtBootErr      CfragFirstErrCode = -2816
	CfragInitFunctionErr    CfragFirstErrCode = -2821
	CfragInitLoopErr        CfragFirstErrCode = -2815
	CfragInitOrderErr       CfragFirstErrCode = -2812
	CfragLastErrCode        CfragFirstErrCode = -2899
	CfragLibConnErr         CfragFirstErrCode = -2817
	CfragMapFileErr         CfragFirstErrCode = -2851
	CfragNoApplicationErr   CfragFirstErrCode = -2822
	CfragNoClientMemErr     CfragFirstErrCode = -2810
	CfragNoIDsErr           CfragFirstErrCode = -2811
	CfragNoLibraryErr       CfragFirstErrCode = -2804
	CfragNoPositionErr      CfragFirstErrCode = -2808
	CfragNoPrivateMemErr    CfragFirstErrCode = -2809
	CfragNoRegistrationErr  CfragFirstErrCode = -2827
	CfragNoSectionErr       CfragFirstErrCode = -2803
	CfragNoSymbolErr        CfragFirstErrCode = -2802
	CfragNotClosureErr      CfragFirstErrCode = -2826
	CfragOutputLengthErr    CfragFirstErrCode = -2831
	CfragRsrcForkErr        CfragFirstErrCode = -2856
	CfragStdFolderErr       CfragFirstErrCode = -2855
	CfragUnresolvedErr      CfragFirstErrCode = -2807
)

func (CfragFirstErrCode) String added in v0.6.17

func (e CfragFirstErrCode) String() string

type CfragFirstReservedCode

type CfragFirstReservedCode int32
const (
	CfragFirstReservedCodeValue CfragFirstReservedCode = -2897
	CfragReservedCode_1         CfragFirstReservedCode = -2899
	CfragReservedCode_2         CfragFirstReservedCode = -2898
	CfragReservedCode_3         CfragFirstReservedCode = -2897
)

func (CfragFirstReservedCode) String added in v0.6.17

func (e CfragFirstReservedCode) String() string

type ChunkHeader

type ChunkHeader [4]uint16

See: https://developer.apple.com/documentation/coreservices/chunkheader ChunkHeader is opaque storage with the size and alignment C gives ChunkHeader: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type CmElementTagNotFound

type CmElementTagNotFound int32
const (
	// CmCantCopyModifiedV1Profile: It is illegal to copy version 1.0 profiles that have been modified
	CmCantCopyModifiedV1Profile CmElementTagNotFound = -4215
	// CmCantDeleteElement: Cannot delete the specified profile element
	CmCantDeleteElement CmElementTagNotFound = -4202
	// CmCantGamutCheckError: Gamut checking not supported by this color world—that is, the color world does not contain a gamut table because it was built with gamut checking turned off
	CmCantGamutCheckError CmElementTagNotFound = -4217
	// CmElementTagNotFoundValue: The tag you specified is not in the specified profile
	CmElementTagNotFoundValue CmElementTagNotFound = -4200
	// CmErrIncompatibleProfile: Unspecified profile error
	CmErrIncompatibleProfile CmElementTagNotFound = -4208
	// CmFatalProfileErr: Returned from File Manager while updating a profile file in response to [CMUpdateProfile]; profile content may be corrupted
	CmFatalProfileErr CmElementTagNotFound = -4203
	// CmIndexRangeErr: Tag index out of range
	CmIndexRangeErr CmElementTagNotFound = -4201
	// CmInvalidColorSpace: Profile color space does not match bitmap type
	CmInvalidColorSpace CmElementTagNotFound = -4209
	// CmInvalidDstMap: Destination pix/bit map was invalid
	CmInvalidDstMap CmElementTagNotFound = -4211
	// CmInvalidProfile: Profile reference is invalid or refers to an inappropriate profile
	CmInvalidProfile CmElementTagNotFound = -4204
	// CmInvalidProfileComment: Bad profile comment during `drawpicture`
	CmInvalidProfileComment CmElementTagNotFound = -4213
	// CmInvalidProfileLocation: Operation not supported for this profile location
	CmInvalidProfileLocation CmElementTagNotFound = -4205
	// CmInvalidSearch: Bad search handle
	CmInvalidSearch CmElementTagNotFound = -4206
	// CmInvalidSrcMap: Source pixel map or bitmap was invalid
	CmInvalidSrcMap CmElementTagNotFound = -4210
	// CmNamedColorNotFound: The specified named color was not found in the specified profile
	CmNamedColorNotFound CmElementTagNotFound = -4216
	// CmNoGDevicesError: Begin matching or end matching—no graphics devices available
	CmNoGDevicesError CmElementTagNotFound = -4212
	// CmRangeOverFlow: One or more output color value overflows in color conversion; all input color values will be converted and the overflow will be clipped
	CmRangeOverFlow CmElementTagNotFound = -4214
	// CmSearchError: Internal error occurred during profile search
	CmSearchError CmElementTagNotFound = -4207
)

func (CmElementTagNotFound) String added in v0.6.17

func (e CmElementTagNotFound) String() string

type CmProfileError

type CmProfileError int32
const (
	// CmCantConcatenateError: Profiles cannot be concatenated
	CmCantConcatenateError CmProfileError = -178
	// CmCantDeleteProfile: Responder error
	CmCantDeleteProfile CmProfileError = -180
	// CmCantXYZ: CMM does not handle XYZ color space
	CmCantXYZ CmProfileError = -179
	// CmMethodError: An error occurred during the CMM arbitration process that determines the CMM to use
	CmMethodError CmProfileError = -171
	// CmMethodNotFound: CMM not present
	CmMethodNotFound CmProfileError = -175
	// CmNoCurrentProfile: Responder error
	CmNoCurrentProfile CmProfileError = -182
	// CmProfileErrorValue: There is something wrong with the content of the profile
	CmProfileErrorValue CmProfileError = -170
	// CmProfileNotFound: Responder error
	CmProfileNotFound CmProfileError = -176
	// CmProfilesIdentical: Profiles are the same
	CmProfilesIdentical CmProfileError = -177
	// CmUnsupportedDataType: Responder error
	CmUnsupportedDataType CmProfileError = -181
)

func (CmProfileError) String added in v0.6.17

func (e CmProfileError) String() string

type Cmp added in v0.5.1

type Cmp uint32
const (
	// Deprecated.
	CmpIsMissing Cmp = 536870912
	// Deprecated.
	CmpThreadSafe Cmp = 268435456
	// Deprecated.
	CmpWantsRegisterMessage Cmp = 2147483648
)

func (Cmp) String added in v0.5.1

func (e Cmp) String() string

type CmpAlias added in v0.5.1

type CmpAlias uint32
const (
	// Deprecated.
	CmpAliasNoFlags CmpAlias = 0
	// Deprecated.
	CmpAliasOnlyThisFile CmpAlias = 1
)

func (CmpAlias) String added in v0.5.1

func (e CmpAlias) String() string

type CodecErr

type CodecErr int32
const (
	BadCodecCharacterizationErr        CodecErr = -8993
	CodecAbortErr                      CodecErr = -8967
	CodecBadDataErr                    CodecErr = -8969
	CodecCantQueueErr                  CodecErr = -8975
	CodecCantWhenErr                   CodecErr = -8974
	CodecConditionErr                  CodecErr = -8972
	CodecDataVersErr                   CodecErr = -8970
	CodecDisabledErr                   CodecErr = -8978
	CodecDroppedFrameErr               CodecErr = -8989
	CodecErrValue                      CodecErr = -8960
	CodecExtensionNotFoundErr          CodecErr = -8971
	CodecImageBufErr                   CodecErr = -8965
	CodecNeedAccessKeyErr              CodecErr = -8987
	CodecNeedToFlushChainErr           CodecErr = -8979
	CodecNoMemoryPleaseWaitErr         CodecErr = -8977
	CodecNothingToBlitErr              CodecErr = -8976
	CodecOffscreenFailedErr            CodecErr = -8988
	CodecOffscreenFailedPleaseRetryErr CodecErr = -8992
	CodecOpenErr                       CodecErr = -8973
	CodecParameterDialogConfirm        CodecErr = -8986
	CodecScreenBufErr                  CodecErr = -8964
	CodecSizeErr                       CodecErr = -8963
	CodecSpoolErr                      CodecErr = -8966
	CodecUnimpErr                      CodecErr = -8962
	CodecWouldOffscreenErr             CodecErr = -8968
	DirectXObjectAlreadyExists         CodecErr = -8990
	LockPortBitsBadPortErr             CodecErr = -8984
	LockPortBitsBadSurfaceErr          CodecErr = -8980
	LockPortBitsSurfaceLostErr         CodecErr = -8985
	LockPortBitsWindowClippedErr       CodecErr = -8983
	LockPortBitsWindowMovedErr         CodecErr = -8981
	LockPortBitsWindowResizedErr       CodecErr = -8982
	LockPortBitsWrongGDeviceErr        CodecErr = -8991
	NoCodecErr                         CodecErr = -8961
	NoThumbnailFoundErr                CodecErr = -8994
	ScTypeNotFoundErr                  CodecErr = -8971
)

func (CodecErr) String

func (e CodecErr) String() string

type CollatorRef

type CollatorRef uintptr

CollatorRef is refers to an opaque object that encapsulates locale and collation information for the purpose of performing Unicode string comparison.

See: https://developer.apple.com/documentation/coreservices/collatorref

type Collection

type Collection int32
const (
	CollectionIndexRangeErr   Collection = -5752
	CollectionItemLockedErr   Collection = -5750
	CollectionItemNotFoundErr Collection = -5751
	CollectionVersionErr      Collection = -5753
)

func CloneCollection deprecated

func CloneCollection(c Collection) Collection

CloneCollection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551333-clonecollection

func CopyCollection deprecated

func CopyCollection(srcCollection Collection, dstCollection Collection) Collection

CopyCollection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551383-copycollection

func GetNewCollection deprecated

func GetNewCollection(collectionID int16) Collection

GetNewCollection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551366-getnewcollection

func NewCollection deprecated

func NewCollection() Collection

NewCollection.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551416-newcollection

func (Collection) String

func (e Collection) String() string

type CollectionExceptionUPP

type CollectionExceptionUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/collectionexceptionupp

func GetCollectionExceptionProc deprecated

func GetCollectionExceptionProc(c Collection) CollectionExceptionUPP

GetCollectionExceptionProc.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551420-getcollectionexceptionproc

func NewCollectionExceptionUPP deprecated

func NewCollectionExceptionUPP(userRoutine unsafe.Pointer) CollectionExceptionUPP

NewCollectionExceptionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551448-newcollectionexceptionupp

type CollectionFlattenUPP

type CollectionFlattenUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/collectionflattenupp

func NewCollectionFlattenUPP deprecated

func NewCollectionFlattenUPP(userRoutine unsafe.Pointer) CollectionFlattenUPP

NewCollectionFlattenUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1551360-newcollectionflattenupp

type Comment

type Comment [5]uint16

See: https://developer.apple.com/documentation/coreservices/comment Comment is opaque storage with the size and alignment C gives Comment: 10 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 10 into.

type CommentsChunk

type CommentsChunk [10]uint16

See: https://developer.apple.com/documentation/coreservices/commentschunk CommentsChunk is opaque storage with the size and alignment C gives CommentsChunk: 20 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 20 into.

type CommonChunk

type CommonChunk [13]uint16

See: https://developer.apple.com/documentation/coreservices/commonchunk CommonChunk is opaque storage with the size and alignment C gives CommonChunk: 26 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 26 into.

type Component

type Component uint32
const (
	// Deprecated.
	ComponentAutoVersionIncludeFlags Component = 4
	// Deprecated.
	ComponentDoAutoVersion Component = 1
	// Deprecated.
	ComponentHasMultiplePlatforms Component = 8
	// Deprecated.
	ComponentLoadResident Component = 16
	// Deprecated.
	ComponentWantsUnregister Component = 2
)

func CaptureComponent deprecated

func CaptureComponent(capturedComponent Component, capturingComponent Component) Component

CaptureComponent allows your component to capture another component.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516357-capturecomponent

func FindNextComponent deprecated

func FindNextComponent(aComponent Component, looking *ComponentDescription) Component

FindNextComponent returns the component identifier for the next registered component that meets the selection criteria specified by your application.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516552-findnextcomponent

func RegisterComponentFunc deprecated added in v0.5.1

func RegisterComponentFunc(cd *ComponentDescription, componentEntryPoint ComponentRoutineUPP, global int16, componentName kernel.Handle, componentInfo kernel.Handle, componentIcon kernel.Handle) Component

RegisterComponentFunc registers a component stored in memory.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516537-registercomponent

func RegisterComponentResource deprecated

func RegisterComponentResource(cr ComponentResourceHandle, global int16) Component

RegisterComponentResource registers a component stored in a resource file.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516594-registercomponentresource

func ResolveComponentAlias deprecated

func ResolveComponentAlias(aComponent Component) Component

ResolveComponentAlias.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516484-resolvecomponentalias

func (Component) String added in v0.5.1

func (e Component) String() string

type ComponentAliasResource

type ComponentAliasResource [32]uint16

See: https://developer.apple.com/documentation/coreservices/componentaliasresource ComponentAliasResource is opaque storage with the size and alignment C gives ComponentAliasResource: 64 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 64 into.

type ComponentDescription

type ComponentDescription [10]uint16

See: https://developer.apple.com/documentation/coreservices/componentdescription ComponentDescription is opaque storage with the size and alignment C gives ComponentDescription: 20 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 20 into.

type ComponentDllLoadErr

type ComponentDllLoadErr int32
const (
	// ComponentDllEntryNotFoundErr: Windows error returned when a component is loading.
	ComponentDllEntryNotFoundErr ComponentDllLoadErr = -2092
	// ComponentDllLoadErrValue: Windows error returned when a component is loading.
	ComponentDllLoadErrValue  ComponentDllLoadErr = -2091
	ComponentNotThreadSafeErr ComponentDllLoadErr = -2098
	// QtmlDllEntryNotFoundErr: Windows error returned when the QuickTime Media Layer is loading.
	QtmlDllEntryNotFoundErr ComponentDllLoadErr = -2094
	// QtmlDllLoadErr: Windows error returned when the QuickTime Media Layer is loading.
	QtmlDllLoadErr          ComponentDllLoadErr = -2093
	QtmlUninitialized       ComponentDllLoadErr = -2095
	UnsupportedOSErr        ComponentDllLoadErr = -2096
	UnsupportedProcessorErr ComponentDllLoadErr = -2097
)

func (ComponentDllLoadErr) String

func (e ComponentDllLoadErr) String() string

type ComponentFunctionUPP

type ComponentFunctionUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/componentfunctionupp

func NewComponentFunctionUPP deprecated

func NewComponentFunctionUPP(userRoutine unsafe.Pointer, procInfo ProcInfoType) ComponentFunctionUPP

NewComponentFunctionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516583-newcomponentfunctionupp

type ComponentInstance

type ComponentInstance = unsafe.Pointer

ComponentInstance is abst_ComponentInstance.

See: https://developer.apple.com/documentation/coreservices/componentinstance

func OpenComponent deprecated

func OpenComponent(aComponent Component) ComponentInstance

OpenComponent opens a connection to the component with the component identifier specified by your application.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516607-opencomponent

func OpenDefaultComponent deprecated

func OpenDefaultComponent(componentType uint32, componentSubType uint32) ComponentInstance

OpenDefaultComponent opens a connection to a registered component of the component type and subtype specified by your application.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516523-opendefaultcomponent

type ComponentInstanceRecord

type ComponentInstanceRecord [4]uint16

See: https://developer.apple.com/documentation/coreservices/componentinstancerecord ComponentInstanceRecord is opaque storage with the size and alignment C gives ComponentInstanceRecord: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type ComponentMPWorkFunctionHeaderRecord

type ComponentMPWorkFunctionHeaderRecord [8]uint16

See: https://developer.apple.com/documentation/coreservices/componentmpworkfunctionheaderrecord ComponentMPWorkFunctionHeaderRecord is opaque storage with the size and alignment C gives ComponentMPWorkFunctionHeaderRecord: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type ComponentMPWorkFunctionUPP

type ComponentMPWorkFunctionUPP = unsafe.Pointer

ComponentMPWorkFunctionUPP is represents a type used by the Image Codec API.

See: https://developer.apple.com/documentation/coreservices/componentmpworkfunctionupp

func NewComponentMPWorkFunctionUPP deprecated

func NewComponentMPWorkFunctionUPP(userRoutine unsafe.Pointer) ComponentMPWorkFunctionUPP

NewComponentMPWorkFunctionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516448-newcomponentmpworkfunctionupp

type ComponentParameters

type ComponentParameters [8]uint16

See: https://developer.apple.com/documentation/coreservices/componentparameters ComponentParameters is opaque storage with the size and alignment C gives ComponentParameters: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type ComponentPlatformInfo

type ComponentPlatformInfo [6]uint16

See: https://developer.apple.com/documentation/coreservices/componentplatforminfo ComponentPlatformInfo is opaque storage with the size and alignment C gives ComponentPlatformInfo: 12 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 12 into.

type ComponentPlatformInfoArray

type ComponentPlatformInfoArray [8]uint16

See: https://developer.apple.com/documentation/coreservices/componentplatforminfoarray ComponentPlatformInfoArray is opaque storage with the size and alignment C gives ComponentPlatformInfoArray: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type ComponentRecord

type ComponentRecord [4]uint16

See: https://developer.apple.com/documentation/coreservices/componentrecord ComponentRecord is opaque storage with the size and alignment C gives ComponentRecord: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type ComponentResource

type ComponentResource [22]uint16

See: https://developer.apple.com/documentation/coreservices/componentresource ComponentResource is opaque storage with the size and alignment C gives ComponentResource: 44 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 44 into.

type ComponentResourceExtension

type ComponentResourceExtension [5]uint16

See: https://developer.apple.com/documentation/coreservices/componentresourceextension ComponentResourceExtension is opaque storage with the size and alignment C gives ComponentResourceExtension: 10 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 10 into.

type ComponentResult

type ComponentResult = int32

ComponentResult is abst_ComponentResult.

See: https://developer.apple.com/documentation/coreservices/componentresult

func CallComponentCanDo deprecated

func CallComponentCanDo(ci ComponentInstance, ftnNumber int16) ComponentResult

CallComponentCanDo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516321-callcomponentcando

func CallComponentClose deprecated

func CallComponentClose(ci ComponentInstance, self ComponentInstance) ComponentResult

CallComponentClose.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516604-callcomponentclose

func CallComponentDispatch deprecated

func CallComponentDispatch(cp *ComponentParameters) ComponentResult

CallComponentDispatch.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516547-callcomponentdispatch

func CallComponentFunction deprecated

func CallComponentFunction(params *ComponentParameters, func_ ComponentFunctionUPP) ComponentResult

CallComponentFunction invokes the specified function of your component.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516603-callcomponentfunction

func CallComponentFunctionWithStorage deprecated

func CallComponentFunctionWithStorage(storage kernel.Handle, params *ComponentParameters, func_ ComponentFunctionUPP) ComponentResult

CallComponentFunctionWithStorage invokes the specified function of your component.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516610-callcomponentfunctionwithstorage

func CallComponentFunctionWithStorageProcInfo deprecated

func CallComponentFunctionWithStorageProcInfo(storage kernel.Handle, params *ComponentParameters, func_ unsafe.Pointer, funcProcInfo ProcInfoType) ComponentResult

CallComponentFunctionWithStorageProcInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516344-callcomponentfunctionwithstorage

func CallComponentGetMPWorkFunction deprecated

func CallComponentGetMPWorkFunction(ci ComponentInstance, workFunction unsafe.Pointer, refCon uintptr) ComponentResult

CallComponentGetMPWorkFunction.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516346-callcomponentgetmpworkfunction

func CallComponentGetPublicResource deprecated

func CallComponentGetPublicResource(ci ComponentInstance, resourceType uint32, resourceID int16, resource *kernel.Handle) ComponentResult

CallComponentGetPublicResource.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516354-callcomponentgetpublicresource

func CallComponentOpen deprecated

func CallComponentOpen(ci ComponentInstance, self ComponentInstance) ComponentResult

CallComponentOpen.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516529-callcomponentopen

func CallComponentRegister deprecated

func CallComponentRegister(ci ComponentInstance) ComponentResult

CallComponentRegister.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516385-callcomponentregister

func CallComponentTarget deprecated

func CallComponentTarget(ci ComponentInstance, target ComponentInstance) ComponentResult

CallComponentTarget.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516493-callcomponenttarget

func CallComponentUnregister deprecated

func CallComponentUnregister(ci ComponentInstance) ComponentResult

CallComponentUnregister.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516337-callcomponentunregister

func CallComponentVersion deprecated

func CallComponentVersion(ci ComponentInstance) ComponentResult

CallComponentVersion.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516489-callcomponentversion

func DelegateComponentCall deprecated

func DelegateComponentCall(originalParams *ComponentParameters, ci ComponentInstance) ComponentResult

DelegateComponentCall allows your component to pass on a request to a specified component.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516373-delegatecomponentcall

func InvokeComponentMPWorkFunctionUPP deprecated

func InvokeComponentMPWorkFunctionUPP(globalRefCon unsafe.Pointer, header ComponentMPWorkFunctionHeaderRecordPtr, userUPP ComponentMPWorkFunctionUPP) ComponentResult

InvokeComponentMPWorkFunctionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516356-invokecomponentmpworkfunctionupp

func InvokeComponentRoutineUPP deprecated

func InvokeComponentRoutineUPP(cp *ComponentParameters, componentStorage kernel.Handle, userUPP ComponentRoutineUPP) ComponentResult

InvokeComponentRoutineUPP calls your component routine callback function

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516654-invokecomponentroutineupp

type ComponentRoutineUPP

type ComponentRoutineUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/componentroutineupp

func NewComponentRoutineUPP deprecated

func NewComponentRoutineUPP(userRoutine unsafe.Pointer) ComponentRoutineUPP

NewComponentRoutineUPP creates a new universal procedure pointer (UPP) to a component routine callback function.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516579-newcomponentroutineupp

type ConstScriptCodeRunPtr

type ConstScriptCodeRunPtr = unsafe.Pointer

ConstScriptCodeRunPtr is defines a constant script code run pointer.

See: https://developer.apple.com/documentation/coreservices/constscriptcoderunptr

type ConstTextEncodingRunPtr

type ConstTextEncodingRunPtr = unsafe.Pointer

ConstTextEncodingRunPtr is defines a constant text encoding run pointer.

See: https://developer.apple.com/documentation/coreservices/consttextencodingrunptr

type ConstTextPtr

type ConstTextPtr = *uint8

ConstTextPtr is defines a constant text pointer.

See: https://developer.apple.com/documentation/coreservices/consttextptr

type ConstTextToUnicodeInfo

type ConstTextToUnicodeInfo = TextToUnicodeInfo

ConstTextToUnicodeInfo is defines a constant text to Unicode converter object.

See: https://developer.apple.com/documentation/coreservices/consttexttounicodeinfo

type ConstUniCharArrayPtr

type ConstUniCharArrayPtr = *uint16

ConstUniCharArrayPtr is defines a constant Unicode character array pointer.

See: https://developer.apple.com/documentation/coreservices/constunichararrayptr

type ConstUnicodeMappingPtr

type ConstUnicodeMappingPtr = unsafe.Pointer

ConstUnicodeMappingPtr is defines a constant Unicode mapping pointer.

See: https://developer.apple.com/documentation/coreservices/constunicodemappingptr

type ConstUnicodeToTextInfo

type ConstUnicodeToTextInfo = UnicodeToTextInfo

ConstUnicodeToTextInfo is defines a constant Unicode to text converter object.

See: https://developer.apple.com/documentation/coreservices/constunicodetotextinfo

type ContainerChunk

type ContainerChunk [6]uint16

See: https://developer.apple.com/documentation/coreservices/containerchunk ContainerChunk is opaque storage with the size and alignment C gives ContainerChunk: 12 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 12 into.

type CoreFoundationUnknown added in v0.5.1

type CoreFoundationUnknown int32
const (
	CoreFoundationUnknownErr CoreFoundationUnknown = -4960
)

func (CoreFoundationUnknown) String added in v0.5.1

func (e CoreFoundationUnknown) String() string

type CouldNotResolveDataRef

type CouldNotResolveDataRef int32
const (
	AuxiliaryExportDataUnavailable CouldNotResolveDataRef = -2058
	BadComponentType               CouldNotResolveDataRef = -2005
	BadDataRefIndex                CouldNotResolveDataRef = -2050
	BadEditIndex                   CouldNotResolveDataRef = -2033
	BadEditList                    CouldNotResolveDataRef = -2017
	BadImageDescription            CouldNotResolveDataRef = -2001
	BadPublicMovieAtom             CouldNotResolveDataRef = -2002
	BadTrackIndex                  CouldNotResolveDataRef = -2028
	// CantCreateSingleForkFile: The file to be created already exists.
	CantCreateSingleForkFile      CouldNotResolveDataRef = -2022
	CantEnableTrack               CouldNotResolveDataRef = -2035
	CantFindHandler               CouldNotResolveDataRef = -2003
	CantOpenHandler               CouldNotResolveDataRef = -2004
	CantPutPublicMovieAtom        CouldNotResolveDataRef = -2016
	CouldNotResolveDataRefValue   CouldNotResolveDataRef = -2000
	CouldNotUseAnExistingSample   CouldNotResolveDataRef = -2052
	DataAlreadyClosed             CouldNotResolveDataRef = -2045
	DataAlreadyOpenForWrite       CouldNotResolveDataRef = -2044
	DataNoDataRef                 CouldNotResolveDataRef = -2047
	DataNotOpenForRead            CouldNotResolveDataRef = -2042
	DataNotOpenForWrite           CouldNotResolveDataRef = -2043
	EndOfDataReached              CouldNotResolveDataRef = -2046
	FeatureUnsupported            CouldNotResolveDataRef = -2053
	GWorldsNotSameDepthAndSizeErr CouldNotResolveDataRef = -2066
	InternalQuickTimeError        CouldNotResolveDataRef = -2034
	InvalidChunkCache             CouldNotResolveDataRef = -2040
	InvalidChunkNum               CouldNotResolveDataRef = -2038
	InvalidDataRef                CouldNotResolveDataRef = -2012
	InvalidDataRefContainer       CouldNotResolveDataRef = -2049
	InvalidDuration               CouldNotResolveDataRef = -2014
	InvalidEditState              CouldNotResolveDataRef = -2023
	InvalidHandler                CouldNotResolveDataRef = -2013
	InvalidImageIndexErr          CouldNotResolveDataRef = -2068
	InvalidMedia                  CouldNotResolveDataRef = -2008
	InvalidMovie                  CouldNotResolveDataRef = -2010
	InvalidRect                   CouldNotResolveDataRef = -2036
	InvalidSampleDescIndex        CouldNotResolveDataRef = -2039
	InvalidSampleDescription      CouldNotResolveDataRef = -2041
	InvalidSampleNum              CouldNotResolveDataRef = -2037
	InvalidSampleTable            CouldNotResolveDataRef = -2011
	InvalidSpriteIDErr            CouldNotResolveDataRef = -2069
	InvalidSpriteIndexErr         CouldNotResolveDataRef = -2067
	InvalidSpritePropertyErr      CouldNotResolveDataRef = -2065
	InvalidSpriteWorldPropertyErr CouldNotResolveDataRef = -2064
	InvalidTime                   CouldNotResolveDataRef = -2015
	InvalidTrack                  CouldNotResolveDataRef = -2009
	MaxSizeToGrowTooSmall         CouldNotResolveDataRef = -2027
	MediaTypesDontMatch           CouldNotResolveDataRef = -2018
	MissingRequiredParameterErr   CouldNotResolveDataRef = -2063
	MovieTextNotFoundErr          CouldNotResolveDataRef = -2062
	MovieToolboxUninitialized     CouldNotResolveDataRef = -2020
	NoDataHandler                 CouldNotResolveDataRef = -2007
	NoDefaultDataRef              CouldNotResolveDataRef = -2051
	NoMediaHandler                CouldNotResolveDataRef = -2006
	NoMovieFound                  CouldNotResolveDataRef = -2048
	// NoRecordOfApp: A replica of the movieToolboxUninitialized error.
	NoRecordOfApp                  CouldNotResolveDataRef = -2020
	NoSoundTrackInMovieErr         CouldNotResolveDataRef = -2055
	NoSourceTreeFoundErr           CouldNotResolveDataRef = -2060
	NoVideoTrackInMovieErr         CouldNotResolveDataRef = -2054
	NonMatchingEditState           CouldNotResolveDataRef = -2024
	ProgressProcAborted            CouldNotResolveDataRef = -2019
	SamplesAlreadyInMediaErr       CouldNotResolveDataRef = -2059
	SoundSupportNotAvailableErr    CouldNotResolveDataRef = -2056
	SourceNotFoundErr              CouldNotResolveDataRef = -2061
	StaleEditState                 CouldNotResolveDataRef = -2025
	TimeNotInMedia                 CouldNotResolveDataRef = -2032
	TimeNotInTrack                 CouldNotResolveDataRef = -2031
	TrackIDNotFound                CouldNotResolveDataRef = -2029
	TrackNotInMovie                CouldNotResolveDataRef = -2030
	UnsupportedAuxiliaryImportData CouldNotResolveDataRef = -2057
	UserDataItemNotFound           CouldNotResolveDataRef = -2026
	WfFileNotFound                 CouldNotResolveDataRef = -2021
)

func (CouldNotResolveDataRef) String

func (e CouldNotResolveDataRef) String() string

type Curr added in v0.5.1

type Curr uint32
const (
	CurrLeadingZ  Curr = 128
	CurrNegSym    Curr = 32
	CurrSymLead   Curr = 16
	CurrTrailingZ Curr = 64
)

func (Curr) String added in v0.5.1

func (e Curr) String() string

type CustomBadgeResource

type CustomBadgeResource [14]uint16

See: https://developer.apple.com/documentation/coreservices/custombadgeresource CustomBadgeResource is opaque storage with the size and alignment C gives CustomBadgeResource: 28 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 28 into.

type DCSDictionaryRef

type DCSDictionaryRef uintptr

DCSDictionaryRef is an opaque object that represents a dictionary file.

See: https://developer.apple.com/documentation/coreservices/dcsdictionaryref

type DInfo

type DInfo [8]uint16

See: https://developer.apple.com/documentation/coreservices/dinfo DInfo is opaque storage with the size and alignment C gives DInfo: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type DXInfo

type DXInfo [8]uint16

See: https://developer.apple.com/documentation/coreservices/dxinfo DXInfo is opaque storage with the size and alignment C gives DXInfo: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type DateCacheRecord

type DateCacheRecord [256]uint16

See: https://developer.apple.com/documentation/coreservices/datecacherecord DateCacheRecord is opaque storage with the size and alignment C gives DateCacheRecord: 512 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 512 into.

type DateTimeRec

type DateTimeRec [7]uint16

See: https://developer.apple.com/documentation/coreservices/datetimerec DateTimeRec is opaque storage with the size and alignment C gives DateTimeRec: 14 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 14 into.

type Dcm

type Dcm int32
const (
	DcmBadDataSizeErr       Dcm = -7117
	DcmBadDictionaryErr     Dcm = -7102
	DcmBadFeatureErr        Dcm = -7124
	DcmBadFieldInfoErr      Dcm = -7111
	DcmBadFieldTypeErr      Dcm = -7112
	DcmBadFindMethodErr     Dcm = -7118
	DcmBadKeyErr            Dcm = -7115
	DcmBadPropertyErr       Dcm = -7119
	DcmBlockFullErr         Dcm = -7107
	DcmBufferOverflowErr    Dcm = -7127
	DcmDictionaryBusyErr    Dcm = -7105
	DcmDictionaryNotOpenErr Dcm = -7104
	DcmDupRecordErr         Dcm = -7109
	DcmIterationCompleteErr Dcm = -7126
	DcmNecessaryFieldErr    Dcm = -7110
	DcmNoAccessMethodErr    Dcm = -7122
	DcmNoFieldErr           Dcm = -7113
	DcmNoRecordErr          Dcm = -7108
	DcmNotDictionaryErr     Dcm = -7101
	DcmParamErr             Dcm = -7100
	DcmPermissionErr        Dcm = -7103
	DcmProtectedErr         Dcm = -7121
	DcmTooManyKeyErr        Dcm = -7116
)

func (Dcm) String

func (e Dcm) String() string

type DdpSktErr

type DdpSktErr int32
const (
	DdpLenErr      DdpSktErr = -92
	DdpSktErrValue DdpSktErr = -91
	ExcessCollsns  DdpSktErr = -95
	LapProtErr     DdpSktErr = -94
	NoBridgeErr    DdpSktErr = -93
	PortInUse      DdpSktErr = -97
	PortNotCf      DdpSktErr = -98
	PortNotPwr     DdpSktErr = -96
)

func (DdpSktErr) String

func (e DdpSktErr) String() string

type DebugAssertOutputHandlerUPP

type DebugAssertOutputHandlerUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/debugassertoutputhandlerupp

func NewDebugAssertOutputHandlerUPP deprecated

func NewDebugAssertOutputHandlerUPP(userRoutine unsafe.Pointer) DebugAssertOutputHandlerUPP

NewDebugAssertOutputHandlerUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517735-newdebugassertoutputhandlerupp

type DebugComponentCallbackUPP

type DebugComponentCallbackUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/debugcomponentcallbackupp

func NewDebugComponentCallbackUPP deprecated

func NewDebugComponentCallbackUPP(userRoutine unsafe.Pointer) DebugComponentCallbackUPP

NewDebugComponentCallbackUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1517764-newdebugcomponentcallbackupp

type DebuggerDisposeThreadUPP

type DebuggerDisposeThreadUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/debuggerdisposethreadupp

func NewDebuggerDisposeThreadUPP deprecated

func NewDebuggerDisposeThreadUPP(userRoutine unsafe.Pointer) DebuggerDisposeThreadUPP

NewDebuggerDisposeThreadUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574285-newdebuggerdisposethreadupp

type DebuggerNewThreadUPP

type DebuggerNewThreadUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/debuggernewthreadupp

func NewDebuggerNewThreadUPP deprecated

func NewDebuggerNewThreadUPP(userRoutine unsafe.Pointer) DebuggerNewThreadUPP

NewDebuggerNewThreadUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574208-newdebuggernewthreadupp

type DebuggerThreadSchedulerUPP

type DebuggerThreadSchedulerUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/debuggerthreadschedulerupp

func NewDebuggerThreadSchedulerUPP deprecated

func NewDebuggerThreadSchedulerUPP(userRoutine unsafe.Pointer) DebuggerThreadSchedulerUPP

NewDebuggerThreadSchedulerUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574284-newdebuggerthreadschedulerupp

type Debugging

type Debugging int32
const (
	DebuggingDuplicateOptionErr    Debugging = -13882
	DebuggingDuplicateSignatureErr Debugging = -13881
	DebuggingExecutionContextErr   Debugging = -13880
	DebuggingInvalidNameErr        Debugging = -13885
	DebuggingInvalidOptionErr      Debugging = -13884
	DebuggingInvalidSignatureErr   Debugging = -13883
	DebuggingNoCallbackErr         Debugging = -13886
	DebuggingNoMatchErr            Debugging = -13887
)

func (Debugging) String

func (e Debugging) String() string

type Decform

type Decform [2]uint16

See: https://developer.apple.com/documentation/coreservices/decform Decform is opaque storage with the size and alignment C gives decform: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

type Decimal

type Decimal [21]uint16

See: https://developer.apple.com/documentation/coreservices/decimal Decimal is opaque storage with the size and alignment C gives decimal: 42 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 42 into.

type DefaultComponent added in v0.5.1

type DefaultComponent uint32
const (
	// Deprecated.
	DefaultComponentAnyFlags DefaultComponent = 1
	// Deprecated.
	DefaultComponentAnyFlagsAnyManufacturer DefaultComponent = 3
	// Deprecated.
	DefaultComponentAnyFlagsAnyManufacturerAnySubType DefaultComponent = 7
	// Deprecated.
	DefaultComponentAnyManufacturer DefaultComponent = 2
	// Deprecated.
	DefaultComponentAnySubType DefaultComponent = 4
	// Deprecated.
	DefaultComponentIdentical DefaultComponent = 0
)

func (DefaultComponent) String added in v0.5.1

func (e DefaultComponent) String() string

type DefaultPhysicalEntry added in v0.5.1

type DefaultPhysicalEntry uint32
const (
	// Deprecated.
	DefaultPhysicalEntryCount DefaultPhysicalEntry = 8
)

func (DefaultPhysicalEntry) String added in v0.5.1

func (e DefaultPhysicalEntry) String() string

type DeferredTask

type DeferredTask [18]uint16

See: https://developer.apple.com/documentation/coreservices/deferredtask DeferredTask is opaque storage with the size and alignment C gives DeferredTask: 36 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 36 into.

type DeferredTaskUPP

type DeferredTaskUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/deferredtaskupp

func NewDeferredTaskUPP deprecated

func NewDeferredTaskUPP(userRoutine unsafe.Pointer) DeferredTaskUPP

NewDeferredTaskUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1533385-newdeferredtaskupp

type DelimPad added in v0.5.1

type DelimPad int32
const (
	// Deprecated.
	DelimPadValue DelimPad = -2
	// Deprecated.
	TokenCarat DelimPad = 55
	// Deprecated.
	TokenTilda DelimPad = 44
)

func (DelimPad) String added in v0.5.1

func (e DelimPad) String() string

type DescType

type DescType = uint32

DescType is specifies the type of the data stored in an AEDesc descriptor.

See: https://developer.apple.com/documentation/coreservices/desctype

type DiaeresisUprY added in v0.5.1

type DiaeresisUprY uint32
const (
	// Deprecated.
	AcuteUprA DiaeresisUprY = 0xe7
	// Deprecated.
	AcuteUprI DiaeresisUprY = 0xea
	// Deprecated.
	AcuteUprO DiaeresisUprY = 0xee
	// Deprecated.
	AcuteUprU DiaeresisUprY = 0xf2
	AppleLogo DiaeresisUprY = 0xf0
	// Deprecated.
	BaseDblQuote DiaeresisUprY = 0xe3
	// Deprecated.
	BaseSingQuote DiaeresisUprY = 0xe2
	// Deprecated.
	BreveMark DiaeresisUprY = 0xf9
	// Deprecated.
	Cedilla DiaeresisUprY = 0xfc
	// Deprecated.
	CenteredDot DiaeresisUprY = 0xe1
	// Deprecated.
	Circumflex DiaeresisUprY = 0xf6
	// Deprecated.
	CircumflexUprA DiaeresisUprY = 0xe5
	// Deprecated.
	CircumflexUprE DiaeresisUprY = 0xe6
	// Deprecated.
	CircumflexUprI DiaeresisUprY = 0xeb
	// Deprecated.
	CircumflexUprO DiaeresisUprY = 0xef
	// Deprecated.
	CircumflexUprU DiaeresisUprY = 0xf3
	// Deprecated.
	DblDagger DiaeresisUprY = 0xe0
	// Deprecated.
	DiaeresisUprE DiaeresisUprY = 0xe8
	// Deprecated.
	DiaeresisUprI DiaeresisUprY = 0xec
	// Deprecated.
	DiaeresisUprYValue DiaeresisUprY = 0xd9
	// Deprecated.
	DotlessLwrI DiaeresisUprY = 0xf5
	// Deprecated.
	DoubleAcute DiaeresisUprY = 0xfd
	// Deprecated.
	FiLigature DiaeresisUprY = 0xde
	// Deprecated.
	FlLigature DiaeresisUprY = 0xdf
	// Deprecated.
	Fraction DiaeresisUprY = 0xda
	// Deprecated.
	GraveUprE DiaeresisUprY = 0xe9
	// Deprecated.
	GraveUprI DiaeresisUprY = 0xed
	// Deprecated.
	GraveUprO DiaeresisUprY = 0xf1
	// Deprecated.
	GraveUprU DiaeresisUprY = 0xf4
	// Deprecated.
	Hachek DiaeresisUprY = 0xff
	// Deprecated.
	IntlCurrency DiaeresisUprY = 0xdb
	// Deprecated.
	LeftSingGuillemet DiaeresisUprY = 0xdc
	// Deprecated.
	Macron DiaeresisUprY = 0xf8
	// Deprecated.
	Ogonek DiaeresisUprY = 0xfe
	// Deprecated.
	OverDot DiaeresisUprY = 0xfa
	// Deprecated.
	PerThousand DiaeresisUprY = 0xe4
	// Deprecated.
	RightSingGuillemet DiaeresisUprY = 0xdd
	// Deprecated.
	RingMark DiaeresisUprY = 0xfb
	// Deprecated.
	Tilde DiaeresisUprY = 0xf7
)

func (DiaeresisUprY) String added in v0.5.1

func (e DiaeresisUprY) String() string

type DialogNoTimeout added in v0.5.1

type DialogNoTimeout int32
const (
	DialogNoTimeoutErr DialogNoTimeout = -5640
)

func (DialogNoTimeout) String added in v0.5.1

func (e DialogNoTimeout) String() string

type DigiUnimpErr

type DigiUnimpErr int32
const (
	// BadCallOrderErr: A status call was made before being set up first.
	BadCallOrderErr DigiUnimpErr = -2209
	// BadDepthErr: Can't digitize into the requested pixel depth.
	BadDepthErr DigiUnimpErr = -2207
	// DigiUnimpErrValue: Digitizer feature is unimplemented.
	DigiUnimpErrValue DigiUnimpErr = -2201
	// MatrixErr: Bad matrix; the digitizer did nothing.
	MatrixErr DigiUnimpErr = -2203
	// NoDMAErr: Can't do DMA digitizing; that is, can't go to the requested destination.
	NoDMAErr DigiUnimpErr = -2208
	// NoMoreKeyColorsErr: All the key indexes are in use.
	NoMoreKeyColorsErr DigiUnimpErr = -2205
	// NotExactMatrixErr: Warning of a bad matrix; the digitizer did its best.
	NotExactMatrixErr DigiUnimpErr = -2204
	// NotExactSizeErr: Can't digitize to the exact size requested.
	NotExactSizeErr DigiUnimpErr = -2206
	// QtParamErr: Bad input parameter (out of range, for example).
	QtParamErr DigiUnimpErr = -2202
)

func (DigiUnimpErr) String

func (e DigiUnimpErr) String() string

type DsBadLibrary

type DsBadLibrary uint32
const (
	DsBadLibraryValue  DsBadLibrary = 1010
	DsMixedModeFailure DsBadLibrary = 1011
)

func (DsBadLibrary) String added in v0.6.17

func (e DsBadLibrary) String() string

type DsBusError

type DsBusError uint32
const (
	DsAddressErr    DsBusError = 2
	DsBusErrorValue DsBusError = 1
	DsChkErr        DsBusError = 5
	DsCoreErr       DsBusError = 12
	DsFPErr         DsBusError = 16
	DsIOCoreErr     DsBusError = 14
	DsIllInstErr    DsBusError = 3
	DsIrqErr        DsBusError = 13
	DsLineAErr      DsBusError = 9
	DsLineFErr      DsBusError = 10
	DsLoadErr       DsBusError = 15
	DsMiscErr       DsBusError = 11
	DsNoPackErr     DsBusError = 17
	DsNoPk1         DsBusError = 18
	DsNoPk2         DsBusError = 19
	DsOvflowErr     DsBusError = 6
	DsPrivErr       DsBusError = 7
	DsTraceErr      DsBusError = 8
	DsZeroDivErr    DsBusError = 4
)

func (DsBusError) String added in v0.6.17

func (e DsBusError) String() string

type DsNoExtsMacsBug

type DsNoExtsMacsBug int32
const (
	DsDisassemblerInstalled DsNoExtsMacsBug = -11
	DsExtensionsDisabled    DsNoExtsMacsBug = -13
	DsGreeting              DsNoExtsMacsBug = 40
	DsMacsBugInstalled      DsNoExtsMacsBug = -10
	DsNoExtsDisassembler    DsNoExtsMacsBug = -2
	DsNoExtsMacsBugValue    DsNoExtsMacsBug = -1
	DsSysErr                DsNoExtsMacsBug = 32767
	WDEFNFnd                DsNoExtsMacsBug = 87
)

func (DsNoExtsMacsBug) String

func (e DsNoExtsMacsBug) String() string

type DsNoFPU

type DsNoFPU uint32
const (
	Ds32BitMode                       DsNoFPU = 103
	DsBadPatch                        DsNoFPU = 99
	DsBufPtrTooLow                    DsNoFPU = 106
	DsCantHoldSystemHeap              DsNoFPU = 114
	DsDirtyDisk                       DsNoFPU = 20004
	DsForcedQuit                      DsNoFPU = 20002
	DsGibblyMovedToDisabledFolder     DsNoFPU = 117
	DsLostConnectionToNetworkDisk     DsNoFPU = 121
	DsMBATAPISysError                 DsNoFPU = 29203
	DsMBATASysError                   DsNoFPU = 29202
	DsMBExternFlpySysError            DsNoFPU = 29204
	DsMBFlpySysError                  DsNoFPU = 29201
	DsMBSysError                      DsNoFPU = 29200
	DsMacOSROMVersionTooOld           DsNoFPU = 120
	DsMustUseFCBAccessors             DsNoFPU = 119
	DsNeedToWriteBootBlocks           DsNoFPU = 104
	DsNoFPUValue                      DsNoFPU = 90
	DsNoPatch                         DsNoFPU = 98
	DsNotEnoughRAMToBoot              DsNoFPU = 105
	DsOldSystem                       DsNoFPU = 102
	DsPCCardATASysError               DsNoFPU = 29205
	DsParityErr                       DsNoFPU = 101
	DsRAMDiskTooBig                   DsNoFPU = 122
	DsReinsert                        DsNoFPU = 30
	DsRemoveDisk                      DsNoFPU = 20003
	DsSCSIWarn                        DsNoFPU = 20010
	DsShutDownOrRestart               DsNoFPU = 20000
	DsShutDownOrResume                DsNoFPU = 20109
	DsSwitchOffOrRestart              DsNoFPU = 20001
	DsSystemRequiresPowerPC           DsNoFPU = 116
	DsUnBootableSystem                DsNoFPU = 118
	DsVMBadBackingStore               DsNoFPU = 113
	DsVMDeferredFuncTableFull         DsNoFPU = 112
	DsWriteToSupervisorStackGuardPage DsNoFPU = 128
	ShutDownAlert                     DsNoFPU = 42
)

func (DsNoFPU) String

func (e DsNoFPU) String() string

type DsNoPk3

type DsNoPk3 uint32
const (
	DsBadLaunch      DsNoPk3 = 26
	DsBadPatchHeader DsNoPk3 = 83
	DsBadSANEOpcode  DsNoPk3 = 81
	DsBadSlotInt     DsNoPk3 = 51
	DsCDEFNotFound   DsNoPk3 = 88
	DsFSErr          DsNoPk3 = 27
	DsFinderErr      DsNoPk3 = 41
	DsHMenuFindErr   DsNoPk3 = 86
	DsMBarNFnd       DsNoPk3 = 85
	DsMDEFNotFound   DsNoPk3 = 89
	DsMemFullErr     DsNoPk3 = 25
	DsNoPk3Value     DsNoPk3 = 20
	DsNoPk4          DsNoPk3 = 21
	DsNoPk5          DsNoPk3 = 22
	DsNoPk6          DsNoPk3 = 23
	DsNoPk7          DsNoPk3 = 24
	DsStknHeap       DsNoPk3 = 28
	DsWDEFNotFound   DsNoPk3 = 87
	MenuPrgErr       DsNoPk3 = 84
	NegZcbFreeErr    DsNoPk3 = 33
)

func (DsNoPk3) String

func (e DsNoPk3) String() string

type DummyType added in v0.5.1

type DummyType uint32
const (
	// Deprecated.
	DrvQType DummyType = 3
	// Deprecated.
	DtQType DummyType = 7
	// Deprecated.
	DummyTypeValue DummyType = 0
	// Deprecated.
	EvType DummyType = 4
	// Deprecated.
	FsQType DummyType = 5
	// Deprecated.
	IoQType DummyType = 2
	// Deprecated.
	NmType DummyType = 8
	// Deprecated.
	SIQType DummyType = 6
	// Deprecated.
	VType DummyType = 1
)

func (DummyType) String added in v0.5.1

func (e DummyType) String() string

type Duration added in v0.5.1

type Duration int32
const (
	// Deprecated.
	DurationDay Duration = 86400000
	// Deprecated.
	DurationForever Duration = 0x7fffffff
	// Deprecated.
	DurationHour Duration = 3600000
	// Deprecated.
	DurationMicrosecond Duration = -1
	// Deprecated.
	DurationMillisecond Duration = 1
	// Deprecated.
	DurationMinute Duration = 60000
	// Deprecated.
	DurationNoWait Duration = 0
	// Deprecated.
	DurationSecond Duration = 1000
)

func (Duration) String added in v0.5.1

func (e Duration) String() string

type ELenErr

type ELenErr int32
const (
	ELenErrValue ELenErr = -92
	EMultiErr    ELenErr = -91
)

func (ELenErr) String

func (e ELenErr) String() string

type EScheme added in v0.5.1

type EScheme uint32
const (
	ESchemeValue EScheme = 'e'<<24 | 's'<<16 | 'c'<<8 | 'h' // 'esch'
	EurlAFP      EScheme = 'a'<<24 | 'f'<<16 | 'p'<<8 | ' ' // 'afp '
	EurlAT       EScheme = 'a'<<24 | 't'<<16 | ' '<<8 | ' ' // 'at  '
	EurlEPPC     EScheme = 'e'<<24 | 'p'<<16 | 'p'<<8 | 'c' // 'eppc'
	EurlFTP      EScheme = 'f'<<24 | 't'<<16 | 'p'<<8 | ' ' // 'ftp '
	EurlFile     EScheme = 'f'<<24 | 'i'<<16 | 'l'<<8 | 'e' // 'file'
	EurlGopher   EScheme = 'g'<<24 | 'p'<<16 | 'h'<<8 | 'r' // 'gphr'
	EurlHTTP     EScheme = 'h'<<24 | 't'<<16 | 't'<<8 | 'p' // 'http'
	EurlHTTPS    EScheme = 'h'<<24 | 't'<<16 | 'p'<<8 | 's' // 'htps'
	EurlIMAP     EScheme = 'i'<<24 | 'm'<<16 | 'a'<<8 | 'p' // 'imap'
	EurlLDAP     EScheme = 'u'<<24 | 'l'<<16 | 'd'<<8 | 'p' // 'uldp'
	EurlLaunch   EScheme = 'l'<<24 | 'a'<<16 | 'u'<<8 | 'n' // 'laun'
	EurlMail     EScheme = 'm'<<24 | 'a'<<16 | 'i'<<8 | 'l' // 'mail'
	EurlMailbox  EScheme = 'm'<<24 | 'b'<<16 | 'o'<<8 | 'x' // 'mbox'
	EurlMessage  EScheme = 'm'<<24 | 'e'<<16 | 's'<<8 | 's' // 'mess'
	EurlMulti    EScheme = 'm'<<24 | 'u'<<16 | 'l'<<8 | 't' // 'mult'
	EurlNFS      EScheme = 'u'<<24 | 'n'<<16 | 'f'<<8 | 's' // 'unfs'
	EurlNNTP     EScheme = 'n'<<24 | 'n'<<16 | 't'<<8 | 'p' // 'nntp'
	EurlNews     EScheme = 'n'<<24 | 'e'<<16 | 'w'<<8 | 's' // 'news'
	EurlPOP      EScheme = 'u'<<24 | 'p'<<16 | 'o'<<8 | 'p' // 'upop'
	EurlRTSP     EScheme = 'r'<<24 | 't'<<16 | 's'<<8 | 'p' // 'rtsp'
	EurlSNews    EScheme = 's'<<24 | 'n'<<16 | 'w'<<8 | 's' // 'snws'
	EurlTelnet   EScheme = 't'<<24 | 'l'<<16 | 'n'<<8 | 't' // 'tlnt'
	EurlUnknown  EScheme = 'u'<<24 | 'r'<<16 | 'l'<<8 | '?' // 'url?'
)

func (EScheme) String added in v0.5.1

func (e EScheme) String() string

type EWS added in v0.5.1

type EWS uint32
const (
	// EWSArrayType: Maps to [CFArrayRef].
	EWSArrayType EWS = 8
	// EWSBooleanType: Maps to [CFBooleanRef].
	EWSBooleanType EWS = 2
	// EWSDataType: Maps to [CFDataRef].
	EWSDataType EWS = 7
	// EWSDateType: Maps to [CFDateRef].
	EWSDateType EWS = 6
	// EWSDictionaryType: Maps to [CFDictionaryRef].
	EWSDictionaryType EWS = 9
	// EWSDoubleType: Maps to [CFNumberRef] for long, double, or real numbers.
	EWSDoubleType EWS = 4
	// EWSIntegerType: Maps to [CFNumberRef] for 8, 16, 32 bit integers.
	EWSIntegerType EWS = 3
	// EWSNullType: Maps to [CFNullRef].
	EWSNullType EWS = 1
	// EWSStringType: Maps to [CFStringRef].
	EWSStringType EWS = 5
	// EWSUnknownType: No mapping is known for this type.
	EWSUnknownType EWS = 0
)

func (EWS) String added in v0.5.1

func (e EWS) String() string

type EditionMgrInitErr

type EditionMgrInitErr int32
const (
	BadEditionFileErr       EditionMgrInitErr = -453
	BadSectionErr           EditionMgrInitErr = -451
	BadSubPartErr           EditionMgrInitErr = -454
	ContainerAlreadyOpenWrn EditionMgrInitErr = -462
	ContainerNotFoundWrn    EditionMgrInitErr = -461
	EditionMgrInitErrValue  EditionMgrInitErr = -450
	MultiplePublisherWrn    EditionMgrInitErr = -460
	NotRegisteredSectionErr EditionMgrInitErr = -452
	NotThePublisherWrn      EditionMgrInitErr = -463
)

func (EditionMgrInitErr) String

func (e EditionMgrInitErr) String() string

type EraField added in v0.5.1

type EraField uint32
const (
	DayField        EraField = 3
	DayOfWeekField  EraField = 7
	DayOfYearField  EraField = 8
	EraFieldValue   EraField = 0
	HourField       EraField = 4
	MinuteField     EraField = 5
	MonthField      EraField = 2
	PmField         EraField = 10
	Res1Field       EraField = 11
	Res2Field       EraField = 12
	Res3Field       EraField = 13
	SecondField     EraField = 6
	WeekOfYearField EraField = 9
	YearField       EraField = 1
)

func (EraField) String added in v0.5.1

func (e EraField) String() string

type EraMask added in v0.5.1

type EraMask uint32
const (
	DateStdMask    EraMask = 0x7f
	DayMask        EraMask = 0x8
	DayOfWeekMask  EraMask = 0x80
	DayOfYearMask  EraMask = 0x100
	EraMaskValue   EraMask = 0x1
	HourMask       EraMask = 0x10
	MinuteMask     EraMask = 0x20
	MonthMask      EraMask = 0x4
	PmMask         EraMask = 0x400
	SecondMask     EraMask = 0x40
	WeekOfYearMask EraMask = 0x200
	YearMask       EraMask = 0x2
)

func (EraMask) String added in v0.5.1

func (e EraMask) String() string

type ErrAEBadKeyForm

type ErrAEBadKeyForm int32
const (
	// ErrAEBadKeyFormValue: Invalid key form.
	ErrAEBadKeyFormValue ErrAEBadKeyForm = -10002
	// ErrAECantHandleClass: The Apple event handler can’t handle objectsof this class.
	ErrAECantHandleClass ErrAEBadKeyForm = -10010
	// ErrAECantPutThatThere: In make new, duplicate, etc.
	ErrAECantPutThatThere ErrAEBadKeyForm = -10024
	// ErrAECantSupplyType: Can’t supply the requested descriptortype for the data.
	ErrAECantSupplyType ErrAEBadKeyForm = -10009
	// ErrAECantUndo: Can’t undo the previous Apple event oruser action.
	ErrAECantUndo ErrAEBadKeyForm = -10015
	// ErrAEEventFailed: Apple event handler failed.
	ErrAEEventFailed ErrAEBadKeyForm = -10000
	// ErrAEInTransaction: Couldn’t handle this command because itwasn’t part of the current transaction.
	ErrAEInTransaction ErrAEBadKeyForm = -10011
	// ErrAEIndexTooLarge: The index of the event is too large to bevalid.
	ErrAEIndexTooLarge ErrAEBadKeyForm = -10007
	ErrAELocalOnly     ErrAEBadKeyForm = -10016
	// ErrAENoSuchTransaction: The transaction to which this command belongedisn’t a valid transaction.
	ErrAENoSuchTransaction ErrAEBadKeyForm = -10012
	// ErrAENoUserSelection: There is no user selection.
	ErrAENoUserSelection ErrAEBadKeyForm = -10013
	// ErrAENotASingleObject: Handler only handles single objects.
	ErrAENotASingleObject ErrAEBadKeyForm = -10014
	// ErrAENotAnElement: The specified object is a property, notan element.
	ErrAENotAnElement ErrAEBadKeyForm = -10008
	// ErrAENotAnEnumMember: Enumerated value in [SetData] is notallowed for this property
	ErrAENotAnEnumMember ErrAEBadKeyForm = -10023
	// ErrAENotModifiable: Can't set <object or data> to <object or data>.
	ErrAENotModifiable ErrAEBadKeyForm = -10003
	// ErrAEPrivilegeError: A privilege violation occurred.
	ErrAEPrivilegeError ErrAEBadKeyForm = -10004
	// ErrAEPropertiesClash: Illegal combination of properties settingsfor SetData, make new, or duplicate
	ErrAEPropertiesClash ErrAEBadKeyForm = -10025
	// ErrAEReadDenied: The read operation was not allowed.
	ErrAEReadDenied ErrAEBadKeyForm = -10005
	// ErrAETypeError: A descriptor type mismatch occurred.
	ErrAETypeError ErrAEBadKeyForm = -10001
	// ErrAEWriteDenied: Can't set <object or data> to <object or data>.
	ErrAEWriteDenied ErrAEBadKeyForm = -10006
)

func (ErrAEBadKeyForm) String added in v0.6.17

func (e ErrAEBadKeyForm) String() string

type ErrAECoercionFail

type ErrAECoercionFail int32
const (
	// ErrAEAccessorNotFound: There is no object accessor function forthe specified object class and container type
	ErrAEAccessorNotFound ErrAECoercionFail = -1723
	// ErrAEBadListItem: Operation involving a list item failed
	ErrAEBadListItem ErrAECoercionFail = -1705
	// ErrAEBadTestKey: The descriptor in a test key is neithera comparison descriptor nor a logical descriptor
	ErrAEBadTestKey ErrAECoercionFail = -1726
	// ErrAEBufferTooSmall: Buffer for [AEFlattenDesc] toosmall
	ErrAEBufferTooSmall ErrAECoercionFail = -1741
	// ErrAEBuildSyntaxError: [AEBuildDesc] andrelated functions detected a syntax error
	ErrAEBuildSyntaxError ErrAECoercionFail = -1740
	// ErrAECoercionFailValue: Data could not be coerced to the requesteddescriptor type
	ErrAECoercionFailValue ErrAECoercionFail = -1700
	// ErrAECorruptData: Data in an Apple event could not be read
	ErrAECorruptData ErrAECoercionFail = -1702
	// ErrAEDescIsNull: Attempt to perform an invalid operationon a null descriptor
	ErrAEDescIsNull ErrAECoercionFail = -1739
	// ErrAEDescNotFound: Descriptor was not found
	ErrAEDescNotFound ErrAECoercionFail = -1701
	// ErrAEDuplicateHandler: Attempt to install handler in table foridentical class and ID (1.1 or greater)
	ErrAEDuplicateHandler ErrAECoercionFail = -1736
	// ErrAEEmptyListContainer: The container for an Apple event objectis specified by an empty list
	ErrAEEmptyListContainer ErrAECoercionFail = -1730
	// ErrAEEventFiltered: Event has been filtered and should not bepropagated (1.1 or greater)
	ErrAEEventFiltered ErrAECoercionFail = -1735
	// ErrAEEventNotHandled: Event wasn’t handled by an Apple eventhandler
	ErrAEEventNotHandled ErrAECoercionFail = -1708
	// ErrAEHandlerNotFound: No handler found for an Apple event
	ErrAEHandlerNotFound ErrAECoercionFail = -1717
	// ErrAEIllegalIndex: Not a valid list index
	ErrAEIllegalIndex ErrAECoercionFail = -1719
	// ErrAEImpossibleRange: The range is not valid because it is impossiblefor a range to include the first and last objects that were specified;an example is a range in which the offset of the first object is greaterthan the offset of the last object
	ErrAEImpossibleRange ErrAECoercionFail = -1720
	// ErrAENegativeCount: An object-counting function returned a negativeresult
	ErrAENegativeCount ErrAECoercionFail = -1729
	// ErrAENewerVersion: Need a newer version of the Apple EventManager
	ErrAENewerVersion ErrAECoercionFail = -1706
	// ErrAENoSuchLogical: The logical operator in a logical descriptoris not `kAEAND`, `kAEOR`,or `kAENOT`
	ErrAENoSuchLogical ErrAECoercionFail = -1725
	// ErrAENoSuchObject: Runtime resolution of an object failed.
	ErrAENoSuchObject ErrAECoercionFail = -1728
	// ErrAENoUserInteraction: No user interaction allowed
	ErrAENoUserInteraction ErrAECoercionFail = -1713
	// ErrAENotAEDesc: Not a valid descriptor
	ErrAENotAEDesc ErrAECoercionFail = -1704
	// ErrAENotASpecialFunction: Wrong keyword for a special function
	ErrAENotASpecialFunction ErrAECoercionFail = -1714
	ErrAENotAnObjSpec        ErrAECoercionFail = -1727
	// ErrAENotAppleEvent: The event is not in AppleEvent format.
	ErrAENotAppleEvent ErrAECoercionFail = -1707
	// ErrAEParamMissed: A required parameter was not accessed.
	ErrAEParamMissed ErrAECoercionFail = -1715
	// ErrAEReceiveEscapeCurrent: Break out of lowest level only of [AEReceive] (1.1or greater)
	ErrAEReceiveEscapeCurrent ErrAECoercionFail = -1734
	// ErrAEReceiveTerminate: Break out of all levels of [AEReceive] tothe topmost (1.1 or greater)
	ErrAEReceiveTerminate ErrAECoercionFail = -1733
	// ErrAERecordingIsAlreadyOn: Recording is already on
	ErrAERecordingIsAlreadyOn ErrAECoercionFail = -1732
	// ErrAEReplyNotArrived: Reply has not yet arrived
	ErrAEReplyNotArrived ErrAECoercionFail = -1718
	// ErrAEReplyNotValid: [AEResetTimer] was passed an invalid reply
	ErrAEReplyNotValid ErrAECoercionFail = -1709
	// ErrAEStreamAlreadyConverted: Attempt to convert a stream that has alreadybeen converted
	ErrAEStreamAlreadyConverted ErrAECoercionFail = -1738
	// ErrAEStreamBadNesting: Nesting violation while streaming
	ErrAEStreamBadNesting ErrAECoercionFail = -1737
	// ErrAETimeout: Apple event timed out
	ErrAETimeout ErrAECoercionFail = -1712
	// ErrAEUnknownAddressType: Unknown Apple event address type
	ErrAEUnknownAddressType ErrAECoercionFail = -1716
	// ErrAEUnknownObjectType: The object type isn’t recognized
	ErrAEUnknownObjectType ErrAECoercionFail = -1731
	// ErrAEUnknownSendMode: Invalid sending mode was passed
	ErrAEUnknownSendMode ErrAECoercionFail = -1710
	// ErrAEWaitCanceled: User canceled out of wait loop for replyor receipt
	ErrAEWaitCanceled ErrAECoercionFail = -1711
	// ErrAEWrongDataType: Wrong descriptor type
	ErrAEWrongDataType ErrAECoercionFail = -1703
	// ErrAEWrongNumberArgs: The number of operands provided for the `kAENOT` logicaloperator is not 1
	ErrAEWrongNumberArgs ErrAECoercionFail = -1721
)

func (ErrAECoercionFail) String added in v0.6.17

func (e ErrAECoercionFail) String() string

type ErrAEEventWouldRequireUser added in v0.5.1

type ErrAEEventWouldRequireUser int32
const (
	ErrAEEventWouldRequireUserConsent ErrAEEventWouldRequireUser = -1744
)

func (ErrAEEventWouldRequireUser) String added in v0.5.1

type ErrAETargetAddressNotPermitted

type ErrAETargetAddressNotPermitted int32
const (
	ErrAEEventNotPermitted              ErrAETargetAddressNotPermitted = -1743
	ErrAETargetAddressNotPermittedValue ErrAETargetAddressNotPermitted = -1742
)

func (ErrAETargetAddressNotPermitted) String added in v0.6.17

type ErrAS

type ErrAS int32
const (
	// ErrASCantCompareMoreThan32k: Can’t perform operation on text longerthan 32K bytes.
	ErrASCantCompareMoreThan32k ErrAS = -2721
	// ErrASCantConsiderAndIgnore: Can’t both consider and ignore <attribute>.
	ErrASCantConsiderAndIgnore ErrAS = -2720
	// ErrASIllegalFormalParameter: <name> is illegal as a formal parameter.
	ErrASIllegalFormalParameter ErrAS = -2761
	ErrASInconsistentNames      ErrAS = -2780
	// ErrASNoResultReturned: No result was returned for some argumentof this expression.
	ErrASNoResultReturned ErrAS = -2763
	// ErrASParameterNotForEvent: <name> is not a parameter name for the event <event>.
	ErrASParameterNotForEvent ErrAS = -2762
	// ErrASTerminologyNestingTooDeep: Tell statements are nested too deeply.
	ErrASTerminologyNestingTooDeep ErrAS = -2760
)

func (ErrAS) String

func (e ErrAS) String() string

type ErrCoreEndianData

type ErrCoreEndianData int32
const (
	ErrCoreEndianDataDoesNotMatchFormat ErrCoreEndianData = -4942
	ErrCoreEndianDataTooLongForFormat   ErrCoreEndianData = -4941
	ErrCoreEndianDataTooShortForFormat  ErrCoreEndianData = -4940
)

func (ErrCoreEndianData) String

func (e ErrCoreEndianData) String() string

type ErrCppGeneral

type ErrCppGeneral int32
const (
	ErrCppGeneralValue           ErrCppGeneral = -32000
	ErrCppLastSystemDefinedError ErrCppGeneral = -32020
	ErrCppLastUserDefinedError   ErrCppGeneral = -32049
	ErrCppbad_alloc              ErrCppGeneral = -32001
	ErrCppbad_cast               ErrCppGeneral = -32002
	ErrCppbad_exception          ErrCppGeneral = -32003
	ErrCppbad_typeid             ErrCppGeneral = -32004
	ErrCppdomain_error           ErrCppGeneral = -32006
	ErrCppinvalid_argument       ErrCppGeneral = -32007
	ErrCppios_base_failure       ErrCppGeneral = -32014
	ErrCpplength_error           ErrCppGeneral = -32008
	ErrCpplogic_error            ErrCppGeneral = -32005
	ErrCppout_of_range           ErrCppGeneral = -32009
	ErrCppoverflow_error         ErrCppGeneral = -32011
	ErrCpprange_error            ErrCppGeneral = -32012
	ErrCppruntime_error          ErrCppGeneral = -32010
	ErrCppunderflow_error        ErrCppGeneral = -32013
)

func (ErrCppGeneral) String added in v0.6.17

func (e ErrCppGeneral) String() string

type ErrIA

type ErrIA int32
const (
	ErrIAAllocationErr     ErrIA = -5381
	ErrIABufferTooSmall    ErrIA = -5384
	ErrIACanceled          ErrIA = -5385
	ErrIAEndOfTextRun      ErrIA = -5388
	ErrIAInvalidDocument   ErrIA = -5386
	ErrIANoErr             ErrIA = 0
	ErrIANoMoreItems       ErrIA = -5383
	ErrIAParamErr          ErrIA = -5382
	ErrIATextExtractionErr ErrIA = -5387
	ErrIAUnknownErr        ErrIA = -5380
)

func (ErrIA) String

func (e ErrIA) String() string

type ErrInvalidWindowPtr

type ErrInvalidWindowPtr int32
const (
	ErrCorruptWindowDescription            ErrInvalidWindowPtr = -5606
	ErrFloatingWindowsNotInitialized       ErrInvalidWindowPtr = -5609
	ErrInvalidWindowProperty               ErrInvalidWindowPtr = -5603
	ErrInvalidWindowPtrValue               ErrInvalidWindowPtr = -5600
	ErrInvalidWindowRef                    ErrInvalidWindowPtr = -5600
	ErrUnrecognizedWindowClass             ErrInvalidWindowPtr = -5605
	ErrUnsupportedWindowAttributesForClass ErrInvalidWindowPtr = -5601
	ErrUserWantsToDragWindow               ErrInvalidWindowPtr = -5607
	ErrWindowDoesNotFitOnscreen            ErrInvalidWindowPtr = -5611
	ErrWindowDoesNotHaveProxy              ErrInvalidWindowPtr = -5602
	ErrWindowDoesntSupportFocus            ErrInvalidWindowPtr = -30583
	ErrWindowNotFound                      ErrInvalidWindowPtr = -5610
	ErrWindowPropertyNotFound              ErrInvalidWindowPtr = -5604
	ErrWindowRegionCodeInvalid             ErrInvalidWindowPtr = -30593
	ErrWindowsAlreadyInitialized           ErrInvalidWindowPtr = -5608
	WindowAppModalStateAlreadyExistsErr    ErrInvalidWindowPtr = -5617
	WindowAttributeImmutableErr            ErrInvalidWindowPtr = -5612
	WindowAttributesConflictErr            ErrInvalidWindowPtr = -5613
	WindowGroupInvalidErr                  ErrInvalidWindowPtr = -5616
	WindowManagerInternalErr               ErrInvalidWindowPtr = -5614
	WindowNoAppModalStateErr               ErrInvalidWindowPtr = -5618
	WindowWrongStateErr                    ErrInvalidWindowPtr = -5615
)

func (ErrInvalidWindowPtr) String

func (e ErrInvalidWindowPtr) String() string

type ErrKC

type ErrKC int32
const (
	ErrKCAuthFailed            ErrKC = -25293
	ErrKCBufferTooSmall        ErrKC = -25301
	ErrKCCreateChainFailed     ErrKC = -25318
	ErrKCDataNotAvailable      ErrKC = -25316
	ErrKCDataNotModifiable     ErrKC = -25317
	ErrKCDataTooLarge          ErrKC = -25302
	ErrKCDuplicateCallback     ErrKC = -25297
	ErrKCDuplicateItem         ErrKC = -25299
	ErrKCDuplicateKeychain     ErrKC = -25296
	ErrKCInteractionNotAllowed ErrKC = -25308
	ErrKCInteractionRequired   ErrKC = -25315
	ErrKCInvalidCallback       ErrKC = -25298
	ErrKCInvalidItemRef        ErrKC = -25304
	ErrKCInvalidKeychain       ErrKC = -25295
	ErrKCInvalidSearchRef      ErrKC = -25305
	ErrKCItemNotFound          ErrKC = -25300
	ErrKCKeySizeNotAllowed     ErrKC = -25311
	ErrKCNoCertificateModule   ErrKC = -25313
	ErrKCNoDefaultKeychain     ErrKC = -25307
	ErrKCNoPolicyModule        ErrKC = -25314
	ErrKCNoStorageModule       ErrKC = -25312
	ErrKCNoSuchAttr            ErrKC = -25303
	ErrKCNoSuchClass           ErrKC = -25306
	ErrKCNoSuchKeychain        ErrKC = -25294
	ErrKCNotAvailable          ErrKC = -25291
	ErrKCReadOnly              ErrKC = -25292
	ErrKCReadOnlyAttr          ErrKC = -25309
	ErrKCWrongKCVersion        ErrKC = -25310
)

func (ErrKC) String

func (e ErrKC) String() string

type ErrMessageNotSupported

type ErrMessageNotSupported int32
const (
	ControlHandleInvalidErr      ErrMessageNotSupported = -30599
	ControlInvalidDataVersionErr ErrMessageNotSupported = -30597
	ControlPropertyInvalid       ErrMessageNotSupported = -5603
	ControlPropertyNotFoundErr   ErrMessageNotSupported = -5604
	ErrCantEmbedIntoSelf         ErrMessageNotSupported = -30594
	ErrCantEmbedRoot             ErrMessageNotSupported = -30595
	ErrControlDoesntSupportFocus ErrMessageNotSupported = -30582
	ErrControlHiddenOrDisabled   ErrMessageNotSupported = -30592
	ErrControlIsNotEmbedder      ErrMessageNotSupported = -30590
	ErrControlsAlreadyExist      ErrMessageNotSupported = -30589
	ErrCouldntSetFocus           ErrMessageNotSupported = -30585
	ErrDataNotSupported          ErrMessageNotSupported = -30581
	ErrDataSizeMismatch          ErrMessageNotSupported = -30591
	ErrInvalidPartCode           ErrMessageNotSupported = -30588
	ErrItemNotControl            ErrMessageNotSupported = -30596
	ErrMessageNotSupportedValue  ErrMessageNotSupported = -30580
	ErrNoRootControl             ErrMessageNotSupported = -30586
	ErrRootAlreadyExists         ErrMessageNotSupported = -30587
	ErrUnknownControl            ErrMessageNotSupported = -30584
)

func (ErrMessageNotSupported) String

func (e ErrMessageNotSupported) String() string

type ErrOSACantCoerce

type ErrOSACantCoerce int32
const (
	ErrOSAAppNotHighLevelEventAware ErrOSACantCoerce = -2704
	ErrOSACantAccess                ErrOSACantCoerce = -1728
	ErrOSACantAssign                ErrOSACantCoerce = -10006
	ErrOSACantCoerceValue           ErrOSACantCoerce = -1700
	ErrOSACantCreate                ErrOSACantCoerce = -2710
	ErrOSACantGetTerminology        ErrOSACantCoerce = -2709
	ErrOSACantLaunch                ErrOSACantCoerce = -2703
	ErrOSACorruptTerminology        ErrOSACantCoerce = -2705
	ErrOSADataBlockTooLarge         ErrOSACantCoerce = -2708
	ErrOSADivideByZero              ErrOSACantCoerce = -2701
	ErrOSAGeneralError              ErrOSACantCoerce = -2700
	ErrOSAInternalTableOverflow     ErrOSACantCoerce = -2707
	ErrOSANumericOverflow           ErrOSACantCoerce = -2702
	ErrOSAStackOverflow             ErrOSACantCoerce = -2706
)

func (ErrOSACantCoerce) String added in v0.6.17

func (e ErrOSACantCoerce) String() string

type ErrOSASystemError

type ErrOSASystemError int32
const (
	ErrOSABadSelector          ErrOSASystemError = -1754
	ErrOSABadStorageType       ErrOSASystemError = -1752
	ErrOSACantOpenComponent    ErrOSASystemError = -1762
	ErrOSACantStorePointers    ErrOSASystemError = -1763
	ErrOSAComponentMismatch    ErrOSASystemError = -1761
	ErrOSACorruptData          ErrOSASystemError = -1702
	ErrOSADataFormatObsolete   ErrOSASystemError = -1758
	ErrOSADataFormatTooNew     ErrOSASystemError = -1759
	ErrOSAInvalidID            ErrOSASystemError = -1751
	ErrOSANoSuchDialect        ErrOSASystemError = -1757
	ErrOSARecordingIsAlreadyOn ErrOSASystemError = -1732
	ErrOSAScriptError          ErrOSASystemError = -1753
	ErrOSASourceNotAvailable   ErrOSASystemError = -1756
	ErrOSASystemErrorValue     ErrOSASystemError = -1750
)

func (ErrOSASystemError) String added in v0.6.17

func (e ErrOSASystemError) String() string

type ErrOSATypeError

type ErrOSATypeError int32
const (
	ErrOSATypeErrorValue        ErrOSATypeError = -1703
	OSAControlFlowError         ErrOSATypeError = -2755
	OSADuplicateHandler         ErrOSATypeError = -2752
	OSADuplicateParameter       ErrOSATypeError = -2750
	OSADuplicateProperty        ErrOSATypeError = -2751
	OSAIllegalAccess            ErrOSATypeError = -1723
	OSAIllegalAssign            ErrOSATypeError = -10003
	OSAIllegalIndex             ErrOSATypeError = -1719
	OSAIllegalRange             ErrOSATypeError = -1720
	OSAInconsistentDeclarations ErrOSATypeError = -2754
	OSAMessageNotUnderstood     ErrOSATypeError = -1708
	OSAMissingParameter         ErrOSATypeError = -1701
	OSAParameterMismatch        ErrOSATypeError = -1721
	OSASyntaxError              ErrOSATypeError = -2740
	OSASyntaxTypeError          ErrOSATypeError = -2741
	OSATokenTooLong             ErrOSATypeError = -2742
	OSAUndefinedHandler         ErrOSATypeError = -1717
	OSAUndefinedVariable        ErrOSATypeError = -2753
)

func (ErrOSATypeError) String

func (e ErrOSATypeError) String() string

type ErrOffsetInvalid

type ErrOffsetInvalid int32
const (
	ErrEndOfBody             ErrOffsetInvalid = -1813
	ErrEndOfDocument         ErrOffsetInvalid = -1812
	ErrOffsetInvalidValue    ErrOffsetInvalid = -1800
	ErrOffsetIsOutsideOfView ErrOffsetInvalid = -1801
	ErrTopOfBody             ErrOffsetInvalid = -1811
	ErrTopOfDocument         ErrOffsetInvalid = -1810
)

func (ErrOffsetInvalid) String added in v0.6.17

func (e ErrOffsetInvalid) String() string

type ErrRefNum

type ErrRefNum int32
const (
	ErrAborted      ErrRefNum = -1279
	ErrAttention    ErrRefNum = -1276
	ErrDSPQueueSize ErrRefNum = -1274
	ErrFwdReset     ErrRefNum = -1275
	ErrOpenDenied   ErrRefNum = -1273
	ErrOpening      ErrRefNum = -1277
	ErrRefNumValue  ErrRefNum = -1280
	ErrState        ErrRefNum = -1278
)

func (ErrRefNum) String added in v0.6.17

func (e ErrRefNum) String() string

type ErrTaskNot added in v0.5.1

type ErrTaskNot int32
const (
	ErrTaskNotFound ErrTaskNot = -10780
)

func (ErrTaskNot) String added in v0.5.1

func (e ErrTaskNot) String() string

type ErrUnknownAttributeTag

type ErrUnknownAttributeTag int32
const (
	ErrAlreadyInImagingMode      ErrUnknownAttributeTag = -5243
	ErrCannotUndo                ErrUnknownAttributeTag = -5253
	ErrEmptyScrap                ErrUnknownAttributeTag = -5249
	ErrEngineNotFound            ErrUnknownAttributeTag = -5244
	ErrInvalidRange              ErrUnknownAttributeTag = -5246
	ErrIteratorReachedEnd        ErrUnknownAttributeTag = -5245
	ErrMarginWilllNotFit         ErrUnknownAttributeTag = -5241
	ErrNoHiliteText              ErrUnknownAttributeTag = -5248
	ErrNonContiuousAttribute     ErrUnknownAttributeTag = -5252
	ErrNotInImagingMode          ErrUnknownAttributeTag = -5242
	ErrOffsetNotOnElementBounday ErrUnknownAttributeTag = -5247
	ErrReadOnlyText              ErrUnknownAttributeTag = -5250
	ErrUnknownAttributeTagValue  ErrUnknownAttributeTag = -5240
	ErrUnknownElement            ErrUnknownAttributeTag = -5251
)

func (ErrUnknownAttributeTag) String added in v0.6.17

func (e ErrUnknownAttributeTag) String() string

type ErrWS added in v0.5.1

type ErrWS int32
const (
	// ErrWSInternalError: An internal framework error occured.
	ErrWSInternalError ErrWS = -65793
	// ErrWSParseError: The server response was not valid XML.
	ErrWSParseError ErrWS = -65795
	// ErrWSTimeoutError: The method invocation timed out.
	ErrWSTimeoutError ErrWS = -65796
	// ErrWSTransportError: A network error occured.
	ErrWSTransportError ErrWS = -65794
)

func (ErrWS) String added in v0.5.1

func (e ErrWS) String() string

type EvtNot added in v0.5.1

type EvtNot uint32
const (
	EvtNotEnb EvtNot = 1
)

func (EvtNot) String added in v0.5.1

func (e EvtNot) String() string

type ExceptionHandlerTPP

type ExceptionHandlerTPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/exceptionhandlertpp

func InstallExceptionHandler deprecated

func InstallExceptionHandler(theHandler ExceptionHandlerTPP) ExceptionHandlerTPP

InstallExceptionHandler.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1500730-installexceptionhandler

type ExceptionHandlerUPP

type ExceptionHandlerUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/exceptionhandlerupp

func NewExceptionHandlerUPP deprecated

func NewExceptionHandlerUPP(userRoutine unsafe.Pointer) ExceptionHandlerUPP

NewExceptionHandlerUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1500655-newexceptionhandlerupp

type ExceptionInformation

type ExceptionInformation [6]uint64

See: https://developer.apple.com/documentation/coreservices/exceptioninformation ExceptionInformation is opaque storage with the size and alignment C gives ExceptionInformation: 48 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 48 into.

type ExceptionInformationPowerPC

type ExceptionInformationPowerPC [6]uint64

See: https://developer.apple.com/documentation/coreservices/exceptioninformationpowerpc ExceptionInformationPowerPC is opaque storage with the size and alignment C gives ExceptionInformationPowerPC: 48 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 48 into.

type ExtCommonChunk

type ExtCommonChunk [16]uint16

See: https://developer.apple.com/documentation/coreservices/extcommonchunk ExtCommonChunk is opaque storage with the size and alignment C gives ExtCommonChunk: 32 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 32 into.

type ExtComponentResource

type ExtComponentResource [35]uint16

See: https://developer.apple.com/documentation/coreservices/extcomponentresource ExtComponentResource is opaque storage with the size and alignment C gives ExtComponentResource: 70 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 70 into.

type ExtendedFileInfo

type ExtendedFileInfo [8]uint16

See: https://developer.apple.com/documentation/coreservices/extendedfileinfo ExtendedFileInfo is opaque storage with the size and alignment C gives ExtendedFileInfo: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type ExtendedFolderInfo

type ExtendedFolderInfo [8]uint16

See: https://developer.apple.com/documentation/coreservices/extendedfolderinfo ExtendedFolderInfo is opaque storage with the size and alignment C gives ExtendedFolderInfo: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type FFormatOK added in v0.5.1

type FFormatOK uint32
const (
	// Deprecated.
	FBadPartsTable FFormatOK = 10
	// Deprecated.
	FBestGuess FFormatOK = 1
	// Deprecated.
	FEmptyFormatString FFormatOK = 13
	// Deprecated.
	FExtraDecimal FFormatOK = 5
	// Deprecated.
	FExtraExp FFormatOK = 7
	// Deprecated.
	FExtraPercent FFormatOK = 11
	// Deprecated.
	FExtraSeparator FFormatOK = 12
	// Deprecated.
	FFormStrIsNAN FFormatOK = 9
	// Deprecated.
	FFormatOKValue FFormatOK = 0
	// Deprecated.
	FFormatOverflow FFormatOK = 8
	// Deprecated.
	FMissingDelimiter FFormatOK = 4
	// Deprecated.
	FMissingLiteral FFormatOK = 6
	// Deprecated.
	FOutOfSynch FFormatOK = 2
	// Deprecated.
	FSpuriousChars FFormatOK = 3
)

func (FFormatOK) String added in v0.5.1

func (e FFormatOK) String() string

type FInfo

type FInfo [8]uint16

See: https://developer.apple.com/documentation/coreservices/finfo FInfo is opaque storage with the size and alignment C gives FInfo: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type FNSubscriptionUPP

type FNSubscriptionUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/fnsubscriptionupp

func NewFNSubscriptionUPP deprecated

func NewFNSubscriptionUPP(userRoutine unsafe.Pointer) FNSubscriptionUPP

NewFNSubscriptionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566945-newfnsubscriptionupp

type FOnDesk added in v0.5.1

type FOnDesk uint32
const (
	FHasBundle   FOnDesk = 8192
	FInvisible   FOnDesk = 16384
	FOnDeskValue FOnDesk = 1
)

func (FOnDesk) String added in v0.5.1

func (e FOnDesk) String() string

type FPUInformation

type FPUInformation [1]uint64

See: https://developer.apple.com/documentation/coreservices/fpuinformation FPUInformation is opaque storage with the size and alignment C gives FPUInformation: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type FPUInformationIntel64

type FPUInformationIntel64 unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/fpuinformationintel64 FPUInformationIntel64 is an unresolved C aggregate typedef.

type FPUInformationPowerPC

type FPUInformationPowerPC [34]uint64

See: https://developer.apple.com/documentation/coreservices/fpuinformationpowerpc FPUInformationPowerPC is opaque storage with the size and alignment C gives FPUInformationPowerPC: 272 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 272 into.

type FPositive added in v0.5.1

type FPositive uint32
const (
	// Deprecated.
	FNegative FPositive = 1
	// Deprecated.
	FPositiveValue FPositive = 0
	// Deprecated.
	FZero FPositive = 2
)

func (FPositive) String added in v0.5.1

func (e FPositive) String() string

type FSAliasInfo

type FSAliasInfo [21]uint16

FSAliasInfo is defines an information block passed to the [FSCopyAliasInfo] function.

See: https://developer.apple.com/documentation/coreservices/fsaliasinfo FSAliasInfo is opaque storage with the size and alignment C gives FSAliasInfo: 42 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 42 into.

type FSAliasInfoBitmap

type FSAliasInfoBitmap = uint32

FSAliasInfoBitmap is returned by the [FSCopyAliasInfo] function to indicate which fields of the alias information structure contain valid data.

See: https://developer.apple.com/documentation/coreservices/fsaliasinfobitmap

type FSCatalogBulkParam

type FSCatalogBulkParam [56]uint16

See: https://developer.apple.com/documentation/coreservices/fscatalogbulkparam FSCatalogBulkParam is opaque storage with the size and alignment C gives FSCatalogBulkParam: 112 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 112 into.

type FSCatalogInfo

type FSCatalogInfo [74]uint16

See: https://developer.apple.com/documentation/coreservices/fscataloginfo FSCatalogInfo is opaque storage with the size and alignment C gives FSCatalogInfo: 148 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 148 into.

type FSEventStreamCallback

type FSEventStreamCallback = func(streamRef ConstFSEventStreamRef, clientCallBackInfo unsafe.Pointer, numEvents int32, eventPaths unsafe.Pointer, eventFlags unsafe.Pointer, eventIds unsafe.Pointer)

See: https://developer.apple.com/documentation/coreservices/fseventstreamcallback

type FSEventStreamContext

type FSEventStreamContext struct {
	// contains filtered or unexported fields
}

FSEventStreamContext

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/fseventstreamcontext

func (*FSEventStreamContext) CopyDescription

func (s *FSEventStreamContext) CopyDescription() uintptr

CopyDescription returns a raw C code address from the record's packed storage. The address is not callable from Go. To call C through it, use purego to bind a Go function value to the address.

func (*FSEventStreamContext) Info

func (s *FSEventStreamContext) Info() uintptr

Info returns the Info field from the record's packed storage.

func (*FSEventStreamContext) Release

func (s *FSEventStreamContext) Release() uintptr

Release returns a raw C code address from the record's packed storage. The address is not callable from Go. To call C through it, use purego to bind a Go function value to the address.

func (*FSEventStreamContext) Retain

func (s *FSEventStreamContext) Retain() uintptr

Retain returns a raw C code address from the record's packed storage. The address is not callable from Go. To call C through it, use purego to bind a Go function value to the address.

func (*FSEventStreamContext) SetCopyDescription added in v0.6.17

func (s *FSEventStreamContext) SetCopyDescription(v uintptr)

SetCopyDescription stores a raw C code address in the record's packed storage. Use purego.NewCallback to obtain the address for a Go callback. The callback and its address must outlive every use C can make through this record.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*FSEventStreamContext) SetInfo added in v0.6.17

func (s *FSEventStreamContext) SetInfo(v uintptr)

SetInfo updates the Info field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*FSEventStreamContext) SetRelease added in v0.6.17

func (s *FSEventStreamContext) SetRelease(v uintptr)

SetRelease stores a raw C code address in the record's packed storage. Use purego.NewCallback to obtain the address for a Go callback. The callback and its address must outlive every use C can make through this record.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*FSEventStreamContext) SetRetain added in v0.6.17

func (s *FSEventStreamContext) SetRetain(v uintptr)

SetRetain stores a raw C code address in the record's packed storage. Use purego.NewCallback to obtain the address for a Go callback. The callback and its address must outlive every use C can make through this record.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*FSEventStreamContext) SetVersion added in v0.6.17

func (s *FSEventStreamContext) SetVersion(v int)

SetVersion updates the Version field in the record's packed storage.

func (*FSEventStreamContext) Version

func (s *FSEventStreamContext) Version() int

Version returns the Version field from the record's packed storage.

type FSFileOperationClientContext

type FSFileOperationClientContext [20]uint16

See: https://developer.apple.com/documentation/coreservices/fsfileoperationclientcontext FSFileOperationClientContext is opaque storage with the size and alignment C gives FSFileOperationClientContext: 40 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 40 into.

type FSFileSecurityRef

type FSFileSecurityRef uintptr

See: https://developer.apple.com/documentation/coreservices/fsfilesecurityref

func FSFileSecurityCreate deprecated

func FSFileSecurityCreate(alloc corefoundation.CFAllocatorRef) FSFileSecurityRef

FSFileSecurityCreate.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565742-fsfilesecuritycreate

func FSFileSecurityCreateWithFSPermissionInfo deprecated

func FSFileSecurityCreateWithFSPermissionInfo(alloc corefoundation.CFAllocatorRef, permissions *FSPermissionInfo) FSFileSecurityRef

FSFileSecurityCreateWithFSPermissionInfo.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566954-fsfilesecuritycreatewithfspermis

func FSFileSecurityRefCreateCopy deprecated

func FSFileSecurityRefCreateCopy(alloc corefoundation.CFAllocatorRef, fileSec FSFileSecurityRef) FSFileSecurityRef

FSFileSecurityRefCreateCopy.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566223-fsfilesecurityrefcreatecopy

type FSForkCBInfoParam

type FSForkCBInfoParam [33]uint16

See: https://developer.apple.com/documentation/coreservices/fsforkcbinfoparam FSForkCBInfoParam is opaque storage with the size and alignment C gives FSForkCBInfoParam: 66 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 66 into.

type FSForkIOParam

type FSForkIOParam [65]uint16

See: https://developer.apple.com/documentation/coreservices/fsforkioparam FSForkIOParam is opaque storage with the size and alignment C gives FSForkIOParam: 130 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 130 into.

type FSForkInfo

type FSForkInfo [24]uint16

See: https://developer.apple.com/documentation/coreservices/fsforkinfo FSForkInfo is opaque storage with the size and alignment C gives FSForkInfo: 48 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 48 into.

type FSPermissionInfo

type FSPermissionInfo [10]uint16

See: https://developer.apple.com/documentation/coreservices/fspermissioninfo FSPermissionInfo is opaque storage with the size and alignment C gives FSPermissionInfo: 20 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 20 into.

type FSRangeLockParam

type FSRangeLockParam [30]uint16

See: https://developer.apple.com/documentation/coreservices/fsrangelockparam FSRangeLockParam is opaque storage with the size and alignment C gives FSRangeLockParam: 60 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 60 into.

type FSRef

type FSRef [80]byte

FSRef is identifies a directory or file, including a volume’s root directory.

See: https://developer.apple.com/documentation/coreservices/fsref FSRef is opaque storage with the size and alignment C gives FSRef: 80 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 80 into.

type FSRefForkIOParam

type FSRefForkIOParam [48]uint16

See: https://developer.apple.com/documentation/coreservices/fsrefforkioparam FSRefForkIOParam is opaque storage with the size and alignment C gives FSRefForkIOParam: 96 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 96 into.

type FSRefParam

type FSRefParam [60]uint16

See: https://developer.apple.com/documentation/coreservices/fsrefparam FSRefParam is opaque storage with the size and alignment C gives FSRefParam: 120 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 120 into.

type FSSearchParams

type FSSearchParams [20]uint16

See: https://developer.apple.com/documentation/coreservices/fssearchparams FSSearchParams is opaque storage with the size and alignment C gives FSSearchParams: 40 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 40 into.

type FSSpec

type FSSpec [70]byte

See: https://developer.apple.com/documentation/coreservices/fsspec FSSpec is opaque storage with the size and alignment C gives FSSpec: 70 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 70 into.

type FSVolumeEjectUPP

type FSVolumeEjectUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/fsvolumeejectupp

func NewFSVolumeEjectUPP deprecated

func NewFSVolumeEjectUPP(userRoutine unsafe.Pointer) FSVolumeEjectUPP

NewFSVolumeEjectUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1566367-newfsvolumeejectupp

type FSVolumeInfo

type FSVolumeInfo [64]uint16

See: https://developer.apple.com/documentation/coreservices/fsvolumeinfo FSVolumeInfo is opaque storage with the size and alignment C gives FSVolumeInfo: 128 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 128 into.

type FSVolumeInfoParam

type FSVolumeInfoParam [36]uint16

See: https://developer.apple.com/documentation/coreservices/fsvolumeinfoparam FSVolumeInfoParam is opaque storage with the size and alignment C gives FSVolumeInfoParam: 72 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 72 into.

type FSVolumeMountUPP

type FSVolumeMountUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/fsvolumemountupp

func NewFSVolumeMountUPP deprecated

func NewFSVolumeMountUPP(userRoutine unsafe.Pointer) FSVolumeMountUPP

NewFSVolumeMountUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565615-newfsvolumemountupp

type FSVolumeUnmountUPP

type FSVolumeUnmountUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/fsvolumeunmountupp

func NewFSVolumeUnmountUPP deprecated

func NewFSVolumeUnmountUPP(userRoutine unsafe.Pointer) FSVolumeUnmountUPP

NewFSVolumeUnmountUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565539-newfsvolumeunmountupp

type FTrash added in v0.5.1

type FTrash int32
const (
	FDesktop    FTrash = -2
	FDisk       FTrash = 0
	FTrashValue FTrash = -3
)

func (FTrash) String added in v0.5.1

func (e FTrash) String() string

type FV added in v0.5.1

type FV uint32
const (
	// Deprecated.
	FVNumber FV = 0
)

func (FV) String added in v0.5.1

func (e FV) String() string

type FVector

type FVector [2]uint16

See: https://developer.apple.com/documentation/coreservices/fvector FVector is opaque storage with the size and alignment C gives FVector: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

type FXInfo

type FXInfo [8]uint16

See: https://developer.apple.com/documentation/coreservices/fxinfo FXInfo is opaque storage with the size and alignment C gives FXInfo: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type False32b added in v0.5.1

type False32b uint32
const (
	// Deprecated.
	False32bValue False32b = 0
	// Deprecated.
	True32b False32b = 1
)

func (False32b) String added in v0.5.1

func (e False32b) String() string

type FatalDateTime added in v0.5.1

type FatalDateTime uint32
const (
	CantReadUtilities  FatalDateTime = 0x8200
	DateTimeInvalid    FatalDateTime = 0x8800
	DateTimeNotFound   FatalDateTime = 0x8400
	ExtraneousStrings  FatalDateTime = 16
	FatalDateTimeValue FatalDateTime = 0x8000
	FieldOrderNotIntl  FatalDateTime = 8
	LeftOverChars      FatalDateTime = 2
	LongDateFound      FatalDateTime = 1
	SepNotConsistent   FatalDateTime = 64
	SepNotIntlSep      FatalDateTime = 4
	TokenErr           FatalDateTime = 0x8100
	TooManySeps        FatalDateTime = 32
)

func (FatalDateTime) String added in v0.5.1

func (e FatalDateTime) String() string

type FidNotFound

type FidNotFound int32
const (
	BadFCBErr                       FidNotFound = -1327
	BadFidErr                       FidNotFound = -1307
	CatChangedErr                   FidNotFound = -1304
	DesktopDamagedErr               FidNotFound = -1305
	DiffVolErr                      FidNotFound = -1303
	EnvBadVers                      FidNotFound = -5501
	EnvNotPresent                   FidNotFound = -5500
	EnvVersTooBig                   FidNotFound = -5502
	ErrFSAttributeNotFound          FidNotFound = -1427
	ErrFSBadAllocFlags              FidNotFound = -1413
	ErrFSBadBuffer                  FidNotFound = -1403
	ErrFSBadFSRef                   FidNotFound = -1401
	ErrFSBadForkName                FidNotFound = -1402
	ErrFSBadForkRef                 FidNotFound = -1404
	ErrFSBadInfoBitmap              FidNotFound = -1405
	ErrFSBadItemCount               FidNotFound = -1418
	ErrFSBadIteratorFlags           FidNotFound = -1422
	ErrFSBadPosMode                 FidNotFound = -1412
	ErrFSBadSearchParams            FidNotFound = -1419
	ErrFSForkExists                 FidNotFound = -1421
	ErrFSForkNotFound               FidNotFound = -1409
	ErrFSIteratorNotFound           FidNotFound = -1423
	ErrFSIteratorNotSupported       FidNotFound = -1424
	ErrFSMissingCatInfo             FidNotFound = -1406
	ErrFSMissingName                FidNotFound = -1411
	ErrFSNameTooLong                FidNotFound = -1410
	ErrFSNoMoreItems                FidNotFound = -1417
	ErrFSNotAFolder                 FidNotFound = -1407
	ErrFSNotEnoughSpaceForOperation FidNotFound = -1429
	ErrFSOperationNotSupported      FidNotFound = -1426
	ErrFSPropertyNotValid           FidNotFound = -1428
	ErrFSQuotaExceeded              FidNotFound = -1425
	ErrFSRefsDifferent              FidNotFound = -1420
	ErrFSUnknownCall                FidNotFound = -1400
	FidExists                       FidNotFound = -1301
	FidNotFoundValue                FidNotFound = -1300
	FileBoundsErr                   FidNotFound = -1309
	FirstDskErr                     FidNotFound = -84
	FontDecError                    FidNotFound = -64
	FontNotDeclared                 FidNotFound = -65
	FontNotOutlineErr               FidNotFound = -32615
	FontSubErr                      FidNotFound = -66
	FsDataTooBigErr                 FidNotFound = -1310
	LastDskErr                      FidNotFound = -64
	NoDriveErr                      FidNotFound = -64
	NoNybErr                        FidNotFound = -66
	NotAFileErr                     FidNotFound = -1302
	NotARemountErr                  FidNotFound = -1308
	OffLinErr                       FidNotFound = -65
	SameFileErr                     FidNotFound = -1306
	VolVMBusyErr                    FidNotFound = -1311
)

func (FidNotFound) String

func (e FidNotFound) String() string

type FileInfo

type FileInfo [8]uint16

See: https://developer.apple.com/documentation/coreservices/fileinfo FileInfo is opaque storage with the size and alignment C gives FileInfo: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type FirstPickerError

type FirstPickerError int32
const (
	BadProfileError        FirstPickerError = -4008
	CantCreatePickerWindow FirstPickerError = -4004
	CantLoadPackage        FirstPickerError = -4005
	CantLoadPicker         FirstPickerError = -4003
	ColorSyncNotInstalled  FirstPickerError = -4007
	FirstPickerErrorValue  FirstPickerError = -4000
	InvalidPickerType      FirstPickerError = -4000
	NoHelpForItem          FirstPickerError = -4009
	PickerCantLive         FirstPickerError = -4006
	PickerResourceError    FirstPickerError = -4002
	RequiredFlagsDontMatch FirstPickerError = -4001
)

func (FirstPickerError) String

func (e FirstPickerError) String() string

type FolderDesc

type FolderDesc [50]uint16

See: https://developer.apple.com/documentation/coreservices/folderdesc FolderDesc is opaque storage with the size and alignment C gives FolderDesc: 100 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 100 into.

type FolderInfo

type FolderInfo [8]uint16

See: https://developer.apple.com/documentation/coreservices/folderinfo FolderInfo is opaque storage with the size and alignment C gives FolderInfo: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type FolderManagerNotificationUPP

type FolderManagerNotificationUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/foldermanagernotificationupp

func NewFolderManagerNotificationUPP deprecated

func NewFolderManagerNotificationUPP(userRoutine unsafe.Pointer) FolderManagerNotificationUPP

NewFolderManagerNotificationUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1389484-newfoldermanagernotificationupp

type FolderRouting

type FolderRouting [12]uint16

See: https://developer.apple.com/documentation/coreservices/folderrouting FolderRouting is opaque storage with the size and alignment C gives FolderRouting: 24 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 24 into.

type Form

type Form uint32
const (
	// FormAbsolutePosition: # Discussion
	FormAbsolutePosition Form = 'i'<<24 | 'n'<<16 | 'd'<<8 | 'x' // 'indx'
	// FormName: Specifies the Apple event object by name.
	FormName Form = 'n'<<24 | 'a'<<16 | 'm'<<8 | 'e' // 'name'
	// FormPropertyID: Specifies the property ID for an element’s property.
	FormPropertyID Form = 'p'<<24 | 'r'<<16 | 'o'<<8 | 'p' // 'prop'
	// FormRange: # Discussion
	FormRange Form = 'r'<<24 | 'a'<<16 | 'n'<<8 | 'g' // 'rang'
	// FormRelativePosition: # Discussion
	FormRelativePosition Form = 'r'<<24 | 'e'<<16 | 'l'<<8 | 'e' // 'rele'
	// FormTest: # Discussion
	FormTest Form = 't'<<24 | 'e'<<16 | 's'<<8 | 't' // 'test'
	// FormUniqueID: Specifies a value that uniquely identifies an object within its container or across an application.
	FormUniqueID Form = 'I'<<24 | 'D'<<16 | ' '<<8 | ' ' // 'ID  '
)

func (Form) String

func (e Form) String() string

type FormatVersionChunk

type FormatVersionChunk [6]uint16

See: https://developer.apple.com/documentation/coreservices/formatversionchunk FormatVersionChunk is opaque storage with the size and alignment C gives FormatVersionChunk: 12 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 12 into.

type FsAtMark added in v0.5.1

type FsAtMark uint32
const (
	FsAtMarkValue FsAtMark = 0
	FsFromLEOF    FsAtMark = 2
	FsFromMark    FsAtMark = 3
	FsFromStart   FsAtMark = 1
)

func (FsAtMark) String added in v0.6.17

func (e FsAtMark) String() string

type FsCurPerm added in v0.5.1

type FsCurPerm uint32
const (
	FsCurPermValue FsCurPerm = 0
	FsRdPerm       FsCurPerm = 0x1
	FsRdWrPerm     FsCurPerm = 0x3
	FsRdWrShPerm   FsCurPerm = 0x4
	FsWrPerm       FsCurPerm = 0x2
)

func (FsCurPerm) String added in v0.6.17

func (e FsCurPerm) String() string

type FsRdAccessPerm added in v0.5.1

type FsRdAccessPerm uint32
const (
	FsRdAccessPermValue FsRdAccessPerm = 0x1
	FsRdDenyPerm        FsRdAccessPerm = 0x10
	FsWrAccessPerm      FsRdAccessPerm = 0x2
	FsWrDenyPerm        FsRdAccessPerm = 0x20
)

func (FsRdAccessPerm) String added in v0.6.17

func (e FsRdAccessPerm) String() string

type FsRt added in v0.5.1

type FsRt uint32
const (
	FsRtDirID FsRt = 2
	FsRtParID FsRt = 1
)

func (FsRt) String added in v0.5.1

func (e FsRt) String() string

type FsSBPartialName added in v0.5.1

type FsSBPartialName uint32
const (
	FsSBAccessDate          FsSBPartialName = 0x20000
	FsSBAttributeModDate    FsSBPartialName = 0x10000
	FsSBDrBkDat             FsSBPartialName = 0x800
	FsSBDrCrDat             FsSBPartialName = 0x200
	FsSBDrFndrInfo          FsSBPartialName = 0x1000
	FsSBDrMdDat             FsSBPartialName = 0x400
	FsSBDrNmFls             FsSBPartialName = 0x10
	FsSBDrParID             FsSBPartialName = 0x2000
	FsSBDrUsrWds            FsSBPartialName = 0x8
	FsSBFlAttrib            FsSBPartialName = 0x4
	FsSBFlBkDat             FsSBPartialName = 0x800
	FsSBFlCrDat             FsSBPartialName = 0x200
	FsSBFlFndrInfo          FsSBPartialName = 0x8
	FsSBFlLgLen             FsSBPartialName = 0x20
	FsSBFlMdDat             FsSBPartialName = 0x400
	FsSBFlParID             FsSBPartialName = 0x2000
	FsSBFlPyLen             FsSBPartialName = 0x40
	FsSBFlRLgLen            FsSBPartialName = 0x80
	FsSBFlRPyLen            FsSBPartialName = 0x100
	FsSBFlXFndrInfo         FsSBPartialName = 0x1000
	FsSBFullName            FsSBPartialName = 0x2
	FsSBGroupID             FsSBPartialName = 0x400000
	FsSBNegate              FsSBPartialName = 0x4000
	FsSBNodeID              FsSBPartialName = 0x8000
	FsSBPartialNameValue    FsSBPartialName = 0x1
	FsSBPermissions         FsSBPartialName = 0x40000
	FsSBSkipHiddenItems     FsSBPartialName = 0x100000
	FsSBSkipPackageContents FsSBPartialName = 0x80000
	FsSBUserID              FsSBPartialName = 0x200000
)

func (FsSBPartialName) String added in v0.6.17

func (e FsSBPartialName) String() string

type FsSBPartialNameBit added in v0.5.1

type FsSBPartialNameBit uint32
const (
	FsSBAccessDateBit          FsSBPartialNameBit = 17
	FsSBAttributeModDateBit    FsSBPartialNameBit = 16
	FsSBDrBkDatBit             FsSBPartialNameBit = 11
	FsSBDrCrDatBit             FsSBPartialNameBit = 9
	FsSBDrFndrInfoBit          FsSBPartialNameBit = 12
	FsSBDrMdDatBit             FsSBPartialNameBit = 10
	FsSBDrNmFlsBit             FsSBPartialNameBit = 4
	FsSBDrParIDBit             FsSBPartialNameBit = 13
	FsSBDrUsrWdsBit            FsSBPartialNameBit = 3
	FsSBFlAttribBit            FsSBPartialNameBit = 2
	FsSBFlBkDatBit             FsSBPartialNameBit = 11
	FsSBFlCrDatBit             FsSBPartialNameBit = 9
	FsSBFlFndrInfoBit          FsSBPartialNameBit = 3
	FsSBFlLgLenBit             FsSBPartialNameBit = 5
	FsSBFlMdDatBit             FsSBPartialNameBit = 10
	FsSBFlParIDBit             FsSBPartialNameBit = 13
	FsSBFlPyLenBit             FsSBPartialNameBit = 6
	FsSBFlRLgLenBit            FsSBPartialNameBit = 7
	FsSBFlRPyLenBit            FsSBPartialNameBit = 8
	FsSBFlXFndrInfoBit         FsSBPartialNameBit = 12
	FsSBFullNameBit            FsSBPartialNameBit = 1
	FsSBGroupIDBit             FsSBPartialNameBit = 22
	FsSBNegateBit              FsSBPartialNameBit = 14
	FsSBNodeIDBit              FsSBPartialNameBit = 15
	FsSBPartialNameBitValue    FsSBPartialNameBit = 0
	FsSBPermissionsBit         FsSBPartialNameBit = 18
	FsSBSkipHiddenItemsBit     FsSBPartialNameBit = 20
	FsSBSkipPackageContentsBit FsSBPartialNameBit = 19
	FsSBUserIDBit              FsSBPartialNameBit = 21
)

func (FsSBPartialNameBit) String added in v0.6.17

func (e FsSBPartialNameBit) String() string

type FsUnix added in v0.5.1

type FsUnix uint32
const (
	FsUnixPriv FsUnix = 1
)

func (FsUnix) String added in v0.5.1

func (e FsUnix) String() string

type Fsm

type Fsm int32
const (
	FsmBadFFSNameErr        Fsm = -433
	FsmBadFSDLenErr         Fsm = -434
	FsmBadFSDVersionErr     Fsm = -436
	FsmBusyFFSErr           Fsm = -432
	FsmDuplicateFSIDErr     Fsm = -435
	FsmFFSNotFoundErr       Fsm = -431
	FsmNoAlternateStackErr  Fsm = -437
	FsmUnknownFSMMessageErr Fsm = -438
)

func (Fsm) String

func (e Fsm) String() string

type GenericDocumentIconResource

type GenericDocumentIconResource int32
const (
	AppleMenuFolderIconResource      GenericDocumentIconResource = -3982
	DesktopIconResource              GenericDocumentIconResource = -3992
	FloppyIconResource               GenericDocumentIconResource = -3998
	GenericApplicationIconResource   GenericDocumentIconResource = -3996
	GenericCDROMIconResource         GenericDocumentIconResource = -3987
	GenericDeskAccessoryIconResource GenericDocumentIconResource = -3991
	GenericDocumentIconResourceValue GenericDocumentIconResource = -4000
	GenericEditionFileIconResource   GenericDocumentIconResource = -3989
	GenericExtensionIconResource     GenericDocumentIconResource = -16415
	GenericFileServerIconResource    GenericDocumentIconResource = -3972
	GenericFolderIconResource        GenericDocumentIconResource = -3999
	GenericHardDiskIconResource      GenericDocumentIconResource = -3995
	GenericMoverObjectIconResource   GenericDocumentIconResource = -3969
	GenericPreferencesIconResource   GenericDocumentIconResource = -3971
	GenericQueryDocumentIconResource GenericDocumentIconResource = -16506
	GenericRAMDiskIconResource       GenericDocumentIconResource = -3988
	GenericStationeryIconResource    GenericDocumentIconResource = -3985
	GenericSuitcaseIconResource      GenericDocumentIconResource = -3970
	OpenFolderIconResource           GenericDocumentIconResource = -3997
	PrivateFolderIconResource        GenericDocumentIconResource = -3994
	SystemFolderIconResource         GenericDocumentIconResource = -3983
	TrashIconResource                GenericDocumentIconResource = -3993
)

func (GenericDocumentIconResource) String

type GestaltAFP added in v0.5.1

type GestaltAFP int32
const (
	GestaltAFPClient              GestaltAFP = 'a'<<24 | 'f'<<16 | 'p'<<8 | 's' // 'afps'
	GestaltAFPClient3_5           GestaltAFP = 0x1
	GestaltAFPClient3_6           GestaltAFP = 0x2
	GestaltAFPClient3_6_1         GestaltAFP = 0x3
	GestaltAFPClient3_6_2         GestaltAFP = 0x4
	GestaltAFPClient3_6_3         GestaltAFP = 0x5
	GestaltAFPClient3_7           GestaltAFP = 0x6
	GestaltAFPClient3_7_2         GestaltAFP = 0x7
	GestaltAFPClient3_8           GestaltAFP = 0x8
	GestaltAFPClient3_8_1         GestaltAFP = 0x9
	GestaltAFPClient3_8_3         GestaltAFP = 0xa
	GestaltAFPClient3_8_4         GestaltAFP = 0xb
	GestaltAFPClientAttributeMask GestaltAFP = -65536
	GestaltAFPClientCfgRsrc       GestaltAFP = 16
	GestaltAFPClientMultiReq      GestaltAFP = 31
	GestaltAFPClientSupportsIP    GestaltAFP = 29
	GestaltAFPClientVMUI          GestaltAFP = 30
	GestaltAFPClientVersionMask   GestaltAFP = 0xffff
)

func (GestaltAFP) String added in v0.5.1

func (e GestaltAFP) String() string

type GestaltALMAttr added in v0.5.1

type GestaltALMAttr uint32
const (
	GestaltALMAttrValue          GestaltALMAttr = 't'<<24 | 'r'<<16 | 'i'<<8 | 'p' // 'trip'
	GestaltALMHasCFMSupport      GestaltALMAttr = 2
	GestaltALMHasRescanNotifiers GestaltALMAttr = 3
	GestaltALMHasSFGroup         GestaltALMAttr = 1
	GestaltALMPresent            GestaltALMAttr = 0
)

func (GestaltALMAttr) String added in v0.6.17

func (e GestaltALMAttr) String() string

type GestaltALMHasSF added in v0.5.1

type GestaltALMHasSF uint32
const (
	GestaltALMHasSFLocation GestaltALMHasSF = 1
)

func (GestaltALMHasSF) String added in v0.5.1

func (e GestaltALMHasSF) String() string

type GestaltATA added in v0.5.1

type GestaltATA uint32
const (
	GestaltATAAttr    GestaltATA = 'a'<<24 | 't'<<16 | 'a'<<8 | ' ' // 'ata '
	GestaltATAPresent GestaltATA = 0
)

func (GestaltATA) String added in v0.5.1

func (e GestaltATA) String() string

type GestaltATSU added in v0.5.1

type GestaltATSU uint32
const (
	// GestaltATSUAscentDescentControlsFeature: If the bit specified by this mask is set, ascent and descent controls (`kATSUDescentTag` and `kATSUAscentTag`) are available.
	GestaltATSUAscentDescentControlsFeature GestaltATSU = 0x10
	// GestaltATSUBatchBreakLinesFeature: If the bit specified by this mask is set, the [ATSUBatchBreakLines] function is available.
	GestaltATSUBatchBreakLinesFeature GestaltATSU = 0x10
	// GestaltATSUBiDiCursorPositionFeature: If the bit specified by this mask is set, support for bidirectional cursor positioning is available.
	GestaltATSUBiDiCursorPositionFeature GestaltATSU = 0x20
	// GestaltATSUByCharacterClusterFeature: If the bit specified by this mask is set, ATSUI cursor movement types are available.
	GestaltATSUByCharacterClusterFeature GestaltATSU = 0x10
	// GestaltATSUDecimalTabFeature: If the bit specified by this mask is set, your application can set a decimal tab character.
	GestaltATSUDecimalTabFeature GestaltATSU = 0x20
	// GestaltATSUDirectAccess: If the bit specified by this mask is set, ATSU direct-access functions are available.
	GestaltATSUDirectAccess GestaltATSU = 0x10
	// GestaltATSUDropShadowStyleFeature: If the bit specified by this mask is set, drop shadow features are available.
	GestaltATSUDropShadowStyleFeature GestaltATSU = 0x20
	// GestaltATSUFallbacksFeature: If the bit specified by this mask is set, the functions [ATSUSetFontFallbacks] and [ATSUGetFontFallbacks] are available.
	GestaltATSUFallbacksFeature GestaltATSU = 0x1
	// GestaltATSUFallbacksObjFeatures: If the bit specified by this mask is set, [ATSUFontFallbacks] objects are available.
	GestaltATSUFallbacksObjFeatures GestaltATSU = 0x8
	// GestaltATSUFeatures: # Discussion
	GestaltATSUFeatures GestaltATSU = 'u'<<24 | 'i'<<16 | 's'<<8 | 'f' // 'uisf'
	// GestaltATSUGlyphBoundsFeature: If the bit specified by this mask is set, the function [ATSUGetGlyphBounds] is available.
	GestaltATSUGlyphBoundsFeature GestaltATSU = 0x1
	// GestaltATSUHighlightColorControlFeature: If the bit specified by this mask is set, your application can control highlight color.
	GestaltATSUHighlightColorControlFeature GestaltATSU = 0x20
	// GestaltATSUHighlightInactiveTextFeature: If the bit specified by this mask is set, the highlight inactive text feature is available.
	GestaltATSUHighlightInactiveTextFeature GestaltATSU = 0x10
	// GestaltATSUIgnoreLeadingFeature: If the bit specified by this mask is set, the line layout option (`kATSIgnoreFontLeadingTag`) to ignore the font leading value is available.
	GestaltATSUIgnoreLeadingFeature GestaltATSU = 0x8
	// GestaltATSULayoutCacheClearFeature: If the bit specified by this mask is set, the function [ATSUClearLayoutCache] is available.
	GestaltATSULayoutCacheClearFeature GestaltATSU = 0x1
	// GestaltATSULayoutCreateAndCopyFeature: If the bit specified by this mask is set, the function [ATSUCreateAndCopyTextLayout] is available.
	GestaltATSULayoutCreateAndCopyFeature GestaltATSU = 0x1
	// GestaltATSULineControlFeature: If the bit specified by this mask is set, the functions [ATSUCopyLineControls], [ATSUSetLineControls], [ATSUGetLineControl], [ATSUGetAllLineControls], and [ATSUClearLineControls] are available.
	GestaltATSULineControlFeature GestaltATSU = 0x1
	// GestaltATSULowLevelOrigFeatures: If the bit specified by this mask is set, the low-level features introduced in ATSUI version 2.0 are available.
	GestaltATSULowLevelOrigFeatures GestaltATSU = 0x4
	// GestaltATSUMemoryFeature: If the bit specified by this mask is set, the functions [ATSUCreateMemorySetting], [ATSUSetCurrentMemorySetting], [ATSUGetCurrentMemorySetting], and [ATSUDisposeMemorySetting] are available.
	GestaltATSUMemoryFeature GestaltATSU = 0x1
	// GestaltATSUNearestCharLineBreakFeature: If the bit specified by this mask is set, the nearest character line break feature is available.
	GestaltATSUNearestCharLineBreakFeature GestaltATSU = 0x20
	// GestaltATSUPositionToCursorFeature: If the bit specified by this mask is set, the position-to-cursor feature is available.
	GestaltATSUPositionToCursorFeature GestaltATSU = 0x10
	// GestaltATSUStrikeThroughStyleFeature: If the bit specified by this mask is set, strike through styles are available.
	GestaltATSUStrikeThroughStyleFeature GestaltATSU = 0x20
	// GestaltATSUTabSupportFeature: If the bit specified by this mask is set, support for tabs is available.
	GestaltATSUTabSupportFeature GestaltATSU = 0x10
	// GestaltATSUTextLocatorUsageFeature: If the bit specified by this mask is set, the text-break locator attribute is available for both style and text layout objects.
	GestaltATSUTextLocatorUsageFeature GestaltATSU = 0x2
	// GestaltATSUTrackingFeature: If the bit specified by this mask constant is set, the functions [ATSUCountFontTracking] and [ATSUGetIndFontTracking] are available.
	GestaltATSUTrackingFeature GestaltATSU = 0x1
	// GestaltATSUUnderlineOptionsStyleFeature: If the bit specified by this mask is set, underline options are available.
	GestaltATSUUnderlineOptionsStyleFeature GestaltATSU = 0x20
)

func (GestaltATSU) String added in v0.5.1

func (e GestaltATSU) String() string

type GestaltATSUVersion added in v0.5.1

type GestaltATSUVersion uint32
const (
	// GestaltATSUUpdate1: Indicates that version 1.1 of ATSUI is installed on the user’s system.
	GestaltATSUUpdate1 GestaltATSUVersion = 131072
	// GestaltATSUUpdate2: Indicates that version 1.2 of ATSUI is installed on the user’s system.
	GestaltATSUUpdate2 GestaltATSUVersion = 196608
	// GestaltATSUUpdate3: Indicates that version 2.0 of ATSUI is installed on the user’s system.
	GestaltATSUUpdate3 GestaltATSUVersion = 262144
	// GestaltATSUUpdate4: Indicates that ATSUI for a version of macOS from 10.0.1 through 10.0.4 is installed on the user’s system.
	GestaltATSUUpdate4 GestaltATSUVersion = 327680
	// GestaltATSUUpdate5: Indicates that version 2.3 of ATSUI is installed on the user’s system.
	GestaltATSUUpdate5 GestaltATSUVersion = 393216
	// GestaltATSUUpdate6: Indicates that version 2.4 of ATSUI is installed on the user’s system.
	GestaltATSUUpdate6 GestaltATSUVersion = 458752
	// GestaltATSUUpdate7: Indicates that version 2.5 of ATSUI is installed on the user’s system.
	GestaltATSUUpdate7 GestaltATSUVersion = 524288
	// GestaltATSUVersionValue: Specifies the version of ATSUI installed on the user’s system.
	GestaltATSUVersionValue GestaltATSUVersion = 'u'<<24 | 'i'<<16 | 's'<<8 | 'v' // 'uisv'
	// GestaltOriginalATSUVersion: Indicates that version 1.0 of ATSUI is installed on the user’s system.
	GestaltOriginalATSUVersion GestaltATSUVersion = 65536
)

func (GestaltATSUVersion) String added in v0.6.17

func (e GestaltATSUVersion) String() string

type GestaltATalk added in v0.5.1

type GestaltATalk uint32
const (
	// GestaltATalkVersion: # Discussion
	GestaltATalkVersion GestaltATalk = 'a'<<24 | 't'<<16 | 'k'<<8 | 'v' // 'atkv'
)

func (GestaltATalk) String added in v0.5.1

func (e GestaltATalk) String() string

type GestaltAUX added in v0.5.1

type GestaltAUX uint32
const (
	// GestaltAUXVersion: The version of A/UX if it is currently executing.
	GestaltAUXVersion GestaltAUX = 'a'<<24 | '/'<<16 | 'u'<<8 | 'x' // 'a/ux'
)

func (GestaltAUX) String added in v0.5.1

func (e GestaltAUX) String() string

type GestaltAVLTree added in v0.5.1

type GestaltAVLTree uint32
const (
	GestaltAVLTreeAttr                       GestaltAVLTree = 't'<<24 | 'r'<<16 | 'e'<<8 | 'e' // 'tree'
	GestaltAVLTreePresentBit                 GestaltAVLTree = 0
	GestaltAVLTreeSupportsHandleBasedTreeBit GestaltAVLTree = 1
	GestaltAVLTreeSupportsTreeLockingBit     GestaltAVLTree = 2
)

func (GestaltAVLTree) String added in v0.5.1

func (e GestaltAVLTree) String() string

type GestaltAddressingModeAttr added in v0.5.1

type GestaltAddressingModeAttr uint32
const (
	// Gestalt32BitAddressing: If `true`, the operating system is using 32-bit addressing mode.
	Gestalt32BitAddressing GestaltAddressingModeAttr = 0
	// Gestalt32BitCapable: If `true`, Machine is 32-bit capable.
	Gestalt32BitCapable GestaltAddressingModeAttr = 2
	// Gestalt32BitSysZone: If `true`, there is a 32-bit compatible system zone.
	Gestalt32BitSysZone GestaltAddressingModeAttr = 1
	// GestaltAddressingModeAttrValue: The [Gestalt] selector you pass to determine the addressing mode attributes that are present.
	GestaltAddressingModeAttrValue GestaltAddressingModeAttr = 'a'<<24 | 'd'<<16 | 'd'<<8 | 'r' // 'addr'
)

func (GestaltAddressingModeAttr) String added in v0.6.17

func (e GestaltAddressingModeAttr) String() string

type GestaltAdminFeaturesFlagsAttr added in v0.5.1

type GestaltAdminFeaturesFlagsAttr uint32
const (
	// GestaltAdminFeaturesFlagsAttrValue: The [Gestalt] selector you pass to determine the admin features that are present.
	GestaltAdminFeaturesFlagsAttrValue GestaltAdminFeaturesFlagsAttr = 'f'<<24 | 'r'<<16 | 'e'<<8 | 'd' // 'fred'
	// GestaltFinderUsesSpecialOpenFoldersFile: Specifies that the Finder uses a special file to store the list of open folders.
	GestaltFinderUsesSpecialOpenFoldersFile GestaltAdminFeaturesFlagsAttr = 0
)

func (GestaltAdminFeaturesFlagsAttr) String added in v0.6.17

type GestaltAliasMgr added in v0.5.1

type GestaltAliasMgr uint32
const (
	// GestaltAliasMgrAttr: The selector you pass to the [Gestalt] function to determine the Alias Manager attributes.
	GestaltAliasMgrAttr                             GestaltAliasMgr = 'a'<<24 | 'l'<<16 | 'i'<<8 | 's' // 'alis'
	GestaltAliasMgrFollowsAliasesWhenResolving      GestaltAliasMgr = 4
	GestaltAliasMgrPrefersPath                      GestaltAliasMgr = 7
	GestaltAliasMgrPresent                          GestaltAliasMgr = 0
	GestaltAliasMgrRequiresAccessors                GestaltAliasMgr = 8
	GestaltAliasMgrResolveAliasFileWithMountOptions GestaltAliasMgr = 3
	GestaltAliasMgrSupportsAOCEKeychain             GestaltAliasMgr = 2
	GestaltAliasMgrSupportsExtendedCalls            GestaltAliasMgr = 5
	GestaltAliasMgrSupportsFSCalls                  GestaltAliasMgr = 6
	GestaltAliasMgrSupportsRemoteAppletalk          GestaltAliasMgr = 1
)

func (GestaltAliasMgr) String added in v0.5.1

func (e GestaltAliasMgr) String() string

type GestaltAppearanceAttr added in v0.5.1

type GestaltAppearanceAttr uint32
const (
	// GestaltAppearanceAttrValue: The [Gestalt] selector passed to determine whether the Appearance Manager is present.
	GestaltAppearanceAttrValue GestaltAppearanceAttr = 'a'<<24 | 'p'<<16 | 'p'<<8 | 'r' // 'appr'
	// GestaltAppearanceCompatMode: # Discussion
	GestaltAppearanceCompatMode GestaltAppearanceAttr = 1
	// GestaltAppearanceExists: # Discussion
	GestaltAppearanceExists GestaltAppearanceAttr = 0
)

func (GestaltAppearanceAttr) String added in v0.6.17

func (e GestaltAppearanceAttr) String() string

type GestaltAppleEventsAttr added in v0.5.1

type GestaltAppleEventsAttr uint32
const (
	// GestaltAppleEventsAttrValue: # Discussion
	GestaltAppleEventsAttrValue GestaltAppleEventsAttr = 'e'<<24 | 'v'<<16 | 'n'<<8 | 't' // 'evnt'
	// GestaltAppleEventsPresent: A [Gestalt] attribute constant.
	GestaltAppleEventsPresent GestaltAppleEventsAttr = 0
	// GestaltOSLInSystem: A [Gestalt] attribute constant.
	GestaltOSLInSystem GestaltAppleEventsAttr = 2
	// GestaltScriptingSupport: # Discussion
	GestaltScriptingSupport       GestaltAppleEventsAttr = 1
	GestaltSupportsApplicationURL GestaltAppleEventsAttr = 4
)

func (GestaltAppleEventsAttr) String added in v0.6.17

func (e GestaltAppleEventsAttr) String() string

type GestaltAppleScriptAttr added in v0.5.1

type GestaltAppleScriptAttr uint32
const (
	// GestaltAppleScriptAttrValue: # Discussion
	GestaltAppleScriptAttrValue      GestaltAppleScriptAttr = 'a'<<24 | 's'<<16 | 'c'<<8 | 'r' // 'ascr'
	GestaltAppleScriptPowerPCSupport GestaltAppleScriptAttr = 1
	// GestaltAppleScriptPresent: A [Gestalt] attribute constant.
	GestaltAppleScriptPresent GestaltAppleScriptAttr = 0
)

func (GestaltAppleScriptAttr) String added in v0.6.17

func (e GestaltAppleScriptAttr) String() string

type GestaltAppleTalk added in v0.5.1

type GestaltAppleTalk uint32
const (
	// GestaltAppleTalkVersion: # Discussion
	GestaltAppleTalkVersion GestaltAppleTalk = 'a'<<24 | 't'<<16 | 'l'<<8 | 'k' // 'atlk'
)

func (GestaltAppleTalk) String added in v0.5.1

func (e GestaltAppleTalk) String() string

type GestaltArbitorAttr added in v0.5.1

type GestaltArbitorAttr uint32
const (
	GestaltArbitorAttrValue        GestaltArbitorAttr = 'a'<<24 | 'r'<<16 | 'b'<<8 | ' ' // 'arb '
	GestaltSerialArbitrationExists GestaltArbitorAttr = 0
)

func (GestaltArbitorAttr) String added in v0.6.17

func (e GestaltArbitorAttr) String() string

type GestaltBusClk added in v0.5.1

type GestaltBusClk uint32
const (
	GestaltBusClkSpeed GestaltBusClk = 'b'<<24 | 'c'<<16 | 'l'<<8 | 'k' // 'bclk'
)

func (GestaltBusClk) String added in v0.5.1

func (e GestaltBusClk) String() string

type GestaltBusClkSpeedM added in v0.5.1

type GestaltBusClkSpeedM uint32
const (
	GestaltBusClkSpeedMHz GestaltBusClkSpeedM = 'b'<<24 | 'c'<<16 | 'l'<<8 | 'm' // 'bclm'
)

func (GestaltBusClkSpeedM) String added in v0.5.1

func (e GestaltBusClkSpeedM) String() string

type GestaltCF added in v0.5.1

type GestaltCF uint32
const (
	GestaltCFM99Present     GestaltCF = 2
	GestaltCFM99PresentMask GestaltCF = 0x4
	GestaltCFMAttr          GestaltCF = 'c'<<24 | 'f'<<16 | 'r'<<8 | 'g' // 'cfrg'
	GestaltCFMPresent       GestaltCF = 0
	GestaltCFMPresentMask   GestaltCF = 0x1
)

func (GestaltCF) String added in v0.5.1

func (e GestaltCF) String() string

type GestaltCPU486 added in v0.5.1

type GestaltCPU486 uint32
const (
	GestaltCPU486Value   GestaltCPU486 = 'i'<<24 | '4'<<16 | '8'<<8 | '6' // 'i486'
	GestaltCPUPentium    GestaltCPU486 = 'i'<<24 | '5'<<16 | '8'<<8 | '6' // 'i586'
	GestaltCPUPentium4   GestaltCPU486 = 'i'<<24 | '5'<<16 | 'i'<<8 | 'v' // 'i5iv'
	GestaltCPUPentiumII  GestaltCPU486 = 'i'<<24 | '5'<<16 | 'i'<<8 | 'i' // 'i5ii'
	GestaltCPUPentiumPro GestaltCPU486 = 'i'<<24 | '5'<<16 | 'p'<<8 | 'r' // 'i5pr'
	GestaltCPUX86        GestaltCPU486 = 'i'<<24 | 'x'<<16 | 'x'<<8 | 'x' // 'ixxx'
)

func (GestaltCPU486) String added in v0.6.17

func (e GestaltCPU486) String() string

type GestaltCPUAR added in v0.5.1

type GestaltCPUAR uint32
const (
	GestaltCPUARM64     GestaltCPUAR = 'a'<<24 | 'x'<<16 | '6'<<8 | '4' // 'ax64'
	GestaltCPUARMFamily GestaltCPUAR = 'a'<<24 | 'r'<<16 | 'm'<<8 | ' ' // 'arm '
)

func (GestaltCPUAR) String added in v0.5.1

func (e GestaltCPUAR) String() string

type GestaltCPUApollo added in v0.5.1

type GestaltCPUApollo uint32
const (
	GestaltCPU750FX       GestaltCPUApollo = 0x120
	GestaltCPU970         GestaltCPUApollo = 0x139
	GestaltCPU970FX       GestaltCPUApollo = 0x13c
	GestaltCPU970MP       GestaltCPUApollo = 0x144
	GestaltCPUApolloValue GestaltCPUApollo = 0x111
	GestaltCPUG47447      GestaltCPUApollo = 0x112
)

func (GestaltCPUApollo) String added in v0.6.17

func (e GestaltCPUApollo) String() string

type GestaltCRM added in v0.5.1

type GestaltCRM uint32
const (
	GestaltCRMAttr          GestaltCRM = 'c'<<24 | 'r'<<16 | 'm'<<8 | ' ' // 'crm '
	GestaltCRMPersistentFix GestaltCRM = 1
	GestaltCRMPresent       GestaltCRM = 0
	GestaltCRMToolRsrcCalls GestaltCRM = 2
)

func (GestaltCRM) String added in v0.5.1

func (e GestaltCRM) String() string

type GestaltCTB added in v0.5.1

type GestaltCTB uint32
const (
	// GestaltCTBVersion: The version number of the Communications Toolbox (in the low-order word of the return value).
	GestaltCTBVersion GestaltCTB = 'c'<<24 | 't'<<16 | 'b'<<8 | 'v' // 'ctbv'
)

func (GestaltCTB) String added in v0.5.1

func (e GestaltCTB) String() string

type GestaltCarbon added in v0.5.1

type GestaltCarbon uint32
const (
	GestaltCarbonVersion GestaltCarbon = 'c'<<24 | 'b'<<16 | 'o'<<8 | 'n' // 'cbon'
)

func (GestaltCarbon) String added in v0.5.1

func (e GestaltCarbon) String() string

type GestaltCloseView added in v0.5.1

type GestaltCloseView uint32
const (
	GestaltCloseViewAttr               GestaltCloseView = 'B'<<24 | 'S'<<16 | 'D'<<8 | 'a' // 'BSDa'
	GestaltCloseViewDisplayMgrFriendly GestaltCloseView = 1
	GestaltCloseViewEnabled            GestaltCloseView = 0
)

func (GestaltCloseView) String added in v0.5.1

func (e GestaltCloseView) String() string

type GestaltCollectionMgr added in v0.5.1

type GestaltCollectionMgr uint32
const (
	// GestaltCollectionMgrVersion: Collection Manager version.
	GestaltCollectionMgrVersion GestaltCollectionMgr = 'c'<<24 | 'l'<<16 | 't'<<8 | 'n' // 'cltn'
)

func (GestaltCollectionMgr) String added in v0.5.1

func (e GestaltCollectionMgr) String() string

type GestaltColorMatchingAttr added in v0.5.1

type GestaltColorMatchingAttr uint32
const (
	// GestaltColorMatchingAttrValue: The selector for obtaining version information.
	GestaltColorMatchingAttrValue GestaltColorMatchingAttr = 'c'<<24 | 'm'<<16 | 't'<<8 | 'a' // 'cmta'
	// GestaltColorMatchingLibLoaded: This constant is provided for backward compatibility only.
	GestaltColorMatchingLibLoaded GestaltColorMatchingAttr = 1
	// GestaltHighLevelMatching: This constant is provided for backward compatibility only.
	GestaltHighLevelMatching GestaltColorMatchingAttr = 0
)

func (GestaltColorMatchingAttr) String added in v0.6.17

func (e GestaltColorMatchingAttr) String() string

type GestaltColorMatchingVersion added in v0.5.1

type GestaltColorMatchingVersion uint32
const (
	// GestaltColorMatchingVersionValue: The selector for obtaining version information.
	GestaltColorMatchingVersionValue GestaltColorMatchingVersion = 'c'<<24 | 'm'<<16 | 't'<<8 | 'c' // 'cmtc'
	// GestaltColorSync10: A [Gestalt] response value of `gestaltColorSync10` indicates version 1.0 of the ColorSync Manager is present.
	GestaltColorSync10 GestaltColorMatchingVersion = 0x100
	// GestaltColorSync104: A [Gestalt] response value of `gestaltColorSync104` indicates version 1.4 of the ColorSync Manager is present.
	GestaltColorSync104 GestaltColorMatchingVersion = 0x104
	// GestaltColorSync105: A [Gestalt] response value of `gestaltColorSync105` indicates version 1.5 of the ColorSync Manager is present.
	GestaltColorSync105 GestaltColorMatchingVersion = 0x105
	// GestaltColorSync11: A [Gestalt] response value of `gestaltColorSync11` indicates version 1.0.3 of the ColorSync Manager is present.
	GestaltColorSync11 GestaltColorMatchingVersion = 0x110
	// GestaltColorSync20: A [Gestalt] response value of `gestaltColorSync20` indicates version 2.0 of the ColorSync Manager is present.
	GestaltColorSync20 GestaltColorMatchingVersion = 0x200
	// GestaltColorSync21: A [Gestalt] response value of `gestaltColorSync21` indicates version 2.1 of the ColorSync Manager is present.
	GestaltColorSync21  GestaltColorMatchingVersion = 0x210
	GestaltColorSync211 GestaltColorMatchingVersion = 0x211
	GestaltColorSync212 GestaltColorMatchingVersion = 0x212
	GestaltColorSync213 GestaltColorMatchingVersion = 0x213
	// GestaltColorSync25: A [Gestalt] response value of `gestaltColorSync25` indicates version 2.5 of the ColorSync Manager is present.
	GestaltColorSync25  GestaltColorMatchingVersion = 0x250
	GestaltColorSync26  GestaltColorMatchingVersion = 0x260
	GestaltColorSync261 GestaltColorMatchingVersion = 0x261
	GestaltColorSync30  GestaltColorMatchingVersion = 0x300
)

func (GestaltColorMatchingVersion) String added in v0.6.17

type GestaltColorPickerVersion added in v0.5.1

type GestaltColorPickerVersion uint32
const (
	GestaltColorPicker             GestaltColorPickerVersion = 'c'<<24 | 'p'<<16 | 'k'<<8 | 'r' // 'cpkr'
	GestaltColorPickerVersionValue GestaltColorPickerVersion = 'c'<<24 | 'p'<<16 | 'k'<<8 | 'r' // 'cpkr'
)

func (GestaltColorPickerVersion) String added in v0.6.17

func (e GestaltColorPickerVersion) String() string

type GestaltComponent added in v0.5.1

type GestaltComponent uint32
const (
	// GestaltComponentMgr: The [Gestalt] selector you pass to determine what version of the Component Manager is present.
	GestaltComponentMgr      GestaltComponent = 'c'<<24 | 'p'<<16 | 'n'<<8 | 't' // 'cpnt'
	GestaltComponentPlatform GestaltComponent = 'c'<<24 | 'o'<<16 | 'p'<<8 | 'l' // 'copl'
)

func (GestaltComponent) String added in v0.5.1

func (e GestaltComponent) String() string

type GestaltCompression added in v0.5.1

type GestaltCompression uint32
const (
	GestaltCompressionMgr GestaltCompression = 'i'<<24 | 'c'<<16 | 'm'<<8 | 'p' // 'icmp'
)

func (GestaltCompression) String added in v0.5.1

func (e GestaltCompression) String() string

type GestaltConnMgr added in v0.5.1

type GestaltConnMgr uint32
const (
	GestaltConnMgrAttr GestaltConnMgr = 'c'<<24 | 'o'<<16 | 'n'<<8 | 'n' // 'conn'
	// GestaltConnMgrCMSearchFix: The `gestaltConnMgrCMSearchFix` bit flag indicates that the fix is present that allows the [CMAddSearch] function to work over the `mAttn` channel.
	GestaltConnMgrCMSearchFix  GestaltConnMgr = 1
	GestaltConnMgrErrorString  GestaltConnMgr = 2
	GestaltConnMgrMultiAsyncIO GestaltConnMgr = 3
	GestaltConnMgrPresent      GestaltConnMgr = 0
)

func (GestaltConnMgr) String added in v0.5.1

func (e GestaltConnMgr) String() string

type GestaltControl added in v0.5.1

type GestaltControl uint32
const (
	// GestaltControlMgrAttr: # Discussion
	GestaltControlMgrAttr GestaltControl = 'c'<<24 | 'n'<<16 | 't'<<8 | 'l' // 'cntl'
	// GestaltControlMgrPresent: If the bit specified by this mask is set, the Control Manager functionality for Appearance Manager 1.1 is available.
	GestaltControlMgrPresent     GestaltControl = 1
	GestaltControlMgrPresentBit  GestaltControl = 0
	GestaltControlMsgPresentMask GestaltControl = 1
)

func (GestaltControl) String added in v0.5.1

func (e GestaltControl) String() string

type GestaltControlMgr added in v0.5.1

type GestaltControlMgr uint32
const (
	GestaltControlMgrVersion GestaltControlMgr = 'c'<<24 | 'm'<<16 | 'v'<<8 | 'r' // 'cmvr'
)

func (GestaltControlMgr) String added in v0.5.1

func (e GestaltControlMgr) String() string

type GestaltControlStripAttr added in v0.5.1

type GestaltControlStripAttr uint32
const (
	GestaltControlStripAttrValue    GestaltControlStripAttr = 's'<<24 | 'd'<<16 | 'e'<<8 | 'v' // 'sdev'
	GestaltControlStripExists       GestaltControlStripAttr = 0
	GestaltControlStripUserFont     GestaltControlStripAttr = 2
	GestaltControlStripUserHotKey   GestaltControlStripAttr = 3
	GestaltControlStripVersionFixed GestaltControlStripAttr = 1
)

func (GestaltControlStripAttr) String added in v0.6.17

func (e GestaltControlStripAttr) String() string

type GestaltCountOfCP added in v0.5.1

type GestaltCountOfCP uint32
const (
	GestaltCountOfCPUs GestaltCountOfCP = 'c'<<24 | 'p'<<16 | 'u'<<8 | 's' // 'cpus'
)

func (GestaltCountOfCP) String added in v0.5.1

func (e GestaltCountOfCP) String() string

type GestaltDBAccessMgr added in v0.5.1

type GestaltDBAccessMgr uint32
const (
	GestaltDBAccessMgrAttr    GestaltDBAccessMgr = 'd'<<24 | 'b'<<16 | 'a'<<8 | 'c' // 'dbac'
	GestaltDBAccessMgrPresent GestaltDBAccessMgr = 0
)

func (GestaltDBAccessMgr) String added in v0.5.1

func (e GestaltDBAccessMgr) String() string

type GestaltDITLExt added in v0.5.1

type GestaltDITLExt uint32
const (
	GestaltDITLExtAttr GestaltDITLExt = 'd'<<24 | 'i'<<16 | 't'<<8 | 'l' // 'ditl'
	// GestaltDITLExtPresent: If this flag bit is [TRUE], then the Dialog Manager extensions included in System 7 are available.
	GestaltDITLExtPresent      GestaltDITLExt = 0
	GestaltDITLExtSupportsIctb GestaltDITLExt = 1
)

func (GestaltDITLExt) String added in v0.5.1

func (e GestaltDITLExt) String() string

type GestaltDTP added in v0.5.1

type GestaltDTP uint32
const (
	GestaltDTPInfo GestaltDTP = 'd'<<24 | 't'<<16 | 'p'<<8 | 'x' // 'dtpx'
)

func (GestaltDTP) String added in v0.5.1

func (e GestaltDTP) String() string

type GestaltDTPFeatures added in v0.5.1

type GestaltDTPFeatures uint32
const (
	GestaltDTPFeaturesValue GestaltDTPFeatures = 'd'<<24 | 't'<<16 | 'p'<<8 | 'f' // 'dtpf'
	KDTPThirdPartySupported GestaltDTPFeatures = 0x4
)

func (GestaltDTPFeatures) String added in v0.5.1

func (e GestaltDTPFeatures) String() string

type GestaltDesktopPictures added in v0.5.1

type GestaltDesktopPictures uint32
const (
	GestaltDesktopPicturesAttr      GestaltDesktopPictures = 'd'<<24 | 'k'<<16 | 'p'<<8 | 'x' // 'dkpx'
	GestaltDesktopPicturesDisplayed GestaltDesktopPictures = 1
	GestaltDesktopPicturesInstalled GestaltDesktopPictures = 0
)

func (GestaltDesktopPictures) String added in v0.5.1

func (e GestaltDesktopPictures) String() string

type GestaltDialog added in v0.5.1

type GestaltDialog uint32
const (
	// GestaltDialogMgrAttr: # Discussion
	GestaltDialogMgrAttr             GestaltDialog = 'd'<<24 | 'l'<<16 | 'o'<<8 | 'g' // 'dlog'
	GestaltDialogMgrHasAquaAlertBit  GestaltDialog = 2
	GestaltDialogMgrHasAquaAlertMask GestaltDialog = 4
	// GestaltDialogMgrPresent: If the bit specified by this mask is set, the Dialog Manager functionality for Appearance Manager 1.1 is available.
	GestaltDialogMgrPresent     GestaltDialog = 1
	GestaltDialogMgrPresentBit  GestaltDialog = 0
	GestaltDialogMgrPresentMask GestaltDialog = 1
	GestaltDialogMsgPresentMask GestaltDialog = 1
)

func (GestaltDialog) String added in v0.5.1

func (e GestaltDialog) String() string

type GestaltDictionaryMgr added in v0.5.1

type GestaltDictionaryMgr uint32
const (
	GestaltDictionaryMgrAttr    GestaltDictionaryMgr = 'd'<<24 | 'i'<<16 | 'c'<<8 | 't' // 'dict'
	GestaltDictionaryMgrPresent GestaltDictionaryMgr = 0
)

func (GestaltDictionaryMgr) String added in v0.5.1

func (e GestaltDictionaryMgr) String() string

type GestaltDigitalSignature added in v0.5.1

type GestaltDigitalSignature uint32
const (
	GestaltDigitalSignatureVersion GestaltDigitalSignature = 'd'<<24 | 's'<<16 | 'i'<<8 | 'g' // 'dsig'
)

func (GestaltDigitalSignature) String added in v0.5.1

func (e GestaltDigitalSignature) String() string

type GestaltDiskCache added in v0.5.1

type GestaltDiskCache uint32
const (
	// GestaltDiskCacheSize: A selector that you pass to the [Gestalt] function.
	GestaltDiskCacheSize GestaltDiskCache = 'd'<<24 | 'c'<<16 | 's'<<8 | 'z' // 'dcsz'
)

func (GestaltDiskCache) String added in v0.5.1

func (e GestaltDiskCache) String() string

type GestaltDisplayMgrAttr added in v0.5.1

type GestaltDisplayMgrAttr uint32
const (
	// GestaltDisplayMgrAttrValue: The [Gestalt] selector you pass to determine which Display Manager attributes are present.
	GestaltDisplayMgrAttrValue GestaltDisplayMgrAttr = 'd'<<24 | 'p'<<16 | 'l'<<8 | 'y' // 'dply'
	// GestaltDisplayMgrCanConfirm: Not yet supported.
	GestaltDisplayMgrCanConfirm GestaltDisplayMgrAttr = 4
	// GestaltDisplayMgrCanSwitchMirrored: If `true`, the Display Manager can switch modes on mirrored displays.
	GestaltDisplayMgrCanSwitchMirrored GestaltDisplayMgrAttr = 2
	// GestaltDisplayMgrColorSyncAware: If `true`, Display Manager supports profiles for displays.
	GestaltDisplayMgrColorSyncAware    GestaltDisplayMgrAttr = 5
	GestaltDisplayMgrGeneratesProfiles GestaltDisplayMgrAttr = 6
	// GestaltDisplayMgrPresent: If `true`, the Display Manager is present.
	GestaltDisplayMgrPresent GestaltDisplayMgrAttr = 0
	// GestaltDisplayMgrSetDepthNotifies: If `true`, and you have registered for notification and you will be notified of depth mode changes.
	GestaltDisplayMgrSetDepthNotifies GestaltDisplayMgrAttr = 3
	GestaltDisplayMgrSleepNotifies    GestaltDisplayMgrAttr = 7
)

func (GestaltDisplayMgrAttr) String added in v0.6.17

func (e GestaltDisplayMgrAttr) String() string

type GestaltDragMgrAttr added in v0.5.1

type GestaltDragMgrAttr uint32
const (
	// GestaltCanStartDragInFloatWindow: If the bit specified by this mask is set, the Drag Manager can start a drag in a floating window.
	GestaltCanStartDragInFloatWindow GestaltDragMgrAttr = 4
	// GestaltDragMgrAttrValue: The Gestalt selector passed to determine what features of the Drag Manager are present.
	GestaltDragMgrAttrValue GestaltDragMgrAttr = 'd'<<24 | 'r'<<16 | 'a'<<8 | 'g' // 'drag'
	// GestaltDragMgrFloatingWind: If the bit specified by this mask is set, the Drag Manager floating window support functions are available.
	GestaltDragMgrFloatingWind GestaltDragMgrAttr = 1
	// GestaltDragMgrHasImageSupport: If the bit specified by this mask is set, the Drag Manager image support functions are available.
	GestaltDragMgrHasImageSupport GestaltDragMgrAttr = 3
	// GestaltDragMgrPresent: If the bit specified by this mask is set, the Drag Manager functions are available.
	GestaltDragMgrPresent GestaltDragMgrAttr = 0
	// GestaltPPCDragLibPresent: If the bit specified by this mask is set, the Drag Manager PPC Drag Library functions are available.
	GestaltPPCDragLibPresent   GestaltDragMgrAttr = 2
	GestaltSetDragImageUpdates GestaltDragMgrAttr = 5
)

func (GestaltDragMgrAttr) String added in v0.6.17

func (e GestaltDragMgrAttr) String() string

type GestaltDrawSprocket added in v0.5.1

type GestaltDrawSprocket uint32
const (
	GestaltDrawSprocketVersion GestaltDrawSprocket = 'd'<<24 | 's'<<16 | 'p'<<8 | 'v' // 'dspv'
)

func (GestaltDrawSprocket) String added in v0.5.1

func (e GestaltDrawSprocket) String() string

type GestaltEasyAccess added in v0.5.1

type GestaltEasyAccess uint32
const (
	GestaltEasyAccessAttr   GestaltEasyAccess = 'e'<<24 | 'a'<<16 | 's'<<8 | 'y' // 'easy'
	GestaltEasyAccessLocked GestaltEasyAccess = 3
	GestaltEasyAccessOff    GestaltEasyAccess = 0
	GestaltEasyAccessOn     GestaltEasyAccess = 1
	GestaltEasyAccessSticky GestaltEasyAccess = 2
)

func (GestaltEasyAccess) String added in v0.5.1

func (e GestaltEasyAccess) String() string

type GestaltEditionMgr added in v0.5.1

type GestaltEditionMgr uint32
const (
	GestaltEditionMgrAttr             GestaltEditionMgr = 'e'<<24 | 'd'<<16 | 't'<<8 | 'n' // 'edtn'
	GestaltEditionMgrPresent          GestaltEditionMgr = 0
	GestaltEditionMgrTranslationAware GestaltEditionMgr = 1
)

func (GestaltEditionMgr) String added in v0.5.1

func (e GestaltEditionMgr) String() string

type GestaltExtToolbox added in v0.5.1

type GestaltExtToolbox uint32
const (
	// GestaltExtToolboxTable: The base address of the second half of the Toolbox trap table if the table is discontiguous.
	GestaltExtToolboxTable GestaltExtToolbox = 'x'<<24 | 't'<<16 | 't'<<8 | 't' // 'xttt'
)

func (GestaltExtToolbox) String added in v0.5.1

func (e GestaltExtToolbox) String() string

type GestaltExtensionTable added in v0.5.1

type GestaltExtensionTable uint32
const (
	GestaltExtensionTableVersion GestaltExtensionTable = 'e'<<24 | 't'<<16 | 'b'<<8 | 'l' // 'etbl'
)

func (GestaltExtensionTable) String added in v0.5.1

func (e GestaltExtensionTable) String() string

type GestaltFB added in v0.5.1

type GestaltFB uint32
const (
	GestaltFBCIndexingState    GestaltFB = 'f'<<24 | 'b'<<16 | 'c'<<8 | 'i' // 'fbci'
	GestaltFBCindexingCritical GestaltFB = 1
	GestaltFBCindexingSafe     GestaltFB = 0
)

func (GestaltFB) String added in v0.5.1

func (e GestaltFB) String() string

type GestaltFBCVersion added in v0.5.1

type GestaltFBCVersion uint32
const (
	GestaltFBCCurrentVersion    GestaltFBCVersion = 0x11
	GestaltFBCVersionValue      GestaltFBCVersion = 'f'<<24 | 'b'<<16 | 'c'<<8 | 'v' // 'fbcv'
	GestaltOSXFBCCurrentVersion GestaltFBCVersion = 0x100
)

func (GestaltFBCVersion) String added in v0.6.17

func (e GestaltFBCVersion) String() string

type GestaltFPUType added in v0.5.1

type GestaltFPUType uint32
const (
	Gestalt68040FPU GestaltFPUType = 3
	Gestalt68881    GestaltFPUType = 1
	Gestalt68882    GestaltFPUType = 2
	// GestaltFPUTypeValue: A constant that represents the type of floating-point unit currently installed, if any.
	GestaltFPUTypeValue GestaltFPUType = 'f'<<24 | 'p'<<16 | 'u'<<8 | ' ' // 'fpu '
	GestaltNoFPU        GestaltFPUType = 0
)

func (GestaltFPUType) String added in v0.6.17

func (e GestaltFPUType) String() string

type GestaltFSAttr added in v0.5.1

type GestaltFSAttr uint32
const (
	// GestaltDTMgrSupportsFSM: If this bit is set in the `response` parameter, the desktop database supports File System Manager-based foreign file systems.
	GestaltDTMgrSupportsFSM GestaltFSAttr = 7
	// GestaltFSAttrValue: A selector you pass to the [Gestalt] function.
	GestaltFSAttrValue GestaltFSAttr = 'f'<<24 | 's'<<16 | ' '<<8 | ' ' // 'fs  '
	// GestaltFSIncompatibleDFA82: If this bit is set in the `response` parameter, VCB and FCB structures are changed; DFA 8.2 is incompatible.
	GestaltFSIncompatibleDFA82 GestaltFSAttr = 10
	// GestaltFSMDoesDynamicLoad: If this bit is set in the `response` parameter, the File System Manager supports dynamic loading of external file system code resources.
	GestaltFSMDoesDynamicLoad GestaltFSAttr = 3
	// GestaltFSNoMFSVols: If this bit is set in the `response` parameter, the file system does not support MFS volumes.
	GestaltFSNoMFSVols GestaltFSAttr = 8
	// GestaltFSSupports2TBVols: If this bit is set in the `response` parameter, the file system supports 2 terabyte volumes.
	GestaltFSSupports2TBVols GestaltFSAttr = 5
	// GestaltFSSupports4GBVols: If this bit is set in the `response` parameter, the file system supports 4 gigabyte volumes.
	GestaltFSSupports4GBVols GestaltFSAttr = 4
	// GestaltFSSupportsHFSPlusVols: If this bit is set in the `response` parameter, the file system supports HFS Plus volumes.
	GestaltFSSupportsHFSPlusVols GestaltFSAttr = 9
	// GestaltFullExtFSDispatching: # Discussion
	GestaltFullExtFSDispatching GestaltFSAttr = 0
	// GestaltHasExtendedDiskInit: # Discussion
	GestaltHasExtendedDiskInit GestaltFSAttr = 6
	// GestaltHasFSSpecCalls: If this bit is set in the `response` parameter, the operating environment provides the file system specification ([FSSpec]) versions of the basic file-manipulation functions, as well as the [FSMakeFSSpec] function.
	GestaltHasFSSpecCalls GestaltFSAttr = 1
	// GestaltHasFileSystemManager: If this bit is set in the `response` parameter, the File System Manager is present.
	GestaltHasFileSystemManager GestaltFSAttr = 2
)

func (GestaltFSAttr) String added in v0.6.17

func (e GestaltFSAttr) String() string

type GestaltFSM added in v0.5.1

type GestaltFSM uint32
const (
	// GestaltFSMVersion: Pass this selector to the [Gestalt] function to determine the version of the HFS External File Systems Manager (FSM).
	GestaltFSMVersion GestaltFSM = 'f'<<24 | 's'<<16 | 'm'<<8 | ' ' // 'fsm '
)

func (GestaltFSM) String added in v0.5.1

func (e GestaltFSM) String() string

type GestaltFSSupportsDirectI added in v0.5.1

type GestaltFSSupportsDirectI uint32
const (
	GestaltFSSupportsDirectIO GestaltFSSupportsDirectI = 11
)

func (GestaltFSSupportsDirectI) String added in v0.5.1

func (e GestaltFSSupportsDirectI) String() string

type GestaltFXfrMgr added in v0.5.1

type GestaltFXfrMgr uint32
const (
	GestaltFXfrMgrAsync GestaltFXfrMgr = 3
	// GestaltFXfrMgrAttr: The selector you pass to the [Gestalt] function to determine the File Transfer Manager attributes.
	GestaltFXfrMgrAttr        GestaltFXfrMgr = 'f'<<24 | 'x'<<16 | 'f'<<8 | 'r' // 'fxfr'
	GestaltFXfrMgrErrorString GestaltFXfrMgr = 2
	GestaltFXfrMgrMultiFile   GestaltFXfrMgr = 1
	GestaltFXfrMgrPresent     GestaltFXfrMgr = 0
)

func (GestaltFXfrMgr) String added in v0.5.1

func (e GestaltFXfrMgr) String() string

type GestaltFileMapping added in v0.5.1

type GestaltFileMapping uint32
const (
	GestaltFileMappingAttr             GestaltFileMapping = 'f'<<24 | 'l'<<16 | 'm'<<8 | 'p' // 'flmp'
	GestaltFileMappingMultipleFilesFix GestaltFileMapping = 1
	GestaltFileMappingPresent          GestaltFileMapping = 0
)

func (GestaltFileMapping) String added in v0.5.1

func (e GestaltFileMapping) String() string

type GestaltFindFolderAttr added in v0.5.1

type GestaltFindFolderAttr uint32
const (
	// GestaltFindFolderAttrValue: The selector you pass to the [Gestalt] function to determine the  [FindFolder] function attributes.
	GestaltFindFolderAttrValue GestaltFindFolderAttr = 'f'<<24 | 'o'<<16 | 'l'<<8 | 'd' // 'fold'
	GestaltFindFolderPresent   GestaltFindFolderAttr = 0
	// GestaltFolderDescSupport: If this bit is set, the extended Folder Manager functionality supporting folder descriptors and routings is available.
	GestaltFolderDescSupport                    GestaltFindFolderAttr = 1
	GestaltFolderMgrFollowsAliasesWhenResolving GestaltFindFolderAttr = 2
	GestaltFolderMgrSupportsDomains             GestaltFindFolderAttr = 4
	GestaltFolderMgrSupportsExtendedCalls       GestaltFindFolderAttr = 3
	GestaltFolderMgrSupportsFSCalls             GestaltFindFolderAttr = 5
)

func (GestaltFindFolderAttr) String added in v0.6.17

func (e GestaltFindFolderAttr) String() string

type GestaltFindFolderRedirection added in v0.5.1

type GestaltFindFolderRedirection uint32
const (
	GestaltFindFolderRedirectionAttr GestaltFindFolderRedirection = 'f'<<24 | 'o'<<16 | 'l'<<8 | 'e' // 'fole'
)

func (GestaltFindFolderRedirection) String added in v0.5.1

type GestaltFinderAttr added in v0.5.1

type GestaltFinderAttr uint32
const (
	GestaltFinderAttrValue                          GestaltFinderAttr = 'f'<<24 | 'n'<<16 | 'd'<<8 | 'r' // 'fndr'
	GestaltFinderCallsAEProcess                     GestaltFinderAttr = 2
	GestaltFinderDropEvent                          GestaltFinderAttr = 0
	GestaltFinderFloppyRootComments                 GestaltFinderAttr = 8
	GestaltFinderFullDragManagerSupport             GestaltFinderAttr = 7
	GestaltFinderHasClippings                       GestaltFinderAttr = 6
	GestaltFinderLargeAndNotSavedFlavorsOK          GestaltFinderAttr = 9
	GestaltFinderMagicPlacement                     GestaltFinderAttr = 1
	GestaltFinderSupports4GBVolumes                 GestaltFinderAttr = 4
	GestaltFinderUnderstandsRedirectedDesktopFolder GestaltFinderAttr = 11
	GestaltFinderUsesExtensibleFolderManager        GestaltFinderAttr = 10
	GestaltOSLCompliantFinder                       GestaltFinderAttr = 3
)

func (GestaltFinderAttr) String added in v0.6.17

func (e GestaltFinderAttr) String() string

type GestaltFirstSlot added in v0.5.1

type GestaltFirstSlot uint32
const (
	// GestaltFirstSlotNumber: The first physical slot.
	GestaltFirstSlotNumber GestaltFirstSlot = 's'<<24 | 'l'<<16 | 't'<<8 | '1' // 'slt1'
)

func (GestaltFirstSlot) String added in v0.5.1

func (e GestaltFirstSlot) String() string

type GestaltFloppy added in v0.5.1

type GestaltFloppy uint32
const (
	GestaltFloppyAttr            GestaltFloppy = 'f'<<24 | 'l'<<16 | 'p'<<8 | 'y' // 'flpy'
	GestaltFloppyIsMFMOnly       GestaltFloppy = 0
	GestaltFloppyIsManualEject   GestaltFloppy = 1
	GestaltFloppyUsesDiskInPlace GestaltFloppy = 2
)

func (GestaltFloppy) String added in v0.5.1

func (e GestaltFloppy) String() string

type GestaltFontMgrAttr added in v0.5.1

type GestaltFontMgrAttr uint32
const (
	// GestaltFontMgrAttrValue: The [Gestalt] selector you pass to determine which Font Manager attributes are present.
	GestaltFontMgrAttrValue GestaltFontMgrAttr = 'f'<<24 | 'o'<<16 | 'n'<<8 | 't' // 'font'
	// GestaltOutlineFonts: If `true`, outline fonts are supported.
	GestaltOutlineFonts GestaltFontMgrAttr = 0
)

func (GestaltFontMgrAttr) String added in v0.6.17

func (e GestaltFontMgrAttr) String() string

type GestaltGX added in v0.5.1

type GestaltGX uint32
const (
	GestaltGXVersion GestaltGX = 'q'<<24 | 'd'<<16 | 'g'<<8 | 'x' // 'qdgx'
)

func (GestaltGX) String added in v0.5.1

func (e GestaltGX) String() string

type GestaltGXPrintingMgr added in v0.5.1

type GestaltGXPrintingMgr uint32
const (
	GestaltGXPrintingMgrVersion GestaltGXPrintingMgr = 'p'<<24 | 'm'<<16 | 'g'<<8 | 'r' // 'pmgr'
)

func (GestaltGXPrintingMgr) String added in v0.5.1

func (e GestaltGXPrintingMgr) String() string

type GestaltGraphics added in v0.5.1

type GestaltGraphics uint32
const (
	GestaltGraphicsAttr        GestaltGraphics = 'g'<<24 | 'f'<<16 | 'x'<<8 | 'a' // 'gfxa'
	GestaltGraphicsIsDebugging GestaltGraphics = 0x1
	GestaltGraphicsIsLoaded    GestaltGraphics = 0x2
	GestaltGraphicsIsPowerPC   GestaltGraphics = 0x4
)

func (GestaltGraphics) String added in v0.5.1

func (e GestaltGraphics) String() string

type GestaltGraphicsVersion added in v0.5.1

type GestaltGraphicsVersion uint32
const (
	GestaltCurrentGraphicsVersion GestaltGraphicsVersion = 0x10200
	GestaltGraphicsVersionValue   GestaltGraphicsVersion = 'g'<<24 | 'r'<<16 | 'f'<<8 | 'x' // 'grfx'
)

func (GestaltGraphicsVersion) String added in v0.6.17

func (e GestaltGraphicsVersion) String() string

type GestaltHardwareAttr added in v0.5.1

type GestaltHardwareAttr uint32
const (
	// GestaltHardwareAttrValue: # Discussion
	GestaltHardwareAttrValue GestaltHardwareAttr = 'h'<<24 | 'd'<<16 | 'w'<<8 | 'r' // 'hdwr'
	GestaltHasASC            GestaltHardwareAttr = 3
	GestaltHasEnhancedLtalk  GestaltHardwareAttr = 30
	// GestaltHasSCC: # Discussion
	GestaltHasSCC GestaltHardwareAttr = 4
	// GestaltHasSCSI: The `gestaltHasSCSI` bit means the machine is equipped with a SCSI implementation based on the 53C80 chip, which was introduced in the Macintosh Plus.
	GestaltHasSCSI GestaltHardwareAttr = 7
	// GestaltHasSCSI961: This bit is set if the machine has a SCSI implementation based on the 53C96 chip installed on an internal  bus.
	GestaltHasSCSI961 GestaltHardwareAttr = 21
	// GestaltHasSCSI962: This bit is set if the machine has a SCSI implementation based on the 53C96 chip installed on an  external bus.
	GestaltHasSCSI962      GestaltHardwareAttr = 22
	GestaltHasSoftPowerOff GestaltHardwareAttr = 19
	GestaltHasUniversalROM GestaltHardwareAttr = 24
	GestaltHasVIA1         GestaltHardwareAttr = 0
	GestaltHasVIA2         GestaltHardwareAttr = 1
)

func (GestaltHardwareAttr) String added in v0.6.17

func (e GestaltHardwareAttr) String() string

type GestaltHardwareVendor added in v0.5.1

type GestaltHardwareVendor uint32
const (
	GestaltHardwareVendorApple GestaltHardwareVendor = 'A'<<24 | 'p'<<16 | 'p'<<8 | 'l' // 'Appl'
	GestaltHardwareVendorCode  GestaltHardwareVendor = 'h'<<24 | 'r'<<16 | 'a'<<8 | 'd' // 'hrad'
)

func (GestaltHardwareVendor) String added in v0.5.1

func (e GestaltHardwareVendor) String() string

type GestaltHasHFSPlusAPIs added in v0.5.1

type GestaltHasHFSPlusAPIs uint32
const (
	GestaltFSAllowsConcurrentAsyncIO     GestaltHasHFSPlusAPIs = 17
	GestaltFSSupportsExclusiveLocks      GestaltHasHFSPlusAPIs = 15
	GestaltFSSupportsHardLinkDetection   GestaltHasHFSPlusAPIs = 16
	GestaltFSUsesPOSIXPathsForConversion GestaltHasHFSPlusAPIs = 14
	// GestaltHasHFSPlusAPIsValue: # Discussion
	GestaltHasHFSPlusAPIsValue GestaltHasHFSPlusAPIs = 12
	// GestaltMustUseFCBAccessors: If this bit is set in the `response` parameter, the File Manager no longer supports the low memory globals [FCBSPtr] and [FSFCBLen].
	GestaltMustUseFCBAccessors GestaltHasHFSPlusAPIs = 13
)

func (GestaltHasHFSPlusAPIs) String added in v0.6.17

func (e GestaltHasHFSPlusAPIs) String() string

type GestaltHasSingleWindowMode added in v0.5.1

type GestaltHasSingleWindowMode uint32
const (
	GestaltHasSingleWindowModeBit  GestaltHasSingleWindowMode = 8
	GestaltHasSingleWindowModeMask GestaltHasSingleWindowMode = 256
)

func (GestaltHasSingleWindowMode) String added in v0.5.1

type GestaltHelpMgrAttr added in v0.5.1

type GestaltHelpMgrAttr uint32
const (
	GestaltAppleGuideIsDebug GestaltHelpMgrAttr = 30
	GestaltAppleGuidePresent GestaltHelpMgrAttr = 31
	// GestaltHelpMgrAttrValue: The selector you pass to the [Gestalt] function to determine the Help Manager attributes.
	GestaltHelpMgrAttrValue  GestaltHelpMgrAttr = 'h'<<24 | 'e'<<16 | 'l'<<8 | 'p' // 'help'
	GestaltHelpMgrExtensions GestaltHelpMgrAttr = 1
	GestaltHelpMgrPresent    GestaltHelpMgrAttr = 0
)

func (GestaltHelpMgrAttr) String added in v0.6.17

func (e GestaltHelpMgrAttr) String() string

type GestaltIconUtilities added in v0.5.1

type GestaltIconUtilities uint32
const (
	// GestaltIconUtilitiesAttr: # Discussion
	GestaltIconUtilitiesAttr GestaltIconUtilities = 'i'<<24 | 'c'<<16 | 'o'<<8 | 'n' // 'icon'
	// GestaltIconUtilitiesHas32BitIcons: True if 32-bit deep icons are supported.
	GestaltIconUtilitiesHas32BitIcons GestaltIconUtilities = 2
	// GestaltIconUtilitiesHas48PixelIcons: True if 48x48 icons are supported by IconUtilities.
	GestaltIconUtilitiesHas48PixelIcons GestaltIconUtilities = 1
	// GestaltIconUtilitiesHas8BitDeepMasks: True if 8-bit deep masks are supported.
	GestaltIconUtilitiesHas8BitDeepMasks GestaltIconUtilities = 3
	// GestaltIconUtilitiesHasIconServices: True if IconServices is present.
	GestaltIconUtilitiesHasIconServices GestaltIconUtilities = 4
	// GestaltIconUtilitiesPresent: True if icon utilities are present.
	GestaltIconUtilitiesPresent GestaltIconUtilities = 0
)

func (GestaltIconUtilities) String added in v0.5.1

func (e GestaltIconUtilities) String() string

type GestaltInternal added in v0.5.1

type GestaltInternal uint32
const (
	GestaltInternalDisplay GestaltInternal = 'i'<<24 | 'd'<<16 | 's'<<8 | 'p' // 'idsp'
)

func (GestaltInternal) String added in v0.5.1

func (e GestaltInternal) String() string

type GestaltKeyboardType added in v0.5.1

type GestaltKeyboardType uint32
const (
	GestaltADBISOKbdII       GestaltKeyboardType = 11
	GestaltADBKbdII          GestaltKeyboardType = 10
	GestaltAppleAdjustADBKbd GestaltKeyboardType = 15
	GestaltAppleAdjustISOKbd GestaltKeyboardType = 16
	GestaltAppleAdjustKeypad GestaltKeyboardType = 14
	GestaltExtADBKbd         GestaltKeyboardType = 4
	GestaltExtISOADBKbd      GestaltKeyboardType = 9
	GestaltJapanAdjustADBKbd GestaltKeyboardType = 17
	// GestaltKeyboardTypeValue: # Discussion
	GestaltKeyboardTypeValue    GestaltKeyboardType = 'k'<<24 | 'b'<<16 | 'd'<<8 | ' ' // 'kbd '
	GestaltMacAndPad            GestaltKeyboardType = 2
	GestaltMacKbd               GestaltKeyboardType = 1
	GestaltMacPlusKbd           GestaltKeyboardType = 3
	GestaltPS2Keyboard          GestaltKeyboardType = 27
	GestaltPortableUSBANSIKbd   GestaltKeyboardType = 37
	GestaltPortableUSBISOKbd    GestaltKeyboardType = 38
	GestaltPortableUSBJISKbd    GestaltKeyboardType = 39
	GestaltPrtblADBKbd          GestaltKeyboardType = 6
	GestaltPrtblISOKbd          GestaltKeyboardType = 7
	GestaltPwrBk99JISKbd        GestaltKeyboardType = 201
	GestaltPwrBkEKDomKbd        GestaltKeyboardType = 195
	GestaltPwrBkEKISOKbd        GestaltKeyboardType = 196
	GestaltPwrBkEKJISKbd        GestaltKeyboardType = 197
	GestaltPwrBkExtADBKbd       GestaltKeyboardType = 24
	GestaltPwrBkExtISOKbd       GestaltKeyboardType = 20
	GestaltPwrBkExtJISKbd       GestaltKeyboardType = 21
	GestaltPwrBkSubDomKbd       GestaltKeyboardType = 28
	GestaltPwrBkSubISOKbd       GestaltKeyboardType = 29
	GestaltPwrBkSubJISKbd       GestaltKeyboardType = 30
	GestaltPwrBookADBKbd        GestaltKeyboardType = 12
	GestaltPwrBookISOADBKbd     GestaltKeyboardType = 13
	GestaltStdADBKbd            GestaltKeyboardType = 5
	GestaltStdISOADBKbd         GestaltKeyboardType = 8
	GestaltThirdPartyANSIKbd    GestaltKeyboardType = 40
	GestaltThirdPartyISOKbd     GestaltKeyboardType = 41
	GestaltThirdPartyJISKbd     GestaltKeyboardType = 42
	GestaltUSBAndyANSIKbd       GestaltKeyboardType = 204
	GestaltUSBAndyISOKbd        GestaltKeyboardType = 205
	GestaltUSBAndyJISKbd        GestaltKeyboardType = 206
	GestaltUSBCosmoANSIKbd      GestaltKeyboardType = 198
	GestaltUSBCosmoISOKbd       GestaltKeyboardType = 199
	GestaltUSBCosmoJISKbd       GestaltKeyboardType = 200
	GestaltUnknownThirdPartyKbd GestaltKeyboardType = 3
)

func (GestaltKeyboardType) String added in v0.6.17

func (e GestaltKeyboardType) String() string

type GestaltLogicalPage added in v0.5.1

type GestaltLogicalPage uint32
const (
	// GestaltLogicalPageSize: The logical page size.
	GestaltLogicalPageSize GestaltLogicalPage = 'p'<<24 | 'g'<<16 | 's'<<8 | 'z' // 'pgsz'
)

func (GestaltLogicalPage) String added in v0.5.1

func (e GestaltLogicalPage) String() string

type GestaltLogicalRAM added in v0.5.1

type GestaltLogicalRAM uint32
const (
	// GestaltLogicalRAMSize: # Discussion
	GestaltLogicalRAMSize GestaltLogicalRAM = 'l'<<24 | 'r'<<16 | 'a'<<8 | 'm' // 'lram'
)

func (GestaltLogicalRAM) String added in v0.5.1

func (e GestaltLogicalRAM) String() string

type GestaltLowMemory added in v0.5.1

type GestaltLowMemory uint32
const (
	// GestaltLowMemorySize: The size (in bytes) of the low-memory area.
	GestaltLowMemorySize GestaltLowMemory = 'l'<<24 | 'm'<<16 | 'e'<<8 | 'm' // 'lmem'
)

func (GestaltLowMemory) String added in v0.5.1

func (e GestaltLowMemory) String() string

type GestaltMMUType added in v0.5.1

type GestaltMMUType uint32
const (
	Gestalt68030MMU GestaltMMUType = 3
	Gestalt68040MMU GestaltMMUType = 4
	Gestalt68851    GestaltMMUType = 2
	GestaltAMU      GestaltMMUType = 1
	GestaltEMMU1    GestaltMMUType = 5
	// GestaltMMUTypeValue: The selector you pass to the [Gestalt] function to determine the  type of MMU currently installed.
	GestaltMMUTypeValue GestaltMMUType = 'm'<<24 | 'm'<<16 | 'u'<<8 | ' ' // 'mmu '
	GestaltNoMMU        GestaltMMUType = 0
)

func (GestaltMMUType) String added in v0.6.17

func (e GestaltMMUType) String() string

type GestaltMP added in v0.5.1

type GestaltMP uint32
const (
	// GestaltMPCallableAPIsAttr: The Gestalt selector passed to determine the availability of preemptive system software functions.
	GestaltMPCallableAPIsAttr GestaltMP = 'm'<<24 | 'p'<<16 | 's'<<8 | 'c' // 'mpsc'
	// GestaltMPDeviceManager: If this bit is set, you can call preemptively safe Device Manager function.
	GestaltMPDeviceManager GestaltMP = 1
	// GestaltMPFileManager: If this bit is set, you can call preemptively safe File Manager functions.
	GestaltMPFileManager GestaltMP = 0
	GestaltMPTrapCalls   GestaltMP = 2
)

func (GestaltMP) String added in v0.5.1

func (e GestaltMP) String() string

type GestaltMacOSCompatibility added in v0.5.1

type GestaltMacOSCompatibility uint32
const (
	GestaltMacOSCompatibilityBoxAttr      GestaltMacOSCompatibility = 'b'<<24 | 'b'<<16 | 'o'<<8 | 'x' // 'bbox'
	GestaltMacOSCompatibilityBoxHasSerial GestaltMacOSCompatibility = 1
	GestaltMacOSCompatibilityBoxPresent   GestaltMacOSCompatibility = 0
	GestaltMacOSCompatibilityBoxless      GestaltMacOSCompatibility = 2
)

func (GestaltMacOSCompatibility) String added in v0.5.1

func (e GestaltMacOSCompatibility) String() string

type GestaltMachine added in v0.5.1

type GestaltMachine uint32
const (
	// GestaltMachineIcon: # Discussion
	GestaltMachineIcon GestaltMachine = 'm'<<24 | 'i'<<16 | 'c'<<8 | 'n' // 'micn'
)

func (GestaltMachine) String added in v0.5.1

func (e GestaltMachine) String() string

type GestaltMachineType added in v0.5.1

type GestaltMachineType uint32
const (
	Gestalt20thAnniversary         GestaltMachineType = 512
	GestaltAWS6150_60              GestaltMachineType = 75
	GestaltAWS6150_66              GestaltMachineType = 100
	GestaltAWS8150_110             GestaltMachineType = 40
	GestaltAWS8150_80              GestaltMachineType = 65
	GestaltAWS8550                 GestaltMachineType = 68
	GestaltAWS9150_120             GestaltMachineType = 57
	GestaltAWS9150_80              GestaltMachineType = 39
	GestaltClassic                 GestaltMachineType = 1
	GestaltClassicII               GestaltMachineType = 23
	GestaltMac512KE                GestaltMachineType = 3
	GestaltMacCentris610           GestaltMachineType = 52
	GestaltMacCentris650           GestaltMachineType = 30
	GestaltMacCentris660AV         GestaltMachineType = 60
	GestaltMacClassic              GestaltMachineType = 17
	GestaltMacColorClassic         GestaltMachineType = 49
	GestaltMacII                   GestaltMachineType = 6
	GestaltMacIIci                 GestaltMachineType = 11
	GestaltMacIIcx                 GestaltMachineType = 8
	GestaltMacIIfx                 GestaltMachineType = 13
	GestaltMacIIsi                 GestaltMachineType = 18
	GestaltMacIIvi                 GestaltMachineType = 44
	GestaltMacIIvm                 GestaltMachineType = 45
	GestaltMacIIvx                 GestaltMachineType = 48
	GestaltMacIIx                  GestaltMachineType = 7
	GestaltMacLC                   GestaltMachineType = 19
	GestaltMacLC475                GestaltMachineType = 89
	GestaltMacLC520                GestaltMachineType = 56
	GestaltMacLC575                GestaltMachineType = 92
	GestaltMacLC580                GestaltMachineType = 99
	GestaltMacLCII                 GestaltMachineType = 37
	GestaltMacLCIII                GestaltMachineType = 27
	GestaltMacOSCompatibilityValue GestaltMachineType = 1206
	GestaltMacPlus                 GestaltMachineType = 4
	GestaltMacQuadra605            GestaltMachineType = 94
	GestaltMacQuadra610            GestaltMachineType = 53
	GestaltMacQuadra630            GestaltMachineType = 98
	GestaltMacQuadra650            GestaltMachineType = 36
	GestaltMacQuadra660AV          GestaltMachineType = 60
	GestaltMacQuadra700            GestaltMachineType = 22
	GestaltMacQuadra800            GestaltMachineType = 35
	GestaltMacQuadra840AV          GestaltMachineType = 78
	GestaltMacQuadra900            GestaltMachineType = 20
	GestaltMacQuadra950            GestaltMachineType = 26
	GestaltMacSE                   GestaltMachineType = 5
	GestaltMacSE030                GestaltMachineType = 9
	GestaltMacTV                   GestaltMachineType = 88
	GestaltMacXL                   GestaltMachineType = 2
	GestaltMachineTypeValue        GestaltMachineType = 'm'<<24 | 'a'<<16 | 'c'<<8 | 'h' // 'mach'
	GestaltPerforma250             GestaltMachineType = 49
	GestaltPerforma450             GestaltMachineType = 27
	GestaltPerforma46x             GestaltMachineType = 62
	GestaltPerforma47x             GestaltMachineType = 89
	GestaltPerforma5300            GestaltMachineType = 41
	GestaltPerforma550             GestaltMachineType = 80
	GestaltPerforma580             GestaltMachineType = 99
	GestaltPerforma600             GestaltMachineType = 45
	GestaltPerforma6300            GestaltMachineType = 42
	GestaltPerforma6360            GestaltMachineType = 58
	GestaltPerforma6400            GestaltMachineType = 58
	GestaltPortable                GestaltMachineType = 10
	GestaltPowerBook100            GestaltMachineType = 24
	GestaltPowerBook140            GestaltMachineType = 25
	GestaltPowerBook1400           GestaltMachineType = 310
	GestaltPowerBook145            GestaltMachineType = 54
	GestaltPowerBook150            GestaltMachineType = 115
	GestaltPowerBook160            GestaltMachineType = 34
	GestaltPowerBook165            GestaltMachineType = 84
	GestaltPowerBook165c           GestaltMachineType = 50
	GestaltPowerBook170            GestaltMachineType = 21
	GestaltPowerBook180            GestaltMachineType = 33
	GestaltPowerBook180c           GestaltMachineType = 71
	GestaltPowerBook190            GestaltMachineType = 85
	GestaltPowerBook2400           GestaltMachineType = 307
	GestaltPowerBook3400           GestaltMachineType = 306
	GestaltPowerBook500PPCUpgrade  GestaltMachineType = 126
	GestaltPowerBook520            GestaltMachineType = 72
	GestaltPowerBook520c           GestaltMachineType = 72
	GestaltPowerBook5300           GestaltMachineType = 128
	GestaltPowerBook540            GestaltMachineType = 72
	GestaltPowerBook540c           GestaltMachineType = 72
	GestaltPowerBookDuo210         GestaltMachineType = 29
	GestaltPowerBookDuo230         GestaltMachineType = 32
	GestaltPowerBookDuo2300        GestaltMachineType = 124
	GestaltPowerBookDuo250         GestaltMachineType = 38
	GestaltPowerBookDuo270c        GestaltMachineType = 77
	GestaltPowerBookDuo280         GestaltMachineType = 102
	GestaltPowerBookDuo280c        GestaltMachineType = 103
	GestaltPowerBookG3             GestaltMachineType = 313
	GestaltPowerBookG3Series       GestaltMachineType = 312
	GestaltPowerBookG3Series2      GestaltMachineType = 314
	GestaltPowerMac4400            GestaltMachineType = 515
	GestaltPowerMac4400_160        GestaltMachineType = 514
	GestaltPowerMac5200            GestaltMachineType = 41
	GestaltPowerMac5260            GestaltMachineType = 41
	GestaltPowerMac5400            GestaltMachineType = 74
	GestaltPowerMac5500            GestaltMachineType = 512
	GestaltPowerMac6100_60         GestaltMachineType = 75
	GestaltPowerMac6100_66         GestaltMachineType = 100
	GestaltPowerMac6200            GestaltMachineType = 42
	GestaltPowerMac6400            GestaltMachineType = 58
	GestaltPowerMac6500            GestaltMachineType = 513
	GestaltPowerMac7100_66         GestaltMachineType = 112
	GestaltPowerMac7100_80         GestaltMachineType = 47
	GestaltPowerMac7200            GestaltMachineType = 108
	GestaltPowerMac7300            GestaltMachineType = 109
	GestaltPowerMac7500            GestaltMachineType = 68
	GestaltPowerMac7600            GestaltMachineType = 68
	GestaltPowerMac8100_100        GestaltMachineType = 55
	GestaltPowerMac8100_110        GestaltMachineType = 40
	GestaltPowerMac8100_120        GestaltMachineType = 12
	GestaltPowerMac8100_80         GestaltMachineType = 65
	GestaltPowerMac8500            GestaltMachineType = 69
	GestaltPowerMac8600            GestaltMachineType = 69
	GestaltPowerMac9500            GestaltMachineType = 67
	GestaltPowerMac9600            GestaltMachineType = 67
	GestaltPowerMacCentris610      GestaltMachineType = 119
	GestaltPowerMacCentris650      GestaltMachineType = 120
	GestaltPowerMacG3              GestaltMachineType = 510
	GestaltPowerMacLC475           GestaltMachineType = 104
	GestaltPowerMacLC575           GestaltMachineType = 105
	GestaltPowerMacLC630           GestaltMachineType = 106
	GestaltPowerMacNewWorld        GestaltMachineType = 406
	GestaltPowerMacPerforma47x     GestaltMachineType = 104
	GestaltPowerMacPerforma57x     GestaltMachineType = 105
	GestaltPowerMacPerforma63x     GestaltMachineType = 106
	GestaltPowerMacQuadra610       GestaltMachineType = 121
	GestaltPowerMacQuadra630       GestaltMachineType = 106
	GestaltPowerMacQuadra650       GestaltMachineType = 122
	GestaltPowerMacQuadra700       GestaltMachineType = 116
	GestaltPowerMacQuadra800       GestaltMachineType = 123
	GestaltPowerMacQuadra900       GestaltMachineType = 117
	GestaltPowerMacQuadra950       GestaltMachineType = 118
)

func (GestaltMachineType) String added in v0.6.17

func (e GestaltMachineType) String() string

type GestaltMediaBay added in v0.5.1

type GestaltMediaBay uint32
const (
	GestaltMBLegacy       GestaltMediaBay = 0
	GestaltMBMultipleBays GestaltMediaBay = 2
	GestaltMBSingleBay    GestaltMediaBay = 1
	GestaltMediaBayValue  GestaltMediaBay = 'm'<<24 | 'b'<<16 | 'e'<<8 | 'h' // 'mbeh'
)

func (GestaltMediaBay) String added in v0.6.17

func (e GestaltMediaBay) String() string

type GestaltMemoryMap added in v0.5.1

type GestaltMemoryMap uint32
const (
	GestaltMemoryMapAttr   GestaltMemoryMap = 'm'<<24 | 'm'<<16 | 'a'<<8 | 'p' // 'mmap'
	GestaltMemoryMapSparse GestaltMemoryMap = 0
)

func (GestaltMemoryMap) String added in v0.5.1

func (e GestaltMemoryMap) String() string

type GestaltMenuMgr added in v0.5.1

type GestaltMenuMgr uint32
const (
	GestaltMenuMgrAquaLayoutBit  GestaltMenuMgr = 1
	GestaltMenuMgrAquaLayoutMask GestaltMenuMgr = 2
	// GestaltMenuMgrAttr: # Discussion
	GestaltMenuMgrAttr                           GestaltMenuMgr = 'm'<<24 | 'e'<<16 | 'n'<<8 | 'u' // 'menu'
	GestaltMenuMgrCGImageMenuTitleBit            GestaltMenuMgr = 6
	GestaltMenuMgrCGImageMenuTitleMask           GestaltMenuMgr = 64
	GestaltMenuMgrMoreThanFiveMenusDeepBit       GestaltMenuMgr = 5
	GestaltMenuMgrMoreThanFiveMenusDeepMask      GestaltMenuMgr = 32
	GestaltMenuMgrMultipleItemsWithCommandIDBit  GestaltMenuMgr = 2
	GestaltMenuMgrMultipleItemsWithCommandIDMask GestaltMenuMgr = 4
	// GestaltMenuMgrPresent: If the bit specified by this mask is set, the Menu Manager functionality for Appearance Manager 1.1 is available.
	GestaltMenuMgrPresent                      GestaltMenuMgr = 1
	GestaltMenuMgrPresentBit                   GestaltMenuMgr = 0
	GestaltMenuMgrPresentMask                  GestaltMenuMgr = 1
	GestaltMenuMgrRetainsIconRefBit            GestaltMenuMgr = 3
	GestaltMenuMgrRetainsIconRefMask           GestaltMenuMgr = 8
	GestaltMenuMgrSendsMenuBoundsToDefProcBit  GestaltMenuMgr = 4
	GestaltMenuMgrSendsMenuBoundsToDefProcMask GestaltMenuMgr = 16
)

func (GestaltMenuMgr) String added in v0.5.1

func (e GestaltMenuMgr) String() string

type GestaltMessageMgr added in v0.5.1

type GestaltMessageMgr uint32
const (
	GestaltMessageMgrVersion GestaltMessageMgr = 'm'<<24 | 'e'<<16 | 's'<<8 | 's' // 'mess'
)

func (GestaltMessageMgr) String added in v0.5.1

func (e GestaltMessageMgr) String() string

type GestaltMiscAttr added in v0.5.1

type GestaltMiscAttr uint32
const (
	// GestaltMiscAttrValue: The selector you pass to the [Gestalt] function to determine information about miscellaneous pieces of the Operating System or hardware configuration.
	GestaltMiscAttrValue     GestaltMiscAttr = 'm'<<24 | 'i'<<16 | 's'<<8 | 'c' // 'misc'
	GestaltScrollingThrottle GestaltMiscAttr = 0
	GestaltSquareMenuBar     GestaltMiscAttr = 2
)

func (GestaltMiscAttr) String added in v0.6.17

func (e GestaltMiscAttr) String() string

type GestaltMixedMode added in v0.5.1

type GestaltMixedMode uint32
const (
	// GestaltMixedModeVersion: The selector you pass to the [Gestalt] function to determine the  version of Mixed Mode Manager.
	GestaltMixedModeVersion GestaltMixedMode = 'm'<<24 | 'i'<<16 | 'x'<<8 | 'd' // 'mixd'
)

func (GestaltMixedMode) String added in v0.5.1

func (e GestaltMixedMode) String() string

type GestaltMixedModeAttr added in v0.5.1

type GestaltMixedModeAttr uint32
const (
	// GestaltMixedModeAttrValue: The Gestalt selector you pass to determine what version of Mixed Mode Manager is present.
	GestaltMixedModeAttrValue GestaltMixedModeAttr = 'm'<<24 | 'i'<<16 | 'x'<<8 | 'd' // 'mixd'
	// GestaltMixedModeCFM68K: True if Mixed Mode supports CFM-68K calling conventions
	GestaltMixedModeCFM68K GestaltMixedModeAttr = 1
	// GestaltMixedModeCFM68KHasState: True if CFM-68K Mixed Mode exports Save/RestoreMixedModeState
	GestaltMixedModeCFM68KHasState GestaltMixedModeAttr = 3
	// GestaltMixedModeCFM68KHasTrap: True if CFM-68K Mixed Mode implements `_MixedModeDispatch` (versions 1.0.1 and prior did not)
	GestaltMixedModeCFM68KHasTrap GestaltMixedModeAttr = 2
	// GestaltMixedModePowerPC: True if Mixed Mode supports PowerPC ABI calling conventions
	GestaltMixedModePowerPC GestaltMixedModeAttr = 0
	// GestaltPowerPCAware: Old name for `gestaltMixedModePowerPC`
	GestaltPowerPCAware GestaltMixedModeAttr = 0
)

func (GestaltMixedModeAttr) String added in v0.6.17

func (e GestaltMixedModeAttr) String() string

type GestaltMultipleUsers added in v0.5.1

type GestaltMultipleUsers uint32
const (
	GestaltMultipleUsersState GestaltMultipleUsers = 'm'<<24 | 'f'<<16 | 'd'<<8 | 'r' // 'mfdr'
)

func (GestaltMultipleUsers) String added in v0.5.1

func (e GestaltMultipleUsers) String() string

type GestaltNameRegistry added in v0.5.1

type GestaltNameRegistry uint32
const (
	GestaltNameRegistryVersion GestaltNameRegistry = 'n'<<24 | 'r'<<16 | 'e'<<8 | 'g' // 'nreg'
)

func (GestaltNameRegistry) String added in v0.5.1

func (e GestaltNameRegistry) String() string

type GestaltNativeCPUtype added in v0.5.1

type GestaltNativeCPUtype uint32
const (
	GestaltCPU601          GestaltNativeCPUtype = 0x101
	GestaltCPU603          GestaltNativeCPUtype = 0x103
	GestaltCPU603e         GestaltNativeCPUtype = 0x106
	GestaltCPU603ev        GestaltNativeCPUtype = 0x107
	GestaltCPU604          GestaltNativeCPUtype = 0x104
	GestaltCPU604e         GestaltNativeCPUtype = 0x109
	GestaltCPU604ev        GestaltNativeCPUtype = 0x10a
	GestaltCPU68000        GestaltNativeCPUtype = 0
	GestaltCPU68010        GestaltNativeCPUtype = 1
	GestaltCPU68020        GestaltNativeCPUtype = 2
	GestaltCPU68030        GestaltNativeCPUtype = 3
	GestaltCPU68040        GestaltNativeCPUtype = 4
	GestaltCPU750          GestaltNativeCPUtype = 0x108
	GestaltCPUG4           GestaltNativeCPUtype = 0x10c
	GestaltCPUG47450       GestaltNativeCPUtype = 0x110
	GestaltNativeCPUfamily GestaltNativeCPUtype = 'c'<<24 | 'p'<<16 | 'u'<<8 | 'f' // 'cpuf'
	// GestaltNativeCPUtypeValue: # Discussion
	GestaltNativeCPUtypeValue GestaltNativeCPUtype = 'c'<<24 | 'p'<<16 | 'u'<<8 | 't' // 'cput'
)

func (GestaltNativeCPUtype) String added in v0.6.17

func (e GestaltNativeCPUtype) String() string

type GestaltNotification added in v0.5.1

type GestaltNotification uint32
const (
	// GestaltNotificationMgrAttr: .The Gestalt selector which you pass to the [Gestalt] function to determine Notification Manager attributes.
	GestaltNotificationMgrAttr GestaltNotification = 'n'<<24 | 'm'<<16 | 'g'<<8 | 'r' // 'nmgr'
	// GestaltNotificationPresent: True if the Notification Manager exists.
	GestaltNotificationPresent GestaltNotification = 0
)

func (GestaltNotification) String added in v0.5.1

func (e GestaltNotification) String() string

type GestaltNuBus added in v0.5.1

type GestaltNuBus uint32
const (
	// GestaltNuBusConnectors: A bitmap that describes the NuBus slot connector locations.
	GestaltNuBusConnectors GestaltNuBus = 's'<<24 | 'l'<<16 | 't'<<8 | 'c' // 'sltc'
)

func (GestaltNuBus) String added in v0.5.1

func (e GestaltNuBus) String() string

type GestaltNuBusSlot added in v0.5.1

type GestaltNuBusSlot uint32
const (
	GestaltNuBusSlotCount GestaltNuBusSlot = 'n'<<24 | 'u'<<16 | 'b'<<8 | 's' // 'nubs'
)

func (GestaltNuBusSlot) String added in v0.5.1

func (e GestaltNuBusSlot) String() string

type GestaltOCE added in v0.5.1

type GestaltOCE uint32
const (
	GestaltOCESFServerAvailable     GestaltOCE = 0x4
	GestaltOCETBAvailable           GestaltOCE = 0x2
	GestaltOCETBNativeGlueAvailable GestaltOCE = 0x10
	GestaltOCETBPresent             GestaltOCE = 0x1
	GestaltOCEToolboxAttr           GestaltOCE = 'o'<<24 | 'c'<<16 | 'e'<<8 | 'u' // 'oceu'
)

func (GestaltOCE) String added in v0.5.1

func (e GestaltOCE) String() string

type GestaltOCEToolboxVersion added in v0.5.1

type GestaltOCEToolboxVersion uint32
const (
	GestaltOCETB                  GestaltOCEToolboxVersion = 0x102
	GestaltOCEToolboxVersionValue GestaltOCEToolboxVersion = 'o'<<24 | 'c'<<16 | 'e'<<8 | 't' // 'ocet'
	GestaltSFServer               GestaltOCEToolboxVersion = 0x100
)

func (GestaltOCEToolboxVersion) String added in v0.6.17

func (e GestaltOCEToolboxVersion) String() string

type GestaltOS added in v0.5.1

type GestaltOS uint32
const (
	// GestaltOSTable: The selector you pass to the [Gestalt] function to determine the  base address of the operating system trap dispatch table.
	GestaltOSTable GestaltOS = 'o'<<24 | 's'<<16 | 't'<<8 | 't' // 'ostt'
)

func (GestaltOS) String added in v0.5.1

func (e GestaltOS) String() string

type GestaltOSAttr added in v0.5.1

type GestaltOSAttr uint32
const (
	GestaltAltivecRegistersSwappedCorrectlyBit GestaltOSAttr = 20
	GestaltIPCSupport                          GestaltOSAttr = 7
	// GestaltLaunchCanReturn: # Discussion
	GestaltLaunchCanReturn GestaltOSAttr = 1
	// GestaltLaunchControl: If this bit is set, the Process Manager is available.
	GestaltLaunchControl GestaltOSAttr = 3
	// GestaltLaunchFullFileSpec: # Discussion
	GestaltLaunchFullFileSpec  GestaltOSAttr = 2
	GestaltNativeProcessMgrBit GestaltOSAttr = 19
	// GestaltOSAttrValue: # Discussion
	GestaltOSAttrValue GestaltOSAttr = 'o'<<24 | 's'<<16 | ' '<<8 | ' ' // 'os  '
	// GestaltRealTempMemory: If `true`, temporary memory handles are real.
	GestaltRealTempMemory     GestaltOSAttr = 5
	GestaltSysDebuggerSupport GestaltOSAttr = 8
	GestaltSysZoneGrowable    GestaltOSAttr = 0
	// GestaltTempMemSupport: If `true`, there is temporary memory support.
	GestaltTempMemSupport GestaltOSAttr = 4
	// GestaltTempMemTracked: If `true`, temporary memory handles are tracked.
	GestaltTempMemTracked GestaltOSAttr = 6
)

func (GestaltOSAttr) String added in v0.6.17

func (e GestaltOSAttr) String() string

type GestaltOpen added in v0.5.1

type GestaltOpen uint32
const (
	GestaltOpenTpt                     GestaltOpen = 'o'<<24 | 't'<<16 | 'a'<<8 | 'n' // 'otan'
	GestaltOpenTptAppleTalkLoadedBit   GestaltOpen = 3
	GestaltOpenTptAppleTalkLoadedMask  GestaltOpen = 0x8
	GestaltOpenTptAppleTalkPresentBit  GestaltOpen = 2
	GestaltOpenTptAppleTalkPresentMask GestaltOpen = 0x4
	GestaltOpenTptIPXSPXLoadedBit      GestaltOpen = 7
	GestaltOpenTptIPXSPXLoadedMask     GestaltOpen = 0x80
	GestaltOpenTptIPXSPXPresentBit     GestaltOpen = 6
	GestaltOpenTptIPXSPXPresentMask    GestaltOpen = 0x40
	GestaltOpenTptLoadedBit            GestaltOpen = 1
	GestaltOpenTptLoadedMask           GestaltOpen = 0x2
	GestaltOpenTptPresentBit           GestaltOpen = 0
	GestaltOpenTptPresentMask          GestaltOpen = 0x1
	GestaltOpenTptTCPLoadedBit         GestaltOpen = 5
	GestaltOpenTptTCPLoadedMask        GestaltOpen = 0x20
	GestaltOpenTptTCPPresentBit        GestaltOpen = 4
	GestaltOpenTptTCPPresentMask       GestaltOpen = 0x10
)

func (GestaltOpen) String added in v0.5.1

func (e GestaltOpen) String() string

type GestaltOpenFirmware added in v0.5.1

type GestaltOpenFirmware uint32
const (
	GestaltOpenFirmwareInfo GestaltOpenFirmware = 'o'<<24 | 'p'<<16 | 'f'<<8 | 'w' // 'opfw'
)

func (GestaltOpenFirmware) String added in v0.5.1

func (e GestaltOpenFirmware) String() string

type GestaltOpenTptNetwork added in v0.5.1

type GestaltOpenTptNetwork uint32
const (
	GestaltOpenTptNetworkSetupValue               GestaltOpenTptNetwork = 'o'<<24 | 't'<<16 | 'c'<<8 | 'f' // 'otcf'
	GestaltOpenTptNetworkSetupLegacyExport        GestaltOpenTptNetwork = 1
	GestaltOpenTptNetworkSetupLegacyImport        GestaltOpenTptNetwork = 0
	GestaltOpenTptNetworkSetupSupportsMultihoming GestaltOpenTptNetwork = 2
)

func (GestaltOpenTptNetwork) String added in v0.5.1

func (e GestaltOpenTptNetwork) String() string

type GestaltOpenTptNetworkSetup added in v0.5.1

type GestaltOpenTptNetworkSetup uint32
const (
	GestaltOpenTptNetworkSetupVersion GestaltOpenTptNetworkSetup = 'o'<<24 | 't'<<16 | 'c'<<8 | 'v' // 'otcv'
)

func (GestaltOpenTptNetworkSetup) String added in v0.5.1

type GestaltOpenTptRemoteAccess added in v0.5.1

type GestaltOpenTptRemoteAccess uint32
const (
	GestaltOpenTptRemoteAccessVersion GestaltOpenTptRemoteAccess = 'o'<<24 | 't'<<16 | 'r'<<8 | 'v' // 'otrv'
)

func (GestaltOpenTptRemoteAccess) String added in v0.5.1

type GestaltOpenTptRemoteAccessEnum added in v0.6.17

type GestaltOpenTptRemoteAccessEnum uint32
const (
	GestaltOpenTptARAPPresent            GestaltOpenTptRemoteAccessEnum = 6
	GestaltOpenTptPPPPresent             GestaltOpenTptRemoteAccessEnum = 5
	GestaltOpenTptRemoteAccessValue      GestaltOpenTptRemoteAccessEnum = 'o'<<24 | 't'<<16 | 'r'<<8 | 'a' // 'otra'
	GestaltOpenTptRemoteAccessClientOnly GestaltOpenTptRemoteAccessEnum = 2
	GestaltOpenTptRemoteAccessLoaded     GestaltOpenTptRemoteAccessEnum = 1
	GestaltOpenTptRemoteAccessMPServer   GestaltOpenTptRemoteAccessEnum = 4
	GestaltOpenTptRemoteAccessPServer    GestaltOpenTptRemoteAccessEnum = 3
	GestaltOpenTptRemoteAccessPresent    GestaltOpenTptRemoteAccessEnum = 0
)

func (GestaltOpenTptRemoteAccessEnum) String added in v0.6.17

type GestaltPCCard added in v0.5.1

type GestaltPCCard uint32
const (
	GestaltCardServicesPresent   GestaltPCCard = 0
	GestaltPCCardValue           GestaltPCCard = 'p'<<24 | 'c'<<16 | 'c'<<8 | 'd' // 'pccd'
	GestaltPCCardFamilyPresent   GestaltPCCard = 1
	GestaltPCCardHasPowerControl GestaltPCCard = 2
	GestaltPCCardSupportsCardBus GestaltPCCard = 3
)

func (GestaltPCCard) String added in v0.6.17

func (e GestaltPCCard) String() string

type GestaltPCX added in v0.5.1

type GestaltPCX uint32
const (
	// GestaltPCXAttr: The selector you pass to the [Gestalt] function to determine the PC Exchange attributes.
	GestaltPCXAttr            GestaltPCX = 'p'<<24 | 'c'<<16 | 'x'<<8 | 'g' // 'pcxg'
	GestaltPCXHas8and16BitFAT GestaltPCX = 0
	GestaltPCXHasProDOS       GestaltPCX = 1
	GestaltPCXNewUI           GestaltPCX = 2
	GestaltPCXUseICMapping    GestaltPCX = 3
)

func (GestaltPCX) String added in v0.5.1

func (e GestaltPCX) String() string

type GestaltPPC added in v0.5.1

type GestaltPPC uint32
const (
	GestaltPPCSupportsIncoming          GestaltPPC = 0x1
	GestaltPPCSupportsIncomingAppleTalk GestaltPPC = 0x10
	GestaltPPCSupportsIncomingTCP_IP    GestaltPPC = 0x20
	GestaltPPCSupportsOutGoing          GestaltPPC = 0x2
	GestaltPPCSupportsOutgoingAppleTalk GestaltPPC = 0x100
	GestaltPPCSupportsOutgoingTCP_IP    GestaltPPC = 0x200
	GestaltPPCSupportsRealTime          GestaltPPC = 0x1000
	GestaltPPCSupportsTCP_IP            GestaltPPC = 0x4
	// GestaltPPCToolboxAttr: The selector you pass to the Gestalt function to determine the Program-to-Program Communication (PPC) Toolbox attributes.
	GestaltPPCToolboxAttr    GestaltPPC = 'p'<<24 | 'p'<<16 | 'c'<<8 | ' ' // 'ppc '
	GestaltPPCToolboxPresent GestaltPPC = 0
)

func (GestaltPPC) String added in v0.5.1

func (e GestaltPPC) String() string

type GestaltParityAttr added in v0.5.1

type GestaltParityAttr uint32
const (
	GestaltHasParityCapability GestaltParityAttr = 0
	// GestaltParityAttrValue: # Discussion
	GestaltParityAttrValue GestaltParityAttr = 'p'<<24 | 'r'<<16 | 't'<<8 | 'y' // 'prty'
	GestaltParityEnabled   GestaltParityAttr = 1
)

func (GestaltParityAttr) String added in v0.6.17

func (e GestaltParityAttr) String() string

type GestaltPhysicalRAM added in v0.5.1

type GestaltPhysicalRAM uint32
const (
	// GestaltPhysicalRAMSize: The selector you pass to the [Gestalt] function to determine the  number of bytes of physical RAM currently installed.
	GestaltPhysicalRAMSize GestaltPhysicalRAM = 'r'<<24 | 'a'<<16 | 'm'<<8 | ' ' // 'ram '
)

func (GestaltPhysicalRAM) String added in v0.5.1

func (e GestaltPhysicalRAM) String() string

type GestaltPhysicalRAMSizeIn added in v0.5.1

type GestaltPhysicalRAMSizeIn uint32
const (
	GestaltPhysicalRAMSizeInMegabytes GestaltPhysicalRAMSizeIn = 'r'<<24 | 'a'<<16 | 'm'<<8 | 'm' // 'ramm'
)

func (GestaltPhysicalRAMSizeIn) String added in v0.5.1

func (e GestaltPhysicalRAMSizeIn) String() string

type GestaltPopup added in v0.5.1

type GestaltPopup uint32
const (
	// GestaltPopupAttr: The selector you pass to the [Gestalt] function to determine the  attribute of the pop-up control definition.
	GestaltPopupAttr    GestaltPopup = 'p'<<24 | 'o'<<16 | 'p'<<8 | '!' // 'pop!'
	GestaltPopupPresent GestaltPopup = 0
)

func (GestaltPopup) String added in v0.5.1

func (e GestaltPopup) String() string

type GestaltPortable2001 added in v0.5.1

type GestaltPortable2001 uint32
const (
	GestaltPortable2001ANSIKbd GestaltPortable2001 = 202
	GestaltPortable2001ISOKbd  GestaltPortable2001 = 203
	GestaltPortable2001JISKbd  GestaltPortable2001 = 207
)

func (GestaltPortable2001) String added in v0.5.1

func (e GestaltPortable2001) String() string

type GestaltPowerMgr added in v0.5.1

type GestaltPowerMgr uint32
const (
	GestaltPowerMgrVers GestaltPowerMgr = 'p'<<24 | 'w'<<16 | 'r'<<8 | 'v' // 'pwrv'
)

func (GestaltPowerMgr) String added in v0.5.1

func (e GestaltPowerMgr) String() string

type GestaltPowerMgrAttr added in v0.5.1

type GestaltPowerMgrAttr uint32
const (
	// GestaltPMgrCPUIdle: If true the CPU is capable of going into a low–power-consumption state.
	GestaltPMgrCPUIdle GestaltPowerMgrAttr = 1
	// GestaltPMgrDispatchExists: If true, Dispatch is present.
	GestaltPMgrDispatchExists GestaltPowerMgrAttr = 4
	// GestaltPMgrExists: If true, the Power Manager is present.
	GestaltPMgrExists GestaltPowerMgrAttr = 0
	// GestaltPMgrSCC: If true, it is possible to stop the SCC clock, thus effectively turning off the serial ports.
	GestaltPMgrSCC GestaltPowerMgrAttr = 2
	// GestaltPMgrSound: If true, it is possible to turn off power to the sound circuits.
	GestaltPMgrSound                           GestaltPowerMgrAttr = 3
	GestaltPMgrSupportsAVPowerStateAtSleepWake GestaltPowerMgrAttr = 5
	// GestaltPowerMgrAttrValue: The [Gestalt] selector you pass to determine which Power Manager capabilities are available.
	GestaltPowerMgrAttrValue GestaltPowerMgrAttr = 'p'<<24 | 'o'<<16 | 'w'<<8 | 'r' // 'powr'
)

func (GestaltPowerMgrAttr) String added in v0.6.17

func (e GestaltPowerMgrAttr) String() string

type GestaltPowerPC added in v0.5.1

type GestaltPowerPC uint32
const (
	GestaltPowerPCASArchitecture            GestaltPowerPC = 8
	GestaltPowerPCHas64BitSupport           GestaltPowerPC = 6
	GestaltPowerPCHasDCBAInstruction        GestaltPowerPC = 3
	GestaltPowerPCHasDCBTStreams            GestaltPowerPC = 7
	GestaltPowerPCHasDataStreams            GestaltPowerPC = 5
	GestaltPowerPCHasGraphicsInstructions   GestaltPowerPC = 0
	GestaltPowerPCHasSTFIWXInstruction      GestaltPowerPC = 1
	GestaltPowerPCHasSquareRootInstructions GestaltPowerPC = 2
	GestaltPowerPCHasVectorInstructions     GestaltPowerPC = 4
	GestaltPowerPCIgnoresDCBST              GestaltPowerPC = 9
	GestaltPowerPCProcessorFeatures         GestaltPowerPC = 'p'<<24 | 'p'<<16 | 'c'<<8 | 'f' // 'ppcf'
)

func (GestaltPowerPC) String added in v0.5.1

func (e GestaltPowerPC) String() string

type GestaltProcClk added in v0.5.1

type GestaltProcClk uint32
const (
	GestaltProcClkSpeed GestaltProcClk = 'p'<<24 | 'c'<<16 | 'l'<<8 | 'k' // 'pclk'
)

func (GestaltProcClk) String added in v0.5.1

func (e GestaltProcClk) String() string

type GestaltProcClkSpeedM added in v0.5.1

type GestaltProcClkSpeedM uint32
const (
	GestaltProcClkSpeedMHz GestaltProcClkSpeedM = 'm'<<24 | 'c'<<16 | 'l'<<8 | 'k' // 'mclk'
)

func (GestaltProcClkSpeedM) String added in v0.5.1

func (e GestaltProcClkSpeedM) String() string

type GestaltProcessorCacheLine added in v0.5.1

type GestaltProcessorCacheLine uint32
const (
	GestaltProcessorCacheLineSize GestaltProcessorCacheLine = 'c'<<24 | 's'<<16 | 'i'<<8 | 'z' // 'csiz'
)

func (GestaltProcessorCacheLine) String added in v0.5.1

func (e GestaltProcessorCacheLine) String() string

type GestaltProcessorType added in v0.5.1

type GestaltProcessorType uint32
const (
	Gestalt68000 GestaltProcessorType = 1
	Gestalt68010 GestaltProcessorType = 2
	Gestalt68020 GestaltProcessorType = 3
	Gestalt68030 GestaltProcessorType = 4
	Gestalt68040 GestaltProcessorType = 5
	// GestaltProcessorTypeValue: The selector you pass to the [Gestalt] function to determine the type of microprocessor currently running.
	GestaltProcessorTypeValue GestaltProcessorType = 'p'<<24 | 'r'<<16 | 'o'<<8 | 'c' // 'proc'
)

func (GestaltProcessorType) String added in v0.6.17

func (e GestaltProcessorType) String() string

type GestaltQD3 added in v0.5.1

type GestaltQD3 uint32
const (
	GestaltQD3D        GestaltQD3 = 'q'<<24 | 'd'<<16 | '3'<<8 | 'd' // 'qd3d'
	GestaltQD3DPresent GestaltQD3 = 0
)

func (GestaltQD3) String added in v0.5.1

func (e GestaltQD3) String() string

type GestaltQD3DViewer added in v0.5.1

type GestaltQD3DViewer uint32
const (
	GestaltQD3DViewerValue   GestaltQD3DViewer = 'q'<<24 | '3'<<16 | 'v'<<8 | 'c' // 'q3vc'
	GestaltQD3DViewerPresent GestaltQD3DViewer = 0
)

func (GestaltQD3DViewer) String added in v0.6.17

func (e GestaltQD3DViewer) String() string

type GestaltQDTextFeatures added in v0.5.1

type GestaltQDTextFeatures uint32
const (
	// GestaltAntiAliasedTextAvailable: Capable of antialiased text.
	GestaltAntiAliasedTextAvailable GestaltQDTextFeatures = 2
	GestaltCanUseCGTextRendering    GestaltQDTextFeatures = 6
	GestaltCreatesAliasFontRsrc     GestaltQDTextFeatures = 4
	GestaltNativeType1FontSupport   GestaltQDTextFeatures = 5
	// GestaltOFA2available: OFA2 is available.
	GestaltOFA2available       GestaltQDTextFeatures = 3
	GestaltQDTextFeaturesValue GestaltQDTextFeatures = 'q'<<24 | 'd'<<16 | 't'<<8 | 'f' // 'qdtf'
	// GestaltSbitFontSupport: sbit-only fonts are supported.
	GestaltSbitFontSupport GestaltQDTextFeatures = 1
	// GestaltWSIISupport: WSII support is included.
	GestaltWSIISupport GestaltQDTextFeatures = 0
)

func (GestaltQDTextFeatures) String added in v0.6.17

func (e GestaltQDTextFeatures) String() string

type GestaltQDTextVersion added in v0.5.1

type GestaltQDTextVersion uint32
const (
	// GestaltAllegroQDText: This is the version of QuickDraw Text used with Mac OS 8.2 and up.
	GestaltAllegroQDText GestaltQDTextVersion = 0x100
	GestaltMacOSXQDText  GestaltQDTextVersion = 0x200
	// GestaltOriginalQDText: This is the original version of QuickDraw Text, used through Mac OS 8.1.
	GestaltOriginalQDText     GestaltQDTextVersion = 0
	GestaltQDTextVersionValue GestaltQDTextVersion = 'q'<<24 | 'd'<<16 | 't'<<8 | 'x' // 'qdtx'
)

func (GestaltQDTextVersion) String added in v0.6.17

func (e GestaltQDTextVersion) String() string

type GestaltQTVR added in v0.5.1

type GestaltQTVR uint32
const (
	GestaltQTVRCubicPanosPresent    GestaltQTVR = 3
	GestaltQTVRCylinderPanosPresent GestaltQTVR = 2
	GestaltQTVRMgrAttr              GestaltQTVR = 'q'<<24 | 't'<<16 | 'v'<<8 | 'r' // 'qtvr'
	GestaltQTVRMgrPresent           GestaltQTVR = 0
	GestaltQTVRObjMoviesPresent     GestaltQTVR = 1
)

func (GestaltQTVR) String added in v0.5.1

func (e GestaltQTVR) String() string

type GestaltQTVRMgr added in v0.5.1

type GestaltQTVRMgr uint32
const (
	GestaltQTVRMgrVers GestaltQTVRMgr = 'q'<<24 | 't'<<16 | 'v'<<8 | 'v' // 'qtvv'
)

func (GestaltQTVRMgr) String added in v0.5.1

func (e GestaltQTVRMgr) String() string

type GestaltQuadra605 added in v0.5.1

type GestaltQuadra605 uint32
const (
	GestaltQuadra605Value GestaltQuadra605 = 94
	GestaltQuadra610      GestaltQuadra605 = 53
	GestaltQuadra630      GestaltQuadra605 = 98
	GestaltQuadra650      GestaltQuadra605 = 36
	GestaltQuadra660AV    GestaltQuadra605 = 60
	GestaltQuadra700      GestaltQuadra605 = 22
	GestaltQuadra800      GestaltQuadra605 = 35
	GestaltQuadra840AV    GestaltQuadra605 = 78
	GestaltQuadra900      GestaltQuadra605 = 20
	GestaltQuadra950      GestaltQuadra605 = 26
)

func (GestaltQuadra605) String added in v0.6.17

func (e GestaltQuadra605) String() string

type GestaltQuick added in v0.5.1

type GestaltQuick uint32
const (
	GestaltQuickTimeValue GestaltQuick = 'q'<<24 | 't'<<16 | 'i'<<8 | 'm' // 'qtim'
	// GestaltQuickTimeVersion: The selector you pass to the [Gestalt] function to determine the QuickTime version.
	GestaltQuickTimeVersion GestaltQuick = 'q'<<24 | 't'<<16 | 'i'<<8 | 'm' // 'qtim'
)

func (GestaltQuick) String added in v0.5.1

func (e GestaltQuick) String() string

type GestaltQuickTime added in v0.5.1

type GestaltQuickTime uint32
const (
	GestaltQuickTimeConferencingValue GestaltQuickTime = 'm'<<24 | 't'<<16 | 'l'<<8 | 'k' // 'mtlk'
)

func (GestaltQuickTime) String added in v0.5.1

func (e GestaltQuickTime) String() string

type GestaltQuickTimeConferencing added in v0.5.1

type GestaltQuickTimeConferencing uint32
const (
	GestaltQuickTimeConferencingInfo GestaltQuickTimeConferencing = 'q'<<24 | 't'<<16 | 'c'<<8 | 'i' // 'qtci'
)

func (GestaltQuickTimeConferencing) String added in v0.5.1

type GestaltQuickTimeFeatures added in v0.5.1

type GestaltQuickTimeFeatures uint32
const (
	GestaltPPCQuickTimeLibPresent GestaltQuickTimeFeatures = 0
	GestaltQuickTimeFeaturesValue GestaltQuickTimeFeatures = 'q'<<24 | 't'<<16 | 'r'<<8 | 's' // 'qtrs'
)

func (GestaltQuickTimeFeatures) String added in v0.6.17

func (e GestaltQuickTimeFeatures) String() string

type GestaltQuickTimeThreadSafe added in v0.5.1

type GestaltQuickTimeThreadSafe uint32
const (
	GestaltQuickTimeThreadSafeFeaturesAttr   GestaltQuickTimeThreadSafe = 'q'<<24 | 't'<<16 | 't'<<8 | 'h' // 'qtth'
	GestaltQuickTimeThreadSafeGraphicsExport GestaltQuickTimeThreadSafe = 5
	GestaltQuickTimeThreadSafeGraphicsImport GestaltQuickTimeThreadSafe = 4
	GestaltQuickTimeThreadSafeICM            GestaltQuickTimeThreadSafe = 0
	GestaltQuickTimeThreadSafeMovieExport    GestaltQuickTimeThreadSafe = 3
	GestaltQuickTimeThreadSafeMovieImport    GestaltQuickTimeThreadSafe = 2
	GestaltQuickTimeThreadSafeMoviePlayback  GestaltQuickTimeThreadSafe = 6
	GestaltQuickTimeThreadSafeMovieToolbox   GestaltQuickTimeThreadSafe = 1
)

func (GestaltQuickTimeThreadSafe) String added in v0.5.1

type GestaltQuickdrawFeatures added in v0.5.1

type GestaltQuickdrawFeatures uint32
const (
	GestaltHasColor          GestaltQuickdrawFeatures = 0
	GestaltHasDeepGWorlds    GestaltQuickdrawFeatures = 1
	GestaltHasDirectPixMaps  GestaltQuickdrawFeatures = 2
	GestaltHasGrayishTextOr  GestaltQuickdrawFeatures = 3
	GestaltQDHasLongRowBytes GestaltQuickdrawFeatures = 5
	// GestaltQuickdrawFeaturesValue: The selector you pass to the [Gestalt] function to determine the QuickDraw features.
	GestaltQuickdrawFeaturesValue GestaltQuickdrawFeatures = 'q'<<24 | 'd'<<16 | 'r'<<8 | 'w' // 'qdrw'
	GestaltSupportsMirroring      GestaltQuickdrawFeatures = 4
)

func (GestaltQuickdrawFeatures) String added in v0.6.17

func (e GestaltQuickdrawFeatures) String() string

type GestaltQuickdrawVersion added in v0.5.1

type GestaltQuickdrawVersion uint32
const (
	Gestalt32BitQD    GestaltQuickdrawVersion = 0x200
	Gestalt32BitQD11  GestaltQuickdrawVersion = 0x201
	Gestalt32BitQD12  GestaltQuickdrawVersion = 0x220
	Gestalt32BitQD13  GestaltQuickdrawVersion = 0x230
	Gestalt8BitQD     GestaltQuickdrawVersion = 0x100
	GestaltAllegroQD  GestaltQuickdrawVersion = 0x250
	GestaltMacOSXQD   GestaltQuickdrawVersion = 0x300
	GestaltOriginalQD GestaltQuickdrawVersion = 0
	// GestaltQuickdrawVersionValue: The Gestalt selector you pass to determine what version of QuickDraw is present.
	GestaltQuickdrawVersionValue GestaltQuickdrawVersion = 'q'<<24 | 'd'<<16 | ' '<<8 | ' ' // 'qd  '
)

func (GestaltQuickdrawVersion) String added in v0.6.17

func (e GestaltQuickdrawVersion) String() string

type GestaltRBV added in v0.5.1

type GestaltRBV uint32
const (
	GestaltRBVAddr GestaltRBV = 'r'<<24 | 'b'<<16 | 'v'<<8 | ' ' // 'rbv '
)

func (GestaltRBV) String added in v0.5.1

func (e GestaltRBV) String() string

type GestaltRealtimeMgr added in v0.5.1

type GestaltRealtimeMgr uint32
const (
	// GestaltRealtimeMgrAttr: The selector you pass to the [Gestalt] function to determine the Realtime Manager attributes.
	GestaltRealtimeMgrAttr GestaltRealtimeMgr = 'r'<<24 | 't'<<16 | 'm'<<8 | 'r' // 'rtmr'
	// GestaltRealtimeMgrPresent: ( description forthcoming )
	GestaltRealtimeMgrPresent GestaltRealtimeMgr = 0
)

func (GestaltRealtimeMgr) String added in v0.5.1

func (e GestaltRealtimeMgr) String() string

type GestaltResourceMgrAttr added in v0.5.1

type GestaltResourceMgrAttr uint32
const (
	GestaltHasResourceOverrides GestaltResourceMgrAttr = 1
	// GestaltPartialRsrcs: If `true`, partial resources exist.
	GestaltPartialRsrcs GestaltResourceMgrAttr = 0
	// GestaltResourceMgrAttrValue: The [Gestalt] selector you pass to determine which Resource Manager attributes are present.
	GestaltResourceMgrAttrValue GestaltResourceMgrAttr = 'r'<<24 | 's'<<16 | 'r'<<8 | 'c' // 'rsrc'
)

func (GestaltResourceMgrAttr) String added in v0.6.17

func (e GestaltResourceMgrAttr) String() string

type GestaltResourceMgrBugFixesAttrs added in v0.5.1

type GestaltResourceMgrBugFixesAttrs uint32
const (
	GestaltRMFakeAppleMenuItemsRolledIn          GestaltResourceMgrBugFixesAttrs = 1
	GestaltRMForceSysHeapRolledIn                GestaltResourceMgrBugFixesAttrs = 0
	GestaltRMSupportsFSCalls                     GestaltResourceMgrBugFixesAttrs = 4
	GestaltRMTypeIndexOrderingReverse            GestaltResourceMgrBugFixesAttrs = 8
	GestaltResourceMgrBugFixesAttrsValue         GestaltResourceMgrBugFixesAttrs = 'r'<<24 | 'm'<<16 | 'b'<<8 | 'g' // 'rmbg'
	GestaltSanityCheckResourceFiles              GestaltResourceMgrBugFixesAttrs = 2
	GestaltSupportsFSpResourceFileAlreadyOpenBit GestaltResourceMgrBugFixesAttrs = 3
)

func (GestaltResourceMgrBugFixesAttrs) String added in v0.6.17

type GestaltSCCRead added in v0.5.1

type GestaltSCCRead uint32
const (
	GestaltSCCReadAddr GestaltSCCRead = 's'<<24 | 'c'<<16 | 'c'<<8 | 'r' // 'sccr'
)

func (GestaltSCCRead) String added in v0.5.1

func (e GestaltSCCRead) String() string

type GestaltSCCWrite added in v0.5.1

type GestaltSCCWrite uint32
const (
	GestaltSCCWriteAddr GestaltSCCWrite = 's'<<24 | 'c'<<16 | 'c'<<8 | 'w' // 'sccw'
)

func (GestaltSCCWrite) String added in v0.5.1

func (e GestaltSCCWrite) String() string

type GestaltSCSI added in v0.5.1

type GestaltSCSI uint32
const (
	GestaltAsyncSCSI      GestaltSCSI = 0
	GestaltAsyncSCSIINROM GestaltSCSI = 1
	GestaltSCSIValue      GestaltSCSI = 's'<<24 | 'c'<<16 | 's'<<8 | 'i' // 'scsi'
	GestaltSCSIPollSIH    GestaltSCSI = 3
	GestaltSCSISlotBoot   GestaltSCSI = 2
)

func (GestaltSCSI) String added in v0.6.17

func (e GestaltSCSI) String() string

type GestaltSDPFind added in v0.5.1

type GestaltSDPFind uint32
const (
	GestaltSDPFindVersion GestaltSDPFind = 'd'<<24 | 'f'<<16 | 'n'<<8 | 'd' // 'dfnd'
)

func (GestaltSDPFind) String added in v0.5.1

func (e GestaltSDPFind) String() string

type GestaltSDPPrompt added in v0.5.1

type GestaltSDPPrompt uint32
const (
	GestaltSDPPromptVersion GestaltSDPPrompt = 'p'<<24 | 'r'<<16 | 'p'<<8 | 'v' // 'prpv'
)

func (GestaltSDPPrompt) String added in v0.5.1

func (e GestaltSDPPrompt) String() string

type GestaltSDPStandardDirectory added in v0.5.1

type GestaltSDPStandardDirectory uint32
const (
	GestaltSDPStandardDirectoryVersion GestaltSDPStandardDirectory = 's'<<24 | 'd'<<16 | 'v'<<8 | 'r' // 'sdvr'
)

func (GestaltSDPStandardDirectory) String added in v0.5.1

type GestaltSMPMailer added in v0.5.1

type GestaltSMPMailer uint32
const (
	GestaltSMPMailerVersion GestaltSMPMailer = 'm'<<24 | 'a'<<16 | 'l'<<8 | 'r' // 'malr'
)

func (GestaltSMPMailer) String added in v0.5.1

func (e GestaltSMPMailer) String() string

type GestaltSMPSPSendLetter added in v0.5.1

type GestaltSMPSPSendLetter uint32
const (
	GestaltSMPSPSendLetterVersion GestaltSMPSPSendLetter = 's'<<24 | 'p'<<16 | 's'<<8 | 'l' // 'spsl'
)

func (GestaltSMPSPSendLetter) String added in v0.5.1

func (e GestaltSMPSPSendLetter) String() string

type GestaltSafeOFAttr added in v0.5.1

type GestaltSafeOFAttr uint32
const (
	GestaltFileAllocationZeroedBlocksBit   GestaltSafeOFAttr = 4
	GestaltInitHeapZerosOutHeapsBit        GestaltSafeOFAttr = 1
	GestaltNewHandleReturnsZeroedMemoryBit GestaltSafeOFAttr = 2
	GestaltNewPtrReturnsZeroedMemoryBit    GestaltSafeOFAttr = 3
	GestaltSafeOFAttrValue                 GestaltSafeOFAttr = 's'<<24 | 'a'<<16 | 'f'<<8 | 'e' // 'safe'
	GestaltVMZerosPagesBit                 GestaltSafeOFAttr = 0
)

func (GestaltSafeOFAttr) String added in v0.6.17

func (e GestaltSafeOFAttr) String() string

type GestaltScrapMgr added in v0.5.1

type GestaltScrapMgr uint32
const (
	// GestaltScrapMgrAttr: The [Gestalt] selector you pass to determine which Scrap Manager attributes are present.
	GestaltScrapMgrAttr GestaltScrapMgr = 's'<<24 | 'c'<<16 | 'r'<<8 | 'a' // 'scra'
	// GestaltScrapMgrTranslationAware: If `true`, the Scrap Manager supports Translation Manager.
	GestaltScrapMgrTranslationAware GestaltScrapMgr = 0
)

func (GestaltScrapMgr) String added in v0.5.1

func (e GestaltScrapMgr) String() string

type GestaltScreenCapture added in v0.5.1

type GestaltScreenCapture uint32
const (
	GestaltScreenCaptureDir  GestaltScreenCapture = 'p'<<24 | 'i'<<16 | 'c'<<8 | '2' // 'pic2'
	GestaltScreenCaptureMain GestaltScreenCapture = 'p'<<24 | 'i'<<16 | 'c'<<8 | '1' // 'pic1'
)

func (GestaltScreenCapture) String added in v0.5.1

func (e GestaltScreenCapture) String() string

type GestaltScript added in v0.5.1

type GestaltScript uint32
const (
	// GestaltScriptCount: The selector you pass to the Gestalt function to determine the number of script systems currently active.
	GestaltScriptCount GestaltScript = 's'<<24 | 'c'<<16 | 'r'<<8 | '#' // 'scr#'
)

func (GestaltScript) String added in v0.5.1

func (e GestaltScript) String() string

type GestaltScriptMgr added in v0.5.1

type GestaltScriptMgr uint32
const (
	// GestaltScriptMgrVersion: The selector you pass to the [Gestalt] function to determine the version number of the Script Manager (in the low-order word of the return value).
	GestaltScriptMgrVersion GestaltScriptMgr = 's'<<24 | 'c'<<16 | 'r'<<8 | 'i' // 'scri'
)

func (GestaltScriptMgr) String added in v0.5.1

func (e GestaltScriptMgr) String() string

type GestaltSerialAttr added in v0.5.1

type GestaltSerialAttr uint32
const (
	GestaltHasGPIaToDCDa  GestaltSerialAttr = 0
	GestaltHasGPIaToRTxCa GestaltSerialAttr = 1
	GestaltHasGPIbToDCDb  GestaltSerialAttr = 2
	GestaltHidePortA      GestaltSerialAttr = 3
	GestaltHidePortB      GestaltSerialAttr = 4
	GestaltPortADisabled  GestaltSerialAttr = 5
	GestaltPortBDisabled  GestaltSerialAttr = 6
	// GestaltSerialAttrValue: The selector you pass to the [Gestalt] function to determine the serial hardware attributes of the machine, such as whether or not the GPIa line is connected and can be used for external clocking.
	GestaltSerialAttrValue GestaltSerialAttr = 's'<<24 | 'e'<<16 | 'r'<<8 | ' ' // 'ser '
)

func (GestaltSerialAttr) String added in v0.6.17

func (e GestaltSerialAttr) String() string

type GestaltShutdown added in v0.5.1

type GestaltShutdown uint32
const (
	GestaltShutdownAttributes            GestaltShutdown = 's'<<24 | 'h'<<16 | 'u'<<8 | 't' // 'shut'
	GestaltShutdownHassdOnBootVolUnmount GestaltShutdown = 0
)

func (GestaltShutdown) String added in v0.5.1

func (e GestaltShutdown) String() string

type GestaltSlotAttr added in v0.5.1

type GestaltSlotAttr uint32
const (
	GestaltNuBusPresent        GestaltSlotAttr = 1
	GestaltPortableSlotPresent GestaltSlotAttr = 4
	GestaltSE30SlotPresent     GestaltSlotAttr = 3
	GestaltSESlotPresent       GestaltSlotAttr = 2
	// GestaltSlotAttrValue: The selector you pass to the [Gestalt] function to determine the Slot Manager attributes.
	GestaltSlotAttrValue GestaltSlotAttr = 's'<<24 | 'l'<<16 | 'o'<<8 | 't' // 'slot'
	GestaltSlotMgrExists GestaltSlotAttr = 0
)

func (GestaltSlotAttr) String added in v0.6.17

func (e GestaltSlotAttr) String() string

type GestaltSoftwareVendor added in v0.5.1

type GestaltSoftwareVendor uint32
const (
	GestaltSoftwareVendorApple    GestaltSoftwareVendor = 'A'<<24 | 'p'<<16 | 'p'<<8 | 'l' // 'Appl'
	GestaltSoftwareVendorCode     GestaltSoftwareVendor = 's'<<24 | 'r'<<16 | 'a'<<8 | 'd' // 'srad'
	GestaltSoftwareVendorLicensee GestaltSoftwareVendor = 'L'<<24 | 'c'<<16 | 'n'<<8 | 's' // 'Lcns'
)

func (GestaltSoftwareVendor) String added in v0.5.1

func (e GestaltSoftwareVendor) String() string

type GestaltSoundAttr added in v0.5.1

type GestaltSoundAttr uint32
const (
	// Gestalt16BitAudioSupport: # Discussion
	Gestalt16BitAudioSupport GestaltSoundAttr = 12
	// Gestalt16BitSoundIO: # Discussion
	Gestalt16BitSoundIO GestaltSoundAttr = 7
	// GestaltBuiltInSoundInput: Set if a built-in sound input device is available.
	GestaltBuiltInSoundInput GestaltSoundAttr = 4
	// GestaltHasSoundInputDevice: Set if a sound input device is available.
	GestaltHasSoundInputDevice GestaltSoundAttr = 5
	// GestaltLineLevelInput: # Discussion
	GestaltLineLevelInput GestaltSoundAttr = 9
	// GestaltMultiChannels: # Discussion
	GestaltMultiChannels GestaltSoundAttr = 11
	// GestaltPlayAndRecord: # Discussion
	GestaltPlayAndRecord GestaltSoundAttr = 6
	// GestaltSndPlayDoubleBuffer: # Discussion
	GestaltSndPlayDoubleBuffer GestaltSoundAttr = 10
	// GestaltSoundAttrValue: The Gestalt selector which you pass to the [Gestalt] function.
	GestaltSoundAttrValue GestaltSoundAttr = 's'<<24 | 'n'<<16 | 'd'<<8 | ' ' // 'snd '
	// GestaltSoundIOMgrPresent: Set if the Sound Input Manager is available.
	GestaltSoundIOMgrPresent GestaltSoundAttr = 3
	// GestaltStereoCapability: Set if the built-in sound hardware is able to produce stereo sounds.
	GestaltStereoCapability GestaltSoundAttr = 0
	// GestaltStereoInput: # Discussion
	GestaltStereoInput GestaltSoundAttr = 8
	// GestaltStereoMixing: Set if the built-in sound hardware mixes both left and right channels of stereo sound into a single audio signal for the internal speaker.
	GestaltStereoMixing GestaltSoundAttr = 1
)

func (GestaltSoundAttr) String added in v0.6.17

func (e GestaltSoundAttr) String() string

type GestaltSpeech added in v0.5.1

type GestaltSpeech uint32
const (
	// GestaltSpeechAttr: The selector you pass to the [Gestalt] function to determine the Speech Manager attributes.
	GestaltSpeechAttr       GestaltSpeech = 't'<<24 | 't'<<16 | 's'<<8 | 'c' // 'ttsc'
	GestaltSpeechHasPPCGlue GestaltSpeech = 1
	GestaltSpeechMgrPresent GestaltSpeech = 0
)

func (GestaltSpeech) String added in v0.5.1

func (e GestaltSpeech) String() string

type GestaltSpeechRecognition added in v0.5.1

type GestaltSpeechRecognition uint32
const (
	GestaltSpeechRecognitionVersion GestaltSpeechRecognition = 's'<<24 | 'r'<<16 | 't'<<8 | 'b' // 'srtb'
)

func (GestaltSpeechRecognition) String added in v0.5.1

func (e GestaltSpeechRecognition) String() string

type GestaltSpeechRecognitionAttr added in v0.5.1

type GestaltSpeechRecognitionAttr uint32
const (
	// GestaltDesktopSpeechRecognition: If this bit is set, the Speech Recognition Manager supports the desktop microphone.
	GestaltDesktopSpeechRecognition GestaltSpeechRecognitionAttr = 1
	// GestaltSpeechRecognitionAttrValue: The selector which you pass to the [Gestalt] function to determine the Speech Recognition Manager attributes.
	GestaltSpeechRecognitionAttrValue GestaltSpeechRecognitionAttr = 's'<<24 | 'r'<<16 | 't'<<8 | 'a' // 'srta'
	// GestaltTelephoneSpeechRecognition: If this bit is set, the Speech Recognition Manager supports telephone input.
	GestaltTelephoneSpeechRecognition GestaltSpeechRecognitionAttr = 2
)

func (GestaltSpeechRecognitionAttr) String added in v0.6.17

type GestaltSplitOS added in v0.5.1

type GestaltSplitOS uint32
const (
	GestaltSplitOSAttr                                   GestaltSplitOS = 's'<<24 | 'p'<<16 | 'o'<<8 | 's' // 'spos'
	GestaltSplitOSAware                                  GestaltSplitOS = 1
	GestaltSplitOSBootDriveIsNetworkVolume               GestaltSplitOS = 0
	GestaltSplitOSEnablerVolumeIsDifferentFromBootVolume GestaltSplitOS = 2
	GestaltSplitOSMachineNameSetToNetworkNameTemp        GestaltSplitOS = 3
	GestaltSplitOSMachineNameStartupDiskIsNonPersistent  GestaltSplitOS = 5
)

func (GestaltSplitOS) String added in v0.5.1

func (e GestaltSplitOS) String() string

type GestaltStandard added in v0.5.1

type GestaltStandard uint32
const (
	// GestaltStandardFile58: # Discussion
	GestaltStandardFile58 GestaltStandard = 0
	// GestaltStandardFileAttr: The selector you pass to the Gestalt function to determine the Standard File Package attributes.
	GestaltStandardFileAttr                       GestaltStandard = 's'<<24 | 't'<<16 | 'd'<<8 | 'f' // 'stdf'
	GestaltStandardFileHasColorIcons              GestaltStandard = 2
	GestaltStandardFileHasDynamicVolumeAllocation GestaltStandard = 4
	GestaltStandardFileTranslationAware           GestaltStandard = 1
	GestaltStandardFileUseGenericIcons            GestaltStandard = 3
)

func (GestaltStandard) String added in v0.5.1

func (e GestaltStandard) String() string

type GestaltStdNBP added in v0.5.1

type GestaltStdNBP uint32
const (
	// GestaltStdNBPAttr: The selector you pass to the [Gestalt] function to determine information about the StandardNBP (Name-Binding Protocol) function.
	GestaltStdNBPAttr                 GestaltStdNBP = 'n'<<24 | 'l'<<16 | 'u'<<8 | 'p' // 'nlup'
	GestaltStdNBPPresent              GestaltStdNBP = 0
	GestaltStdNBPSupportsAutoPosition GestaltStdNBP = 1
)

func (GestaltStdNBP) String added in v0.5.1

func (e GestaltStdNBP) String() string

type GestaltSysArchitecture added in v0.5.1

type GestaltSysArchitecture uint32
const (
	// Gestalt68k: If the [Gestalt] function returns `gestalt68k`, the system is a MC680x0 Macintosh.
	Gestalt68k GestaltSysArchitecture = 1
	GestaltArm GestaltSysArchitecture = 20
	// GestaltIntel: If the [Gestalt] function returns `gestaltIntel`, the system is is an Intel-based Macintosh.
	GestaltIntel GestaltSysArchitecture = 10
	// GestaltPowerPCValue: If the [Gestalt] function returns `gestaltPowerPC`, the system is a PowerPC Macintosh.
	GestaltPowerPCValue GestaltSysArchitecture = 2
	// GestaltSysArchitectureValue: The selector you pass to the [Gestalt] function to determine the native system architecture.
	GestaltSysArchitectureValue GestaltSysArchitecture = 's'<<24 | 'y'<<16 | 's'<<8 | 'a' // 'sysa'
)

func (GestaltSysArchitecture) String added in v0.6.17

func (e GestaltSysArchitecture) String() string

type GestaltSystem added in v0.5.1

type GestaltSystem uint32
const (
	// Deprecated.
	GestaltSystemVersion GestaltSystem = 's'<<24 | 'y'<<16 | 's'<<8 | 'v' // 'sysv'
	// Deprecated.
	GestaltSystemVersionBugFix GestaltSystem = 's'<<24 | 'y'<<16 | 's'<<8 | '3' // 'sys3'
	// Deprecated.
	GestaltSystemVersionMajor GestaltSystem = 's'<<24 | 'y'<<16 | 's'<<8 | '1' // 'sys1'
	// Deprecated.
	GestaltSystemVersionMinor GestaltSystem = 's'<<24 | 'y'<<16 | 's'<<8 | '2' // 'sys2'
)

func (GestaltSystem) String added in v0.5.1

func (e GestaltSystem) String() string

type GestaltSystemUpdate added in v0.5.1

type GestaltSystemUpdate uint32
const (
	GestaltSystemUpdateVersion GestaltSystemUpdate = 's'<<24 | 'y'<<16 | 's'<<8 | 'u' // 'sysu'
)

func (GestaltSystemUpdate) String added in v0.5.1

func (e GestaltSystemUpdate) String() string

type GestaltT added in v0.5.1

type GestaltT uint32
const (
	GestaltTE6 GestaltT = 6
)

func (GestaltT) String added in v0.5.1

func (e GestaltT) String() string

type GestaltTE added in v0.5.1

type GestaltTE uint32
const (
	// GestaltTEAttr: The [Gestalt] selector you pass to determine whichTextEdit attributes are present.
	GestaltTEAttr GestaltTE = 't'<<24 | 'e'<<16 | 'a'<<8 | 't' // 'teat'
	// GestaltTEHasGetHiliteRgn: If true, TextEdit has [TEGetHiliteRgn].
	GestaltTEHasGetHiliteRgn GestaltTE = 0
	// GestaltTEHasWhiteBackground: If `true`, TextEdit supports overriding the [TERec]' data structure background field to white.
	GestaltTEHasWhiteBackground GestaltTE = 3
	// GestaltTESupportsInlineInput: If `true`, TextEdit does Inline Input.
	GestaltTESupportsInlineInput GestaltTE = 1
	// GestaltTESupportsTextObjects: If `true`, TextEdit does Text Objects.
	GestaltTESupportsTextObjects GestaltTE = 2
)

func (GestaltTE) String added in v0.5.1

func (e GestaltTE) String() string

type GestaltTSMTEAttr added in v0.5.1

type GestaltTSMTEAttr uint32
const (
	GestaltTSMTE          GestaltTSMTEAttr = 0
	GestaltTSMTEAttrValue GestaltTSMTEAttr = 't'<<24 | 'm'<<16 | 'T'<<8 | 'E' // 'tmTE'
	GestaltTSMTEPresent   GestaltTSMTEAttr = 0
)

func (GestaltTSMTEAttr) String added in v0.6.17

func (e GestaltTSMTEAttr) String() string

type GestaltTSMTEVersion added in v0.5.1

type GestaltTSMTEVersion uint32
const (
	GestaltTSMTE1            GestaltTSMTEVersion = 0x100
	GestaltTSMTE15           GestaltTSMTEVersion = 0x150
	GestaltTSMTE152          GestaltTSMTEVersion = 0x152
	GestaltTSMTEVersionValue GestaltTSMTEVersion = 't'<<24 | 'm'<<16 | 'T'<<8 | 'V' // 'tmTV'
)

func (GestaltTSMTEVersion) String added in v0.6.17

func (e GestaltTSMTEVersion) String() string

type GestaltTSMgrAttr added in v0.5.1

type GestaltTSMgrAttr uint32
const (
	GestaltTSMDisplayMgrAwareBit GestaltTSMgrAttr = 0
	GestaltTSMdoesTSMTEBit       GestaltTSMgrAttr = 1
	GestaltTSMgrAttrValue        GestaltTSMgrAttr = 't'<<24 | 's'<<16 | 'm'<<8 | 'a' // 'tsma'
)

func (GestaltTSMgrAttr) String added in v0.6.17

func (e GestaltTSMgrAttr) String() string

type GestaltTSMgrVersion added in v0.5.1

type GestaltTSMgrVersion uint32
const (
	GestaltTSMgr15 GestaltTSMgrVersion = 0x150
	GestaltTSMgr20 GestaltTSMgrVersion = 0x200
	GestaltTSMgr22 GestaltTSMgrVersion = 0x220
	GestaltTSMgr23 GestaltTSMgrVersion = 0x230
	// GestaltTSMgrVersionValue: The selector you pass to the [Gestalt] function to determine the version of the Text Services Manager.
	GestaltTSMgrVersionValue GestaltTSMgrVersion = 't'<<24 | 's'<<16 | 'm'<<8 | 'v' // 'tsmv'
)

func (GestaltTSMgrVersion) String added in v0.6.17

func (e GestaltTSMgrVersion) String() string

type GestaltTVAttr added in v0.5.1

type GestaltTVAttr uint32
const (
	GestaltHasFMTuner             GestaltTVAttr = 7
	GestaltHasHWClosedCaptioning  GestaltTVAttr = 2
	GestaltHasIRRemote            GestaltTVAttr = 3
	GestaltHasSerialFader         GestaltTVAttr = 6
	GestaltHasSoundFader          GestaltTVAttr = 1
	GestaltHasStereoDecoder       GestaltTVAttr = 5
	GestaltHasSystemIRFunction    GestaltTVAttr = 8
	GestaltHasTVTuner             GestaltTVAttr = 0
	GestaltHasVidDecoderScaler    GestaltTVAttr = 4
	GestaltHasZoomedVideo         GestaltTVAttr = 11
	GestaltINeedIRPowerOffConfirm GestaltTVAttr = 10
	GestaltIRDisabled             GestaltTVAttr = 9
	GestaltTVAttrValue            GestaltTVAttr = 't'<<24 | 'v'<<16 | ' '<<8 | ' ' // 'tv  '
)

func (GestaltTVAttr) String added in v0.6.17

func (e GestaltTVAttr) String() string

type GestaltTeleMgr added in v0.5.1

type GestaltTeleMgr uint32
const (
	GestaltTeleMgrAttr             GestaltTeleMgr = 't'<<24 | 'e'<<16 | 'l'<<8 | 'e' // 'tele'
	GestaltTeleMgrAutoAnswer       GestaltTeleMgr = 3
	GestaltTeleMgrIndHandset       GestaltTeleMgr = 4
	GestaltTeleMgrNewTELNewSupport GestaltTeleMgr = 6
	GestaltTeleMgrPowerPCSupport   GestaltTeleMgr = 1
	GestaltTeleMgrPresent          GestaltTeleMgr = 0
	GestaltTeleMgrSilenceDetect    GestaltTeleMgr = 5
	GestaltTeleMgrSoundStreams     GestaltTeleMgr = 2
)

func (GestaltTeleMgr) String added in v0.5.1

func (e GestaltTeleMgr) String() string

type GestaltTermMgr added in v0.5.1

type GestaltTermMgr uint32
const (
	// GestaltTermMgrAttr: The selector you pass to the [Gestalt] function to determine the Terminal Manager attributes.
	GestaltTermMgrAttr        GestaltTermMgr = 't'<<24 | 'e'<<16 | 'r'<<8 | 'm' // 'term'
	GestaltTermMgrErrorString GestaltTermMgr = 2
	GestaltTermMgrPresent     GestaltTermMgr = 0
)

func (GestaltTermMgr) String added in v0.5.1

func (e GestaltTermMgr) String() string

type GestaltTextEditVersion added in v0.5.1

type GestaltTextEditVersion uint32
const (
	// GestaltTE1: The version of TextEdit found in Mac IIci ROM.
	GestaltTE1 GestaltTextEditVersion = 1
	// GestaltTE2: The version of TextEdit shipped with 6.0.4 Script Systems on Mac IIci (Script bug fixes for Mac IIci).
	GestaltTE2 GestaltTextEditVersion = 2
	// GestaltTE3: The version of TextEdit shipped with 6.0.4 Script Systems (all but Mac IIci).
	GestaltTE3 GestaltTextEditVersion = 3
	// GestaltTE4: The version of TextEdit shipped in System 7.0.
	GestaltTE4 GestaltTextEditVersion = 4
	// GestaltTE5: [TextWidthHook] is available in TextEdit.
	GestaltTE5 GestaltTextEditVersion = 5
	// GestaltTextEditVersionValue: The [Gestalt] selector you pass to determine what version of TextEdit is present.
	GestaltTextEditVersionValue GestaltTextEditVersion = 't'<<24 | 'e'<<16 | ' '<<8 | ' ' // 'te  '
)

func (GestaltTextEditVersion) String added in v0.6.17

func (e GestaltTextEditVersion) String() string

type GestaltThreadMgrAttr added in v0.5.1

type GestaltThreadMgrAttr uint32
const (
	// GestaltSpecificMatchSupport: This bit is set if the Thread Manager supports the allocation of threads based on an exact match with the requested stack size.
	GestaltSpecificMatchSupport GestaltThreadMgrAttr = 1
	GestaltThreadMgrAttrValue   GestaltThreadMgrAttr = 't'<<24 | 'h'<<16 | 'd'<<8 | 's' // 'thds'
	// GestaltThreadMgrPresent: This bit is set if the Thread Manager is present.
	GestaltThreadMgrPresent GestaltThreadMgrAttr = 0
	// GestaltThreadsLibraryPresent: This bit is set if the native version of the threads library has been loaded.
	GestaltThreadsLibraryPresent GestaltThreadMgrAttr = 2
)

func (GestaltThreadMgrAttr) String added in v0.6.17

func (e GestaltThreadMgrAttr) String() string

type GestaltTimeMgrVersion added in v0.5.1

type GestaltTimeMgrVersion uint32
const (
	// GestaltExtendedTimeMgr: If this bit is set, the extended Time Manager is present.
	GestaltExtendedTimeMgr GestaltTimeMgrVersion = 3
	// GestaltNativeTimeMgr: If this bit is set, the native Time Manager is present.
	GestaltNativeTimeMgr GestaltTimeMgrVersion = 4
	// GestaltRevisedTimeMgr: If this bit is set, the revised Time Manager is present.
	GestaltRevisedTimeMgr GestaltTimeMgrVersion = 2
	// GestaltStandardTimeMgr: If this bit is set, the original Time Manager is present.
	GestaltStandardTimeMgr GestaltTimeMgrVersion = 1
	// GestaltTimeMgrVersionValue: The Gestalt selector you pass to determine what version of the Time Manager is present.
	GestaltTimeMgrVersionValue GestaltTimeMgrVersion = 't'<<24 | 'm'<<16 | 'g'<<8 | 'r' // 'tmgr'
)

func (GestaltTimeMgrVersion) String added in v0.6.17

func (e GestaltTimeMgrVersion) String() string

type GestaltToolbox added in v0.5.1

type GestaltToolbox uint32
const (
	// GestaltToolboxTable: The selector you pass to the [Gestalt] function to determine the base address of the Toolbox trap dispatch table.
	GestaltToolboxTable GestaltToolbox = 't'<<24 | 'b'<<16 | 't'<<8 | 't' // 'tbtt'
)

func (GestaltToolbox) String added in v0.5.1

func (e GestaltToolbox) String() string

type GestaltTranslation added in v0.5.1

type GestaltTranslation uint32
const (
	// GestaltTranslationAttr: The [Gestalt] selector you pass to determine which Translation Manager attributes are present.
	GestaltTranslationAttr GestaltTranslation = 'x'<<24 | 'l'<<16 | 'a'<<8 | 't' // 'xlat'
	// GestaltTranslationGetPathAPIAvail: If true, the functions [GetFileTranslationPath] and [GetPathTranslationDialog] are available.
	GestaltTranslationGetPathAPIAvail GestaltTranslation = 3
	// GestaltTranslationMgrExists: If `true`, the Translation Manager is present.
	GestaltTranslationMgrExists GestaltTranslation = 0
	// GestaltTranslationMgrHintOrder: In earlier versions of the Translation Manager, the scrap hints in the [DoTranslateScrapProcPtr] function were reversed.
	GestaltTranslationMgrHintOrder GestaltTranslation = 1
	// GestaltTranslationPPCAvail: If `true`, the PowerPC Translation Library is available, and you can call the Translation Manager from native PowerPC code.
	GestaltTranslationPPCAvail GestaltTranslation = 2
)

func (GestaltTranslation) String added in v0.5.1

func (e GestaltTranslation) String() string

type GestaltUDF added in v0.5.1

type GestaltUDF uint32
const (
	GestaltUDFSupport GestaltUDF = 'k'<<24 | 'u'<<16 | 'd'<<8 | 'f' // 'kudf'
)

func (GestaltUDF) String added in v0.5.1

func (e GestaltUDF) String() string

type GestaltUSBAttr added in v0.5.1

type GestaltUSBAttr uint32
const (
	GestaltUSBAttrValue GestaltUSBAttr = 'u'<<24 | 's'<<16 | 'b'<<8 | ' ' // 'usb '
	GestaltUSBHasIsoch  GestaltUSBAttr = 1
	GestaltUSBPresent   GestaltUSBAttr = 0
)

func (GestaltUSBAttr) String added in v0.6.17

func (e GestaltUSBAttr) String() string

type GestaltUSBPrinterSharing added in v0.5.1

type GestaltUSBPrinterSharing int32
const (
	GestaltUSBPrinterSharingAttr        GestaltUSBPrinterSharing = 'z'<<24 | 'a'<<16 | 'k'<<8 | ' ' // 'zak '
	GestaltUSBPrinterSharingAttrBooted  GestaltUSBPrinterSharing = 0x40000000
	GestaltUSBPrinterSharingAttrMask    GestaltUSBPrinterSharing = -65536
	GestaltUSBPrinterSharingAttrRunning GestaltUSBPrinterSharing = -2147483648
	GestaltUSBPrinterSharingVersion     GestaltUSBPrinterSharing = 'z'<<24 | 'a'<<16 | 'k'<<8 | ' ' // 'zak '
	GestaltUSBPrinterSharingVersionMask GestaltUSBPrinterSharing = 0xffff
)

func (GestaltUSBPrinterSharing) String added in v0.5.1

func (e GestaltUSBPrinterSharing) String() string

type GestaltUSBProF16ANSIKbd added in v0.5.1

type GestaltUSBProF16ANSIKbd uint32
const (
	GestaltProF16ANSIKbd         GestaltUSBProF16ANSIKbd = 31
	GestaltProF16ISOKbd          GestaltUSBProF16ANSIKbd = 32
	GestaltProF16JISKbd          GestaltUSBProF16ANSIKbd = 33
	GestaltUSBProF16ANSIKbdValue GestaltUSBProF16ANSIKbd = 34
	GestaltUSBProF16ISOKbd       GestaltUSBProF16ANSIKbd = 35
	GestaltUSBProF16JISKbd       GestaltUSBProF16ANSIKbd = 36
)

func (GestaltUSBProF16ANSIKbd) String added in v0.6.17

func (e GestaltUSBProF16ANSIKbd) String() string

type GestaltUnknownErr

type GestaltUnknownErr int32
const (
	// GestaltDupSelectorErr: Specifies you tried to add an entry that already existed.
	GestaltDupSelectorErr GestaltUnknownErr = -5552
	// GestaltLocationErr: Specifies the gestalt function ptr was not in the system heap.
	GestaltLocationErr GestaltUnknownErr = -5553
	// GestaltUndefSelectorErr: Specifies an undefined selector was passed to the Gestalt Manager.
	GestaltUndefSelectorErr GestaltUnknownErr = -5551
	// GestaltUnknownErrValue: Specifies an unknown error.
	GestaltUnknownErrValue GestaltUnknownErr = -5550
)

func (GestaltUnknownErr) String added in v0.6.17

func (e GestaltUnknownErr) String() string

type GestaltUserVisibleMachine added in v0.5.1

type GestaltUserVisibleMachine uint32
const (
	GestaltUserVisibleMachineName GestaltUserVisibleMachine = 'm'<<24 | 'n'<<16 | 'a'<<8 | 'm' // 'mnam'
)

func (GestaltUserVisibleMachine) String added in v0.5.1

func (e GestaltUserVisibleMachine) String() string

type GestaltVIA1 added in v0.5.1

type GestaltVIA1 uint32
const (
	GestaltVIA1Addr GestaltVIA1 = 'v'<<24 | 'i'<<16 | 'a'<<8 | '1' // 'via1'
)

func (GestaltVIA1) String added in v0.5.1

func (e GestaltVIA1) String() string

type GestaltVIA2 added in v0.5.1

type GestaltVIA2 uint32
const (
	GestaltVIA2Addr GestaltVIA2 = 'v'<<24 | 'i'<<16 | 'a'<<8 | '2' // 'via2'
)

func (GestaltVIA2) String added in v0.5.1

func (e GestaltVIA2) String() string

type GestaltVM added in v0.5.1

type GestaltVM uint32
const (
	// GestaltVMAttr: The [Gestalt] selector you pass to determine the virtual memory attributes that are present.
	GestaltVMAttr                   GestaltVM = 'v'<<24 | 'm'<<16 | ' '<<8 | ' ' // 'vm  '
	GestaltVMFilemappingOn          GestaltVM = 3
	GestaltVMHasLockMemoryForOutput GestaltVM = 1
	GestaltVMHasPagingControl       GestaltVM = 4
	// GestaltVMPresent: If `true`, virtual memory is present.
	GestaltVMPresent GestaltVM = 0
)

func (GestaltVM) String added in v0.5.1

func (e GestaltVM) String() string

type GestaltVMBackingStoreFileRef added in v0.5.1

type GestaltVMBackingStoreFileRef uint32
const (
	GestaltVMBackingStoreFileRefNum GestaltVMBackingStoreFileRef = 'v'<<24 | 'm'<<16 | 'b'<<8 | 's' // 'vmbs'
)

func (GestaltVMBackingStoreFileRef) String added in v0.5.1

type GestaltVMInfo added in v0.5.1

type GestaltVMInfo uint32
const (
	GestaltVMInfoNoneType        GestaltVMInfo = 3
	GestaltVMInfoSimpleType      GestaltVMInfo = 2
	GestaltVMInfoSizeStorageType GestaltVMInfo = 0
	GestaltVMInfoSizeType        GestaltVMInfo = 1
	GestaltVMInfoType            GestaltVMInfo = 'v'<<24 | 'm'<<16 | 'i'<<8 | 'n' // 'vmin'
)

func (GestaltVMInfo) String added in v0.5.1

func (e GestaltVMInfo) String() string

type GestaltVersion added in v0.5.1

type GestaltVersion uint32
const (
	// GestaltValueImplementedVers: The first version of the Gestalt Manager that implements this selector.
	GestaltValueImplementedVers GestaltVersion = 5
	// GestaltVersionValue: The selector you pass to the function Gestalt to determine the version of the Gestalt Manager.
	GestaltVersionValue GestaltVersion = 'v'<<24 | 'e'<<16 | 'r'<<8 | 's' // 'vers'
)

func (GestaltVersion) String added in v0.6.17

func (e GestaltVersion) String() string

type GestaltWindowMgrAttr added in v0.5.1

type GestaltWindowMgrAttr uint32
const (
	GestaltExtendedWindowAttributes     GestaltWindowMgrAttr = 1
	GestaltExtendedWindowAttributesBit  GestaltWindowMgrAttr = 1
	GestaltExtendedWindowAttributesMask GestaltWindowMgrAttr = 2
	GestaltFrontWindowMayBeHiddenBit    GestaltWindowMgrAttr = 8
	GestaltFrontWindowMayBeHiddenMask   GestaltWindowMgrAttr = 256
	GestaltHasFloatingWindows           GestaltWindowMgrAttr = 2
	GestaltHasFloatingWindowsBit        GestaltWindowMgrAttr = 2
	GestaltHasFloatingWindowsMask       GestaltWindowMgrAttr = 4
	GestaltHasWindowBuffering           GestaltWindowMgrAttr = 3
	GestaltHasWindowBufferingBit        GestaltWindowMgrAttr = 3
	GestaltHasWindowBufferingMask       GestaltWindowMgrAttr = 8
	GestaltHasWindowShadowsBit          GestaltWindowMgrAttr = 6
	GestaltHasWindowShadowsMask         GestaltWindowMgrAttr = 64
	GestaltSheetsAreWindowModalBit      GestaltWindowMgrAttr = 7
	GestaltSheetsAreWindowModalMask     GestaltWindowMgrAttr = 128
	GestaltWindowLiveResizeBit          GestaltWindowMgrAttr = 4
	GestaltWindowLiveResizeMask         GestaltWindowMgrAttr = 16
	// GestaltWindowMgrAttrValue: # Discussion
	GestaltWindowMgrAttrValue GestaltWindowMgrAttr = 'w'<<24 | 'i'<<16 | 'n'<<8 | 'd' // 'wind'
	// GestaltWindowMgrPresent: If the bit specified by this mask is set, the Window Manager functionality for Appearance Manager 1.1 is available.
	GestaltWindowMgrPresent         GestaltWindowMgrAttr = 1
	GestaltWindowMgrPresentBit      GestaltWindowMgrAttr = 0
	GestaltWindowMgrPresentMask     GestaltWindowMgrAttr = 1
	GestaltWindowMinimizeToDockBit  GestaltWindowMgrAttr = 5
	GestaltWindowMinimizeToDockMask GestaltWindowMgrAttr = 32
)

func (GestaltWindowMgrAttr) String added in v0.6.17

func (e GestaltWindowMgrAttr) String() string

type GestaltWorldScriptIIVersion added in v0.5.1

type GestaltWorldScriptIIVersion uint32
const (
	GestaltWSIICanPrintWithoutPrGeneralBit GestaltWorldScriptIIVersion = 0
	GestaltWorldScriptIIAttr               GestaltWorldScriptIIVersion = 'w'<<24 | 's'<<16 | 'a'<<8 | 't' // 'wsat'
	GestaltWorldScriptIIVersionValue       GestaltWorldScriptIIVersion = 'd'<<24 | 'o'<<16 | 'u'<<8 | 'b' // 'doub'
)

func (GestaltWorldScriptIIVersion) String added in v0.6.17

type GestaltX86AdditionalFeatures added in v0.5.1

type GestaltX86AdditionalFeatures uint32
const (
	GestaltX86AdditionalFeaturesValue GestaltX86AdditionalFeatures = 'x'<<24 | '8'<<16 | '6'<<8 | 'a' // 'x86a'
	GestaltX86HasCID                  GestaltX86AdditionalFeatures = 10
	GestaltX86HasCX16                 GestaltX86AdditionalFeatures = 13
	GestaltX86HasDSCPL                GestaltX86AdditionalFeatures = 4
	GestaltX86HasEST                  GestaltX86AdditionalFeatures = 7
	GestaltX86HasMONITOR              GestaltX86AdditionalFeatures = 3
	GestaltX86HasSMX                  GestaltX86AdditionalFeatures = 6
	GestaltX86HasSSE3                 GestaltX86AdditionalFeatures = 0
	GestaltX86HasSupplementalSSE3     GestaltX86AdditionalFeatures = 9
	GestaltX86HasTM2                  GestaltX86AdditionalFeatures = 8
	GestaltX86HasVMX                  GestaltX86AdditionalFeatures = 5
	GestaltX86HasxTPR                 GestaltX86AdditionalFeatures = 14
)

func (GestaltX86AdditionalFeatures) String added in v0.6.17

type GestaltX86Features added in v0.5.1

type GestaltX86Features uint32
const (
	GestaltX86FeaturesValue GestaltX86Features = 'x'<<24 | '8'<<16 | '6'<<8 | 'f' // 'x86f'
	GestaltX86HasAPIC       GestaltX86Features = 9
	GestaltX86HasCLFSH      GestaltX86Features = 19
	GestaltX86HasCMOV       GestaltX86Features = 15
	GestaltX86HasCX8        GestaltX86Features = 8
	GestaltX86HasDE         GestaltX86Features = 2
	GestaltX86HasDS         GestaltX86Features = 21
	GestaltX86HasFPU        GestaltX86Features = 0
	GestaltX86HasFXSR       GestaltX86Features = 24
	GestaltX86HasHTT        GestaltX86Features = 28
	GestaltX86HasMCA        GestaltX86Features = 14
	GestaltX86HasMCE        GestaltX86Features = 7
	GestaltX86HasMMX        GestaltX86Features = 23
	GestaltX86HasMSR        GestaltX86Features = 5
	GestaltX86HasMTRR       GestaltX86Features = 12
	GestaltX86HasPAE        GestaltX86Features = 6
	GestaltX86HasPAT        GestaltX86Features = 16
	GestaltX86HasPGE        GestaltX86Features = 13
	GestaltX86HasPSE        GestaltX86Features = 3
	GestaltX86HasPSE36      GestaltX86Features = 17
	GestaltX86HasPSN        GestaltX86Features = 18
	GestaltX86HasSEP        GestaltX86Features = 11
	GestaltX86HasSS         GestaltX86Features = 27
	GestaltX86HasSSE        GestaltX86Features = 25
	GestaltX86HasSSE2       GestaltX86Features = 26
	GestaltX86HasTM         GestaltX86Features = 29
	GestaltX86HasTSC        GestaltX86Features = 4
	GestaltX86HasVME        GestaltX86Features = 1
	GestaltX86ResACPI       GestaltX86Features = 22
	GestaltX86Serviced20    GestaltX86Features = 20
)

func (GestaltX86Features) String added in v0.6.17

func (e GestaltX86Features) String() string

type GetMissingComponentResourceUPP

type GetMissingComponentResourceUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/getmissingcomponentresourceupp

func NewGetMissingComponentResourceUPP deprecated

func NewGetMissingComponentResourceUPP(userRoutine unsafe.Pointer) GetMissingComponentResourceUPP

NewGetMissingComponentResourceUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516619-newgetmissingcomponentresourceup

type GetVolParmsInfoBuffer

type GetVolParmsInfoBuffer [22]uint16

See: https://developer.apple.com/documentation/coreservices/getvolparmsinfobuffer GetVolParmsInfoBuffer is opaque storage with the size and alignment C gives GetVolParmsInfoBuffer: 44 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 44 into.

type Greaterthan added in v0.5.1

type Greaterthan uint32
const (
	EQUALTO     Greaterthan = 2
	GREATERTHAN Greaterthan = 0
	LESSTHAN    Greaterthan = 1
	UNORDERED   Greaterthan = 3
)

func (Greaterthan) String added in v0.5.1

func (e Greaterthan) String() string

type Handle added in v0.6.17

type Handle = KAEHandle

Handle is an alias for referenced enum type KAEHandle.

type Hm

type Hm int32
const (
	HmBalloonAborted       Hm = -853
	HmCloseViewActive      Hm = -863
	HmHelpDisabled         Hm = -850
	HmHelpManagerNotInited Hm = -855
	HmNoBalloonUp          Hm = -862
	HmOperationUnsupported Hm = -861
	HmSameAsLastBalloon    Hm = -854
	HmSkippedBalloon       Hm = -857
	HmUnknownHelpType      Hm = -859
	HmWrongVersion         Hm = -858
)

func (Hm) String

func (e Hm) String() string

type Hr

type Hr int32
const (
	HrHTMLRenderingLibNotInstalledErr Hr = -5360
	HrMiscellaneousExceptionErr       Hr = -5361
	HrURLNotHandledErr                Hr = -5363
	HrUnableToResizeHandleErr         Hr = -5362
)

func (Hr) String

func (e Hr) String() string

type IMemFullErr

type IMemFullErr int32
const (
	IIOAbort         IMemFullErr = -27
	IMemFullErrValue IMemFullErr = -108
)

func (IMemFullErr) String

func (e IMemFullErr) String() string

type IOCompletionUPP

type IOCompletionUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/iocompletionupp

func NewIOCompletionUPP deprecated

func NewIOCompletionUPP(userRoutine unsafe.Pointer) IOCompletionUPP

NewIOCompletionUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1565869-newiocompletionupp

type IconFamilyElement

type IconFamilyElement [5]uint16

See: https://developer.apple.com/documentation/coreservices/iconfamilyelement IconFamilyElement is opaque storage with the size and alignment C gives IconFamilyElement: 10 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 10 into.

type IconFamilyResource

type IconFamilyResource [9]uint16

See: https://developer.apple.com/documentation/coreservices/iconfamilyresource IconFamilyResource is opaque storage with the size and alignment C gives IconFamilyResource: 18 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 18 into.

type IconRef

type IconRef uintptr

See: https://developer.apple.com/documentation/coreservices/iconref

func LSSharedFileListItemCopyIconRef deprecated

func LSSharedFileListItemCopyIconRef(inItem LSSharedFileListItemRef) IconRef

LSSharedFileListItemCopyIconRef.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1442889-lssharedfilelistitemcopyiconref

type InstrumentChunk

type InstrumentChunk [14]uint16

See: https://developer.apple.com/documentation/coreservices/instrumentchunk InstrumentChunk is opaque storage with the size and alignment C gives InstrumentChunk: 28 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 28 into.

type Int added in v0.5.1

type Int uint32
const (
	// Deprecated.
	IntArabic Int = 1
	// Deprecated.
	IntEuropean Int = 4
	// Deprecated.
	IntJapanese Int = 3
	// Deprecated.
	IntOutputMask Int = 0x8000
	// Deprecated.
	IntRoman Int = 2
	// Deprecated.
	IntWestern Int = 0
)

func (Int) String added in v0.5.1

func (e Int) String() string

type Int16 added in v0.6.17

type Int16 = TypeSInt16

Int16 is an alias for referenced enum type TypeSInt16.

type InternalComponentErr

type InternalComponentErr int32
const (
	CantReceiveFromSynthesizerOSErr InternalComponentErr = -2073
	CantSendToSynthesizerOSErr      InternalComponentErr = -2072
	IllegalChannelOSErr             InternalComponentErr = -2076
	IllegalControllerOSErr          InternalComponentErr = -2080
	IllegalInstrumentOSErr          InternalComponentErr = -2079
	IllegalKnobOSErr                InternalComponentErr = -2077
	IllegalKnobValueOSErr           InternalComponentErr = -2078
	IllegalNoteChannelOSErr         InternalComponentErr = -2084
	IllegalPartOSErr                InternalComponentErr = -2075
	IllegalVoiceAllocationOSErr     InternalComponentErr = -2074
	InternalComponentErrValue       InternalComponentErr = -2070
	MidiManagerAbsentOSErr          InternalComponentErr = -2081
	NoExportProcAvailableErr        InternalComponentErr = -2089
	NotImplementedMusicOSErr        InternalComponentErr = -2071
	NoteChannelNotAllocatedOSErr    InternalComponentErr = -2085
	SynthesizerNotRespondingOSErr   InternalComponentErr = -2082
	SynthesizerOSErr                InternalComponentErr = -2083
	TuneParseOSErr                  InternalComponentErr = -2087
	TunePlayerFullOSErr             InternalComponentErr = -2086
	VideoOutputInUseErr             InternalComponentErr = -2090
)

func (InternalComponentErr) String

func (e InternalComponentErr) String() string

type InternalScrapErr

type InternalScrapErr int32
const (
	BadScrapRefErr              InternalScrapErr = -4990
	DuplicateScrapFlavorErr     InternalScrapErr = -4989
	IllegalScrapFlavorFlagsErr  InternalScrapErr = -4997
	IllegalScrapFlavorSizeErr   InternalScrapErr = -4999
	IllegalScrapFlavorTypeErr   InternalScrapErr = -4998
	InternalScrapErrValue       InternalScrapErr = -4988
	NeedClearScrapErr           InternalScrapErr = -100
	NilScrapFlavorDataErr       InternalScrapErr = -4994
	NoScrapPromiseKeeperErr     InternalScrapErr = -4993
	ProcessStateIncorrectErr    InternalScrapErr = -4991
	ScrapFlavorFlagsMismatchErr InternalScrapErr = -4995
	ScrapFlavorNotFoundErr      InternalScrapErr = -102
	ScrapFlavorSizeMismatchErr  InternalScrapErr = -4996
	ScrapPromiseNotKeptErr      InternalScrapErr = -4992
)

func (InternalScrapErr) String

func (e InternalScrapErr) String() string

type Intl0Rec

type Intl0Rec [16]uint16

See: https://developer.apple.com/documentation/coreservices/intl0rec Intl0Rec is opaque storage with the size and alignment C gives Intl0Rec: 32 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 32 into.

type Intl1Rec

type Intl1Rec [166]uint16

See: https://developer.apple.com/documentation/coreservices/intl1rec Intl1Rec is opaque storage with the size and alignment C gives Intl1Rec: 332 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 332 into.

type IntlText

type IntlText struct {
	TheScriptCode int16
	TheLangCode   int16
	TheText       [1]int8
}

IntlText - International text consists of an ordered series of bytes, beginning with a 4-byte language code and a 4-byte script code that together determine the format of the bytes that follow.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/intltext

type InvalidComponentID

type InvalidComponentID int32
const (
	ComponentDontRegister InvalidComponentID = -3003
	// ComponentNotCaptured: This component has not been captured.
	ComponentNotCaptured InvalidComponentID = -3002
	// InvalidComponentIDValue: Invalid component ID.
	InvalidComponentIDValue       InvalidComponentID = -3000
	RetryComponentRegistrationErr InvalidComponentID = -3005
	UnresolvedComponentDLLErr     InvalidComponentID = -3004
	// ValidInstancesExist: This component has open connections.
	ValidInstancesExist InvalidComponentID = -3001
)

func (InvalidComponentID) String

func (e InvalidComponentID) String() string

type InvalidIconRefErr

type InvalidIconRefErr int32
const (
	InvalidIconRefErrValue InvalidIconRefErr = -2580
	NoIconDataAvailableErr InvalidIconRefErr = -2582
	NoSuchIconErr          InvalidIconRefErr = -2581
)

func (InvalidIconRefErr) String

func (e InvalidIconRefErr) String() string

type InvalidTranslationPathErr

type InvalidTranslationPathErr int32
const (
	BadTranslationSpecErr          InvalidTranslationPathErr = -3031
	CouldNotParseSourceFileErr     InvalidTranslationPathErr = -3026
	InvalidTranslationPathErrValue InvalidTranslationPathErr = -3025
	NoPrefAppErr                   InvalidTranslationPathErr = -3032
	NoTranslationPathErr           InvalidTranslationPathErr = -3030
)

func (InvalidTranslationPathErr) String

func (e InvalidTranslationPathErr) String() string

type Itl1ExtRec

type Itl1ExtRec [190]uint16

See: https://developer.apple.com/documentation/coreservices/itl1extrec Itl1ExtRec is opaque storage with the size and alignment C gives Itl1ExtRec: 380 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 380 into.

type Itl4Rec

type Itl4Rec [26]uint16

See: https://developer.apple.com/documentation/coreservices/itl4rec Itl4Rec is opaque storage with the size and alignment C gives Itl4Rec: 52 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 52 into.

type Itl5Record

type Itl5Record [14]uint16

See: https://developer.apple.com/documentation/coreservices/itl5record Itl5Record is opaque storage with the size and alignment C gives Itl5Record: 28 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 28 into.

type ItlbExtRecord

type ItlbExtRecord [25]uint16

See: https://developer.apple.com/documentation/coreservices/itlbextrecord ItlbExtRecord is opaque storage with the size and alignment C gives ItlbExtRecord: 50 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 50 into.

type ItlbRecord

type ItlbRecord [10]uint16

See: https://developer.apple.com/documentation/coreservices/itlbrecord ItlbRecord is opaque storage with the size and alignment C gives ItlbRecord: 20 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 20 into.

type Itlc added in v0.5.1

type Itlc uint32
const (
	ItlcDualCaret    Itlc = 6
	ItlcShowIcon     Itlc = 7
	ItlcSysDirection Itlc = 15
)

func (Itlc) String added in v0.5.1

func (e Itlc) String() string

type ItlcDisableKeyScript added in v0.5.1

type ItlcDisableKeyScript uint32
const (
	ItlcDisableKeyScriptSyncValue ItlcDisableKeyScript = 3
)

func (ItlcDisableKeyScript) String added in v0.5.1

func (e ItlcDisableKeyScript) String() string

type ItlcDisableKeyScriptSync added in v0.5.1

type ItlcDisableKeyScriptSync uint32
const (
	ItlcDisableKeyScriptSyncMask ItlcDisableKeyScriptSync = 8
)

func (ItlcDisableKeyScriptSync) String added in v0.5.1

func (e ItlcDisableKeyScriptSync) String() string

type ItlcRecord

type ItlcRecord [24]uint16

See: https://developer.apple.com/documentation/coreservices/itlcrecord ItlcRecord is opaque storage with the size and alignment C gives ItlcRecord: 48 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 48 into.

type IuSystemCurLang added in v0.5.1

type IuSystemCurLang int32
const (
	IuCurrentCurLang     IuSystemCurLang = -4
	IuCurrentDefLang     IuSystemCurLang = -5
	IuScriptCurLang      IuSystemCurLang = -6
	IuScriptDefLang      IuSystemCurLang = -7
	IuSystemCurLangValue IuSystemCurLang = -2
	IuSystemDefLang      IuSystemCurLang = -3
)

func (IuSystemCurLang) String added in v0.6.17

func (e IuSystemCurLang) String() string

type IuSystemScript added in v0.5.1

type IuSystemScript int32
const (
	// Deprecated.
	IuCurrentScript IuSystemScript = -2
	// Deprecated.
	IuSystemScriptValue IuSystemScript = -1
)

func (IuSystemScript) String added in v0.6.17

func (e IuSystemScript) String() string

type K32BitHeap added in v0.5.1

type K32BitHeap uint32
const (
	// Deprecated.
	K32BitHeapValue K32BitHeap = 1
	// Deprecated.
	KNewDebugHeap K32BitHeap = 4
	// Deprecated.
	KNewStyleHeap K32BitHeap = 2
)

func (K32BitHeap) String added in v0.5.1

func (e K32BitHeap) String() string

type K68kInterruptLevelMask added in v0.5.1

type K68kInterruptLevelMask uint32
const (
	// Deprecated.
	K68kInterruptLevelMaskValue K68kInterruptLevelMask = 0x7
	// Deprecated.
	KInDeferredTaskMask K68kInterruptLevelMask = 0x20
	// Deprecated.
	KInNestedInterruptMask K68kInterruptLevelMask = 0x80
	// Deprecated.
	KInSecondaryIntHandlerMask K68kInterruptLevelMask = 0x40
	// Deprecated.
	KInVBLTaskMask K68kInterruptLevelMask = 0x10
)

func (K68kInterruptLevelMask) String added in v0.5.1

func (e K68kInterruptLevelMask) String() string

type KAEAND

type KAEAND uint32
const (
	// KAEANDValue: Specifies a logical [AND] operation.
	KAEANDValue KAEAND = 'A'<<24 | 'N'<<16 | 'D'<<8 | ' ' // 'AND '
	// KAEAll: Specifies all the elements in the container.
	KAEAll KAEAND = 'a'<<24 | 'l'<<16 | 'l'<<8 | ' ' // 'all '
	// KAEAny: Specifies a single element chosen at random from the container.
	KAEAny KAEAND = 'a'<<24 | 'n'<<16 | 'y'<<8 | ' ' // 'any '
	// KAEFirst: The first element in the specified container.
	KAEFirst KAEAND = 'f'<<24 | 'i'<<16 | 'r'<<8 | 's' // 'firs'
	// KAELast: Specifies the last element in the container.
	KAELast KAEAND = 'l'<<24 | 'a'<<16 | 's'<<8 | 't' // 'last'
	// KAEMiddle: # Discussion
	KAEMiddle KAEAND = 'm'<<24 | 'i'<<16 | 'd'<<8 | 'd' // 'midd'
	// KAENOT: Specifies a logical [NOT] operation.
	KAENOT KAEAND = 'N'<<24 | 'O'<<16 | 'T'<<8 | ' ' // 'NOT '
	// KAENext: Specifies the Apple event object after the container.
	KAENext KAEAND = 'n'<<24 | 'e'<<16 | 'x'<<8 | 't' // 'next'
	// KAEOR: Specifies a logical [OR] operation.
	KAEOR KAEAND = 'O'<<24 | 'R'<<16 | ' '<<8 | ' ' // 'OR  '
	// KAEPrevious: Specifies the Apple event object before the container.
	KAEPrevious KAEAND = 'p'<<24 | 'r'<<16 | 'e'<<8 | 'v' // 'prev'
	// KeyAECompOperator: Specifies a descriptor of `typeType`, whose data consists of one of the constant values described in Key Form and Descriptor Type Object Specifier Constants.
	KeyAECompOperator KAEAND = 'r'<<24 | 'e'<<16 | 'l'<<8 | 'o' // 'relo'
	// KeyAEContainer: Specifies the container for the requested object or objects.
	KeyAEContainer KAEAND = 'f'<<24 | 'r'<<16 | 'o'<<8 | 'm' // 'from'
	// KeyAEDesiredClass: # Discussion
	KeyAEDesiredClass KAEAND = 'w'<<24 | 'a'<<16 | 'n'<<8 | 't' // 'want'
	// KeyAEKeyData: # Discussion
	KeyAEKeyData KAEAND = 's'<<24 | 'e'<<16 | 'l'<<8 | 'd' // 'seld'
	// KeyAEKeyForm: # Discussion
	KeyAEKeyForm KAEAND = 'f'<<24 | 'o'<<16 | 'r'<<8 | 'm' // 'form'
	// KeyAELogicalOperator: Specifies a descriptor of type `typeEnumerated` whose data is one of the logical operators (such as `kAEAND`) defined in Key Form and Descriptor Type Object Specifier Constants.
	KeyAELogicalOperator KAEAND = 'l'<<24 | 'o'<<16 | 'g'<<8 | 'c' // 'logc'
	// KeyAELogicalTerms: Specifies a descriptor of type `typeAEList` containing one or more comparison or logical descriptors.
	KeyAELogicalTerms KAEAND = 't'<<24 | 'e'<<16 | 'r'<<8 | 'm' // 'term'
	// KeyAEObject1: # Discussion
	KeyAEObject1 KAEAND = 'o'<<24 | 'b'<<16 | 'j'<<8 | '1' // 'obj1'
	// KeyAEObject2: # Discussion
	KeyAEObject2 KAEAND = 'o'<<24 | 'b'<<16 | 'j'<<8 | '2' // 'obj2'
)

func (KAEAND) String

func (e KAEAND) String() string

type KAEApplicationActivation added in v0.5.1

type KAEApplicationActivation uint32
const (
	KAEApplicationActivationExpected KAEApplicationActivation = 'a'<<24 | 'a'<<16 | 'p'<<8 | 'd' // 'aapd'
)

func (KAEApplicationActivation) String added in v0.5.1

func (e KAEApplicationActivation) String() string

type KAEAsk

type KAEAsk uint32
const (
	KAEAskValue         KAEAsk = 'a'<<24 | 's'<<16 | 'k'<<8 | ' ' // 'ask '
	KAEBefore           KAEAsk = 'b'<<24 | 'e'<<16 | 'f'<<8 | 'o' // 'befo'
	KAEBeginTransaction KAEAsk = 'b'<<24 | 'e'<<16 | 'g'<<8 | 'i' // 'begi'
	KAEBeginning        KAEAsk = 'b'<<24 | 'g'<<16 | 'n'<<8 | 'g' // 'bgng'
	// KAEBeginsWith: The value of `operand1` begins with the value of `operand2` (for example, the string `"operand"` begins with the string `"opera"`).
	KAEBeginsWith     KAEAsk = 'b'<<24 | 'g'<<16 | 'w'<<8 | 't' // 'bgwt'
	KAEBold           KAEAsk = 'b'<<24 | 'o'<<16 | 'l'<<8 | 'd' // 'bold'
	KAECaseSensEquals KAEAsk = 'c'<<24 | 's'<<16 | 'e'<<8 | 'q' // 'cseq'
	KAECentered       KAEAsk = 'c'<<24 | 'e'<<16 | 'n'<<8 | 't' // 'cent'
	KAEChangeView     KAEAsk = 'v'<<24 | 'i'<<16 | 'e'<<8 | 'w' // 'view'
	KAEClone          KAEAsk = 'c'<<24 | 'l'<<16 | 'o'<<8 | 'n' // 'clon'
	KAEClose          KAEAsk = 'c'<<24 | 'l'<<16 | 'o'<<8 | 's' // 'clos'
	KAECondensed      KAEAsk = 'c'<<24 | 'o'<<16 | 'n'<<8 | 'd' // 'cond'
	// KAEContains: The value of `operand1` contains the value of `operand2 `(for example, the string `"operand"` contains the string `"era"`).
	KAEContains KAEAsk = 'c'<<24 | 'o'<<16 | 'n'<<8 | 't' // 'cont'
	KAECopy     KAEAsk = 'c'<<24 | 'o'<<16 | 'p'<<8 | 'y' // 'copy'
	// KAECoreSuite: An Apple event in the Standard Suite.
	KAECoreSuite       KAEAsk = 'c'<<24 | 'o'<<16 | 'r'<<8 | 'e' // 'core'
	KAECountElements   KAEAsk = 'c'<<24 | 'n'<<16 | 't'<<8 | 'e' // 'cnte'
	KAECreateElement   KAEAsk = 'c'<<24 | 'r'<<16 | 'e'<<8 | 'l' // 'crel'
	KAECreatePublisher KAEAsk = 'c'<<24 | 'p'<<16 | 'u'<<8 | 'b' // 'cpub'
	KAECut             KAEAsk = 'c'<<24 | 'u'<<16 | 't'<<8 | ' ' // 'cut '
	KAEDelete          KAEAsk = 'd'<<24 | 'e'<<16 | 'l'<<8 | 'o' // 'delo'
)

func (KAEAsk) String added in v0.6.17

func (e KAEAsk) String() string

type KAEDataArray

type KAEDataArray uint32
const (
	// KAEDataArrayValue: Array items consist of data of the same size and same type, and are aligned on word boundaries.
	KAEDataArrayValue KAEDataArray = 0
	// KAEDescArray: Array items consist of descriptors of different descriptor types with data of variable size.
	KAEDescArray KAEDataArray = 3
	// KAEKeyDescArray: Array items consist of keyword-specified descriptors with different keywords, different descriptor types, and data of variable size.
	KAEKeyDescArray KAEDataArray = 4
	// KAEPackedArray: Array items consist of data of the same size and same type, and are packed without regard for word boundaries.
	KAEPackedArray KAEDataArray = 1
)

func (KAEDataArray) String added in v0.6.17

func (e KAEDataArray) String() string

type KAEDebug

type KAEDebug int32
const (
	KAEDebugPOSTHeader  KAEDebug = 1
	KAEDebugReplyHeader KAEDebug = 2
	KAEDebugXMLDebugAll KAEDebug = -1
	KAEDebugXMLRequest  KAEDebug = 4
	KAEDebugXMLResponse KAEDebug = 8
)

func (KAEDebug) String

func (e KAEDebug) String() string

type KAEDefaultTimeout

type KAEDefaultTimeout int32
const (
	// KAEDefaultTimeoutValue: The timeout value is determined by the Apple Event Manager.
	KAEDefaultTimeoutValue KAEDefaultTimeout = -1
	// KNoTimeOut: Your application is willing to wait indefinitely.
	KNoTimeOut KAEDefaultTimeout = -2
)

func (KAEDefaultTimeout) String

func (e KAEDefaultTimeout) String() string

type KAEDescListFactor

type KAEDescListFactor uint32
const (
	KAEDescListFactorNone        KAEDescListFactor = 0
	KAEDescListFactorType        KAEDescListFactor = 4
	KAEDescListFactorTypeAndSize KAEDescListFactor = 8
)

func (KAEDescListFactor) String

func (e KAEDescListFactor) String() string

type KAEDoNotPromptForUser added in v0.5.1

type KAEDoNotPromptForUser uint32
const (
	KAEDoNotPromptForUserConsent KAEDoNotPromptForUser = 0x20000
)

func (KAEDoNotPromptForUser) String added in v0.5.1

func (e KAEDoNotPromptForUser) String() string

type KAEDoObjectsExist

type KAEDoObjectsExist uint32
const (
	KAEDoObjectsExistValue KAEDoObjectsExist = 'd'<<24 | 'o'<<16 | 'e'<<8 | 'x' // 'doex'
	KAEDoScript            KAEDoObjectsExist = 'd'<<24 | 'o'<<16 | 's'<<8 | 'c' // 'dosc'
	KAEDrag                KAEDoObjectsExist = 'd'<<24 | 'r'<<16 | 'a'<<8 | 'g' // 'drag'
	KAEDuplicateSelection  KAEDoObjectsExist = 's'<<24 | 'd'<<16 | 'u'<<8 | 'p' // 'sdup'
	KAEEditGraphic         KAEDoObjectsExist = 'e'<<24 | 'd'<<16 | 'i'<<8 | 't' // 'edit'
	KAEEmptyTrash          KAEDoObjectsExist = 'e'<<24 | 'm'<<16 | 'p'<<8 | 't' // 'empt'
	KAEEnd                 KAEDoObjectsExist = 'e'<<24 | 'n'<<16 | 'd'<<8 | ' ' // 'end '
	KAEEndTransaction      KAEDoObjectsExist = 'e'<<24 | 'n'<<16 | 'd'<<8 | 't' // 'endt'
	// KAEEndsWith: The value of `operand1` ends with the value of `operand2` (for example, the string `"operand"` ends with the string `"and"`).
	KAEEndsWith KAEDoObjectsExist = 'e'<<24 | 'n'<<16 | 'd'<<8 | 's' // 'ends'
	// KAEEquals: The value of `operand1` is equal to the value of `operand2`
	KAEEquals   KAEDoObjectsExist = '='<<24 | ' '<<16 | ' '<<8 | ' ' // '=   '
	KAEExpanded KAEDoObjectsExist = 'p'<<24 | 'e'<<16 | 'x'<<8 | 'p' // 'pexp'
	KAEFast     KAEDoObjectsExist = 'f'<<24 | 'a'<<16 | 's'<<8 | 't' // 'fast'
	// KAEFinderEvents: An event that the Finder accepts.
	KAEFinderEvents     KAEDoObjectsExist = 'F'<<24 | 'N'<<16 | 'D'<<8 | 'R' // 'FNDR'
	KAEFormulaProtect   KAEDoObjectsExist = 'f'<<24 | 'p'<<16 | 'r'<<8 | 'o' // 'fpro'
	KAEFullyJustified   KAEDoObjectsExist = 'f'<<24 | 'u'<<16 | 'l'<<8 | 'l' // 'full'
	KAEGetClassInfo     KAEDoObjectsExist = 'q'<<24 | 'o'<<16 | 'b'<<8 | 'j' // 'qobj'
	KAEGetData          KAEDoObjectsExist = 'g'<<24 | 'e'<<16 | 't'<<8 | 'd' // 'getd'
	KAEGetDataSize      KAEDoObjectsExist = 'd'<<24 | 's'<<16 | 'i'<<8 | 'z' // 'dsiz'
	KAEGetEventInfo     KAEDoObjectsExist = 'g'<<24 | 't'<<16 | 'e'<<8 | 'i' // 'gtei'
	KAEGetInfoSelection KAEDoObjectsExist = 's'<<24 | 'i'<<16 | 'n'<<8 | 'f' // 'sinf'
)

func (KAEDoObjectsExist) String added in v0.6.17

func (e KAEDoObjectsExist) String() string

type KAEGetPrivilegeSelection

type KAEGetPrivilegeSelection uint32
const (
	KAEGetPrivilegeSelectionValue KAEGetPrivilegeSelection = 's'<<24 | 'p'<<16 | 'r'<<8 | 'v' // 'sprv'
	KAEGetSuiteInfo               KAEGetPrivilegeSelection = 'g'<<24 | 't'<<16 | 's'<<8 | 'i' // 'gtsi'
	// KAEGreaterThan: The value of `operand1` is greater than the value of `operand2`.
	KAEGreaterThan KAEGetPrivilegeSelection = '>'<<24 | ' '<<16 | ' '<<8 | ' ' // '>   '
	// KAEGreaterThanEquals: The value of `operand1` is greater than or equal to the value of `operand2`.
	KAEGreaterThanEquals KAEGetPrivilegeSelection = '>'<<24 | '='<<16 | ' '<<8 | ' ' // '>=  '
	KAEGrow              KAEGetPrivilegeSelection = 'g'<<24 | 'r'<<16 | 'o'<<8 | 'w' // 'grow'
	KAEHiQuality         KAEGetPrivilegeSelection = 'h'<<24 | 'i'<<16 | 'q'<<8 | 'u' // 'hiqu'
	KAEHidden            KAEGetPrivilegeSelection = 'h'<<24 | 'i'<<16 | 'd'<<8 | 'n' // 'hidn'
	KAEImageGraphic      KAEGetPrivilegeSelection = 'i'<<24 | 'm'<<16 | 'g'<<8 | 'r' // 'imgr'
	KAEIsUniform         KAEGetPrivilegeSelection = 'i'<<24 | 's'<<16 | 'u'<<8 | 'n' // 'isun'
	KAEItalic            KAEGetPrivilegeSelection = 'i'<<24 | 't'<<16 | 'a'<<8 | 'l' // 'ital'
	KAELeftJustified     KAEGetPrivilegeSelection = 'l'<<24 | 'e'<<16 | 'f'<<8 | 't' // 'left'
	KAELessThan          KAEGetPrivilegeSelection = '<'<<24 | ' '<<16 | ' '<<8 | ' ' // '<   '
	// KAELessThanEquals: The value of `operand1` is less than or equal to the value of `operand2`.
	KAELessThanEquals     KAEGetPrivilegeSelection = '<'<<24 | '='<<16 | ' '<<8 | ' ' // '<=  '
	KAELowercase          KAEGetPrivilegeSelection = 'l'<<24 | 'o'<<16 | 'w'<<8 | 'c' // 'lowc'
	KAEMakeObjectsVisible KAEGetPrivilegeSelection = 'm'<<24 | 'v'<<16 | 'i'<<8 | 's' // 'mvis'
	KAEMiscStandards      KAEGetPrivilegeSelection = 'm'<<24 | 'i'<<16 | 's'<<8 | 'c' // 'misc'
	KAEModifiable         KAEGetPrivilegeSelection = 'm'<<24 | 'o'<<16 | 'd'<<8 | 'f' // 'modf'
	KAEMove               KAEGetPrivilegeSelection = 'm'<<24 | 'o'<<16 | 'v'<<8 | 'e' // 'move'
	KAENo                 KAEGetPrivilegeSelection = 'n'<<24 | 'o'<<16 | ' '<<8 | ' ' // 'no  '
	KAENoArrow            KAEGetPrivilegeSelection = 'a'<<24 | 'r'<<16 | 'n'<<8 | 'o' // 'arno'
)

func (KAEGetPrivilegeSelection) String added in v0.6.17

func (e KAEGetPrivilegeSelection) String() string

type KAEHandle added in v0.5.1

type KAEHandle uint32
const (
	// KAEHandleArray: Array items consist of handles to data of the same type and possibly variable size.
	KAEHandleArray KAEHandle = 2
)

func (KAEHandle) String added in v0.5.1

func (e KAEHandle) String() string

type KAEIDoMinimum

type KAEIDoMinimum uint32
const (
	KAEHandleSimpleRanges KAEIDoMinimum = 0x20
	// KAEIDoMarking: The application provides marking callback functions.
	KAEIDoMarking KAEIDoMinimum = 0x4
	// KAEIDoMinimumValue: The application does not handle whose tests or provide marking callbacks.
	KAEIDoMinimumValue KAEIDoMinimum = 0
	// KAEIDoWhose: The application supports whose tests (supports key form `formWhose`).
	KAEIDoWhose             KAEIDoMinimum = 0x1
	KAEPassSubDescs         KAEIDoMinimum = 0x8
	KAEResolveNestedLists   KAEIDoMinimum = 0x10
	KAEUseRelativeIterators KAEIDoMinimum = 0x40
)

func (KAEIDoMinimum) String added in v0.6.17

func (e KAEIDoMinimum) String() string

type KAEIS

type KAEIS uint32
const (
	KAEISAction         KAEIS = 'K'<<24 | 'a'<<16 | 'c'<<8 | 't' // 'Kact'
	KAEISActionPath     KAEIS = 'K'<<24 | 'a'<<16 | 'p'<<8 | 't' // 'Kapt'
	KAEISClientAddress  KAEIS = 'a'<<24 | 'd'<<16 | 'd'<<8 | 'r' // 'addr'
	KAEISClientIP       KAEIS = 'K'<<24 | 'c'<<16 | 'i'<<8 | 'p' // 'Kcip'
	KAEISContentType    KAEIS = 'c'<<24 | 't'<<16 | 'y'<<8 | 'p' // 'ctyp'
	KAEISFromUser       KAEIS = 'f'<<24 | 'r'<<16 | 'm'<<8 | 'u' // 'frmu'
	KAEISFullRequest    KAEIS = 'K'<<24 | 'f'<<16 | 'r'<<8 | 'q' // 'Kfrq'
	KAEISHTTPSearchArgs KAEIS = 'k'<<24 | 'f'<<16 | 'o'<<8 | 'r' // 'kfor'
	KAEISMethod         KAEIS = 'm'<<24 | 'e'<<16 | 't'<<8 | 'h' // 'meth'
	KAEISPassword       KAEIS = 'p'<<24 | 'a'<<16 | 's'<<8 | 's' // 'pass'
	KAEISPostArgs       KAEIS = 'p'<<24 | 'o'<<16 | 's'<<8 | 't' // 'post'
	KAEISReferrer       KAEIS = 'r'<<24 | 'e'<<16 | 'f'<<8 | 'r' // 'refr'
	KAEISScriptName     KAEIS = 's'<<24 | 'c'<<16 | 'n'<<8 | 'm' // 'scnm'
	KAEISServerName     KAEIS = 's'<<24 | 'v'<<16 | 'n'<<8 | 'm' // 'svnm'
	KAEISServerPort     KAEIS = 's'<<24 | 'v'<<16 | 'p'<<8 | 't' // 'svpt'
	KAEISUserAgent      KAEIS = 'A'<<24 | 'g'<<16 | 'n'<<8 | 't' // 'Agnt'
	KAEISUserName       KAEIS = 'u'<<24 | 's'<<16 | 'e'<<8 | 'r' // 'user'
)

func (KAEIS) String

func (e KAEIS) String() string

type KAEISGetURL

type KAEISGetURL uint32
const (
	KAEISGetURLValue KAEISGetURL = 'g'<<24 | 'u'<<16 | 'r'<<8 | 'l' // 'gurl'
	KAEISHandleCGI   KAEISGetURL = 's'<<24 | 'd'<<16 | 'o'<<8 | 'c' // 'sdoc'
)

func (KAEISGetURL) String

func (e KAEISGetURL) String() string

type KAEInfo

type KAEInfo uint32
const (
	KAEInfoValue KAEInfo = 11
	KAEMain      KAEInfo = 0
	KAESharing   KAEInfo = 13
)

func (KAEInfo) String added in v0.6.17

func (e KAEInfo) String() string

type KAEInternetSuite

type KAEInternetSuite uint32
const (
	KAEISWebStarSuite     KAEInternetSuite = 0x575757bd
	KAEInternetSuiteValue KAEInternetSuite = 'g'<<24 | 'u'<<16 | 'r'<<8 | 'l' // 'gurl'
)

func (KAEInternetSuite) String added in v0.6.17

func (e KAEInternetSuite) String() string

type KAELogOut

type KAELogOut uint32
const (
	KAELogOutValue        KAELogOut = 'l'<<24 | 'o'<<16 | 'g'<<8 | 'o' // 'logo'
	KAEReallyLogOut       KAELogOut = 'r'<<24 | 'l'<<16 | 'g'<<8 | 'o' // 'rlgo'
	KAEShowRestartDialog  KAELogOut = 'r'<<24 | 'r'<<16 | 's'<<8 | 't' // 'rrst'
	KAEShowShutdownDialog KAELogOut = 'r'<<24 | 's'<<16 | 'd'<<8 | 'n' // 'rsdn'
)

func (KAELogOut) String added in v0.6.17

func (e KAELogOut) String() string

type KAEMenuClass

type KAEMenuClass uint32
const (
	KAEKeyDown         KAEMenuClass = 'k'<<24 | 'd'<<16 | 'w'<<8 | 'n' // 'kdwn'
	KAEMenuClassValue  KAEMenuClass = 'm'<<24 | 'e'<<16 | 'n'<<8 | 'u' // 'menu'
	KAEMenuSelect      KAEMenuClass = 'm'<<24 | 'h'<<16 | 'i'<<8 | 't' // 'mhit'
	KAEMouseDown       KAEMenuClass = 'm'<<24 | 'd'<<16 | 'w'<<8 | 'n' // 'mdwn'
	KAEMouseDownInBack KAEMenuClass = 'm'<<24 | 'd'<<16 | 'b'<<8 | 'k' // 'mdbk'
	KAEPromise         KAEMenuClass = 'p'<<24 | 'r'<<16 | 'o'<<8 | 'm' // 'prom'
	KAEResized         KAEMenuClass = 'r'<<24 | 's'<<16 | 'i'<<8 | 'z' // 'rsiz'
)

func (KAEMenuClass) String added in v0.6.17

func (e KAEMenuClass) String() string

type KAEMouseClass

type KAEMouseClass uint32
const (
	KAEActivate         KAEMouseClass = 'a'<<24 | 'c'<<16 | 't'<<8 | 'v' // 'actv'
	KAEApplicationClass KAEMouseClass = 'a'<<24 | 'p'<<16 | 'p'<<8 | 'l' // 'appl'
	KAEAutoDown         KAEMouseClass = 'a'<<24 | 'u'<<16 | 't'<<8 | 'o' // 'auto'
	KAECommandClass     KAEMouseClass = 'c'<<24 | 'm'<<16 | 'n'<<8 | 'd' // 'cmnd'
	KAEDeactivate       KAEMouseClass = 'd'<<24 | 'a'<<16 | 'c'<<8 | 't' // 'dact'
	KAEDiskEvent        KAEMouseClass = 'd'<<24 | 'i'<<16 | 's'<<8 | 'k' // 'disk'
	KAEDown             KAEMouseClass = 'd'<<24 | 'o'<<16 | 'w'<<8 | 'n' // 'down'
	KAEHighLevel        KAEMouseClass = 'h'<<24 | 'i'<<16 | 'g'<<8 | 'h' // 'high'
	KAEKeyClass         KAEMouseClass = 'k'<<24 | 'e'<<16 | 'y'<<8 | 'c' // 'keyc'
	KAEMouseClassValue  KAEMouseClass = 'm'<<24 | 'o'<<16 | 'u'<<8 | 's' // 'mous'
	KAEMoved            KAEMouseClass = 'm'<<24 | 'o'<<16 | 'v'<<8 | 'e' // 'move'
	KAENavigationKey    KAEMouseClass = 'n'<<24 | 'a'<<16 | 'v'<<8 | 'e' // 'nave'
	KAENullEvent        KAEMouseClass = 'n'<<24 | 'u'<<16 | 'l'<<8 | 'l' // 'null'
	KAERawKey           KAEMouseClass = 'r'<<24 | 'k'<<16 | 'e'<<8 | 'y' // 'rkey'
	KAEResume           KAEMouseClass = 'r'<<24 | 's'<<16 | 'm'<<8 | 'e' // 'rsme'
	KAEScrapEvent       KAEMouseClass = 's'<<24 | 'c'<<16 | 'r'<<8 | 'p' // 'scrp'
	KAEStoppedMoving    KAEMouseClass = 's'<<24 | 't'<<16 | 'o'<<8 | 'p' // 'stop'
	KAESuspend          KAEMouseClass = 's'<<24 | 'u'<<16 | 's'<<8 | 'p' // 'susp'
	KAEUp               KAEMouseClass = 'u'<<24 | 'p'<<16 | ' '<<8 | ' ' // 'up  '
	KAEUpdate           KAEMouseClass = 'u'<<24 | 'p'<<16 | 'd'<<8 | 't' // 'updt'
	KAEVirtualKey       KAEMouseClass = 'k'<<24 | 'e'<<16 | 'y'<<8 | 'c' // 'keyc'
	KAEWakeUpEvent      KAEMouseClass = 'w'<<24 | 'a'<<16 | 'k'<<8 | 'e' // 'wake'
	KAEWindowClass      KAEMouseClass = 'w'<<24 | 'i'<<16 | 'n'<<8 | 'd' // 'wind'
)

func (KAEMouseClass) String added in v0.6.17

func (e KAEMouseClass) String() string

type KAENoReply

type KAENoReply uint32
const (
	// KAEAlwaysInteract: # Discussion
	KAEAlwaysInteract KAENoReply = 0x30
	// KAECanInteract: # Discussion
	KAECanInteract KAENoReply = 0x20
	// KAECanSwitchLayer: # Discussion
	KAECanSwitchLayer                          KAENoReply = 0x40
	KAEDoNotAutomaticallyAddAnnotationsToEvent KAENoReply = 0x10000
	// KAEDontExecute: # Discussion
	KAEDontExecute KAENoReply = 0x2000
	// KAEDontReconnect: # Discussion
	KAEDontReconnect KAENoReply = 0x80
	// KAEDontRecord: # Discussion
	KAEDontRecord KAENoReply = 0x1000
	// KAENeverInteract: # Discussion
	KAENeverInteract KAENoReply = 0x10
	// KAENoReplyValue: The reply preference—your application does not want a reply Apple event.
	KAENoReplyValue KAENoReply = 0x1
	// KAEProcessNonReplyEvents: Allow processing of non-reply Apple events while awaiting a synchronous Apple event reply (you specified `kAEWaitReply` for the reply preference).
	KAEProcessNonReplyEvents KAENoReply = 0x8000
	// KAEQueueReply: The reply preference—your application wants a reply Apple event.
	KAEQueueReply KAENoReply = 0x2
	// KAEWaitReply: # Discussion
	KAEWaitReply KAENoReply = 0x3
	// KAEWantReceipt: # Discussion
	KAEWantReceipt KAENoReply = 0x200
)

func (KAENoReply) String added in v0.6.17

func (e KAENoReply) String() string

type KAENonmodifiable

type KAENonmodifiable uint32
const (
	KAENonmodifiableValue KAENonmodifiable = 'n'<<24 | 'm'<<16 | 'o'<<8 | 'd' // 'nmod'
	KAEOpen               KAENonmodifiable = 'o'<<24 | 'd'<<16 | 'o'<<8 | 'c' // 'odoc'
	KAEOpenSelection      KAENonmodifiable = 's'<<24 | 'o'<<16 | 'p'<<8 | 'e' // 'sope'
	KAEOutline            KAENonmodifiable = 'o'<<24 | 'u'<<16 | 't'<<8 | 'l' // 'outl'
	KAEPageSetup          KAENonmodifiable = 'p'<<24 | 'g'<<16 | 's'<<8 | 'u' // 'pgsu'
	KAEPaste              KAENonmodifiable = 'p'<<24 | 'a'<<16 | 's'<<8 | 't' // 'past'
	KAEPlain              KAENonmodifiable = 'p'<<24 | 'l'<<16 | 'a'<<8 | 'n' // 'plan'
	KAEPrint              KAENonmodifiable = 'p'<<24 | 'd'<<16 | 'o'<<8 | 'c' // 'pdoc'
	KAEPrintSelection     KAENonmodifiable = 's'<<24 | 'p'<<16 | 'r'<<8 | 'i' // 'spri'
	KAEPrintWindow        KAENonmodifiable = 'p'<<24 | 'w'<<16 | 'i'<<8 | 'n' // 'pwin'
	KAEPutAwaySelection   KAENonmodifiable = 's'<<24 | 'p'<<16 | 'u'<<8 | 't' // 'sput'
	KAEQDAdMax            KAENonmodifiable = 'a'<<24 | 'd'<<16 | 'm'<<8 | 'x' // 'admx'
	KAEQDAdMin            KAENonmodifiable = 'a'<<24 | 'd'<<16 | 'm'<<8 | 'n' // 'admn'
	KAEQDAddOver          KAENonmodifiable = 'a'<<24 | 'd'<<16 | 'd'<<8 | 'o' // 'addo'
	KAEQDAddPin           KAENonmodifiable = 'a'<<24 | 'd'<<16 | 'd'<<8 | 'p' // 'addp'
	KAEQDBic              KAENonmodifiable = 'b'<<24 | 'i'<<16 | 'c'<<8 | ' ' // 'bic '
	KAEQDBlend            KAENonmodifiable = 'b'<<24 | 'l'<<16 | 'n'<<8 | 'd' // 'blnd'
	KAEQDCopy             KAENonmodifiable = 'c'<<24 | 'p'<<16 | 'y'<<8 | ' ' // 'cpy '
	KAEQDNotBic           KAENonmodifiable = 'n'<<24 | 'b'<<16 | 'i'<<8 | 'c' // 'nbic'
	KAEQDNotCopy          KAENonmodifiable = 'n'<<24 | 'c'<<16 | 'p'<<8 | 'y' // 'ncpy'
)

func (KAENonmodifiable) String added in v0.6.17

func (e KAENonmodifiable) String() string

type KAENormalPriority

type KAENormalPriority uint32
const (
	// KAEHighPriority: The Apple Event Manager posts the event at the beginning of the event queue of the server process.
	KAEHighPriority KAENormalPriority = 0x1
	// KAENormalPriorityValue: The Apple Event Manager posts the event at the end of the event queue of the server process and the server processes the Apple event as soon as it has the opportunity.
	KAENormalPriorityValue KAENormalPriority = 0
)

func (KAENormalPriority) String added in v0.6.17

func (e KAENormalPriority) String() string

type KAEOpenApplication

type KAEOpenApplication uint32
const (
	// KAEAnswer: Event that is a reply Apple event.
	KAEAnswer KAEOpenApplication = 'a'<<24 | 'n'<<16 | 's'<<8 | 'r' // 'ansr'
	// KAEApplicationDied: Event sent by the Process Manager to an application that launched another application when the launched application quits or terminates.
	KAEApplicationDied KAEOpenApplication = 'o'<<24 | 'b'<<16 | 'i'<<8 | 't' // 'obit'
	// KAEOpenApplicationValue: Event that launches an application.
	KAEOpenApplicationValue KAEOpenApplication = 'o'<<24 | 'a'<<16 | 'p'<<8 | 'p' // 'oapp'
	// KAEOpenContents: # Discussion
	KAEOpenContents KAEOpenApplication = 'o'<<24 | 'c'<<16 | 'o'<<8 | 'n' // 'ocon'
	// KAEOpenDocuments: # Discussion
	KAEOpenDocuments KAEOpenApplication = 'o'<<24 | 'd'<<16 | 'o'<<8 | 'c' // 'odoc'
	// KAEPrintDocuments: Event that provides an application with a list of documents to print.
	KAEPrintDocuments KAEOpenApplication = 'p'<<24 | 'd'<<16 | 'o'<<8 | 'c' // 'pdoc'
	// KAEQuitApplication: Event that causes the application to quit.
	KAEQuitApplication KAEOpenApplication = 'q'<<24 | 'u'<<16 | 'i'<<8 | 't' // 'quit'
	// KAEShowPreferences: # Discussion
	KAEShowPreferences KAEOpenApplication = 'p'<<24 | 'r'<<16 | 'e'<<8 | 'f' // 'pref'
)

func (KAEOpenApplication) String added in v0.6.17

func (e KAEOpenApplication) String() string

type KAEQDNotOr

type KAEQDNotOr uint32
const (
	KAEQDNotOrValue        KAEQDNotOr = 'n'<<24 | 't'<<16 | 'o'<<8 | 'r' // 'ntor'
	KAEQDNotXor            KAEQDNotOr = 'n'<<24 | 'x'<<16 | 'o'<<8 | 'r' // 'nxor'
	KAEQDOr                KAEQDNotOr = 'o'<<24 | 'r'<<16 | ' '<<8 | ' ' // 'or  '
	KAEQDSubOver           KAEQDNotOr = 's'<<24 | 'u'<<16 | 'b'<<8 | 'o' // 'subo'
	KAEQDSubPin            KAEQDNotOr = 's'<<24 | 'u'<<16 | 'b'<<8 | 'p' // 'subp'
	KAEQDSupplementalSuite KAEQDNotOr = 'q'<<24 | 'd'<<16 | 's'<<8 | 'p' // 'qdsp'
	KAEQDXor               KAEQDNotOr = 'x'<<24 | 'o'<<16 | 'r'<<8 | ' ' // 'xor '
	KAEQuickdrawSuite      KAEQDNotOr = 'q'<<24 | 'd'<<16 | 'r'<<8 | 'w' // 'qdrw'
	KAEQuitAll             KAEQDNotOr = 'q'<<24 | 'u'<<16 | 'i'<<8 | 'a' // 'quia'
	KAERedo                KAEQDNotOr = 'r'<<24 | 'e'<<16 | 'd'<<8 | 'o' // 'redo'
	KAERegular             KAEQDNotOr = 'r'<<24 | 'e'<<16 | 'g'<<8 | 'l' // 'regl'
	// KAEReopenApplication: Event that reopens an application.
	KAEReopenApplication KAEQDNotOr = 'r'<<24 | 'a'<<16 | 'p'<<8 | 'p' // 'rapp'
	KAEReplace           KAEQDNotOr = 'r'<<24 | 'p'<<16 | 'l'<<8 | 'c' // 'rplc'
	KAERequiredSuite     KAEQDNotOr = 'r'<<24 | 'e'<<16 | 'q'<<8 | 'd' // 'reqd'
	KAERestart           KAEQDNotOr = 'r'<<24 | 'e'<<16 | 's'<<8 | 't' // 'rest'
	KAERevealSelection   KAEQDNotOr = 's'<<24 | 'r'<<16 | 'e'<<8 | 'v' // 'srev'
	KAERevert            KAEQDNotOr = 'r'<<24 | 'v'<<16 | 'r'<<8 | 't' // 'rvrt'
	KAERightJustified    KAEQDNotOr = 'r'<<24 | 'g'<<16 | 'h'<<8 | 't' // 'rght'
	KAESave              KAEQDNotOr = 's'<<24 | 'a'<<16 | 'v'<<8 | 'e' // 'save'
	KAESelect            KAEQDNotOr = 's'<<24 | 'l'<<16 | 'c'<<8 | 't' // 'slct'
	KAESetData           KAEQDNotOr = 's'<<24 | 'e'<<16 | 't'<<8 | 'd' // 'setd'
)

func (KAEQDNotOr) String added in v0.6.17

func (e KAEQDNotOr) String() string

type KAEQuit

type KAEQuit uint32
const (
	KAEQuitPreserveState KAEQuit = 's'<<24 | 't'<<16 | 'a'<<8 | 't' // 'stat'
	KAEQuitReason        KAEQuit = 'w'<<24 | 'h'<<16 | 'y'<<8 | '?' // 'why?'
)

func (KAEQuit) String

func (e KAEQuit) String() string

type KAESetPosition

type KAESetPosition uint32
const (
	KAESetPositionValue       KAESetPosition = 'p'<<24 | 'o'<<16 | 's'<<8 | 'n' // 'posn'
	KAEShadow                 KAESetPosition = 's'<<24 | 'h'<<16 | 'a'<<8 | 'd' // 'shad'
	KAEShowClipboard          KAESetPosition = 's'<<24 | 'h'<<16 | 'c'<<8 | 'l' // 'shcl'
	KAEShutDown               KAESetPosition = 's'<<24 | 'h'<<16 | 'u'<<8 | 't' // 'shut'
	KAESleep                  KAESetPosition = 's'<<24 | 'l'<<16 | 'e'<<8 | 'p' // 'slep'
	KAESmallCaps              KAESetPosition = 's'<<24 | 'm'<<16 | 'c'<<8 | 'p' // 'smcp'
	KAESpecialClassProperties KAESetPosition = 'c'<<24 | '@'<<16 | '#'<<8 | '!' // 'c@#!'
	KAEStrikethrough          KAESetPosition = 's'<<24 | 't'<<16 | 'r'<<8 | 'k' // 'strk'
	KAESubscript              KAESetPosition = 's'<<24 | 'b'<<16 | 's'<<8 | 'c' // 'sbsc'
	KAESuperscript            KAESetPosition = 's'<<24 | 'p'<<16 | 's'<<8 | 'c' // 'spsc'
	KAETableSuite             KAESetPosition = 't'<<24 | 'b'<<16 | 'l'<<8 | 's' // 'tbls'
	KAETextSuite              KAESetPosition = 'T'<<24 | 'E'<<16 | 'X'<<8 | 'T' // 'TEXT'
	KAETransactionTerminated  KAESetPosition = 't'<<24 | 't'<<16 | 'r'<<8 | 'm' // 'ttrm'
	KAEUnderline              KAESetPosition = 'u'<<24 | 'n'<<16 | 'd'<<8 | 'l' // 'undl'
	KAEUndo                   KAESetPosition = 'u'<<24 | 'n'<<16 | 'd'<<8 | 'o' // 'undo'
	KAEWholeWordEquals        KAESetPosition = 'w'<<24 | 'w'<<16 | 'e'<<8 | 'q' // 'wweq'
	KAEYes                    KAESetPosition = 'y'<<24 | 'e'<<16 | 's'<<8 | ' ' // 'yes '
	KAEZoomValue              KAESetPosition = 'z'<<24 | 'o'<<16 | 'o'<<8 | 'm' // 'zoom'
)

func (KAESetPosition) String added in v0.6.17

func (e KAESetPosition) String() string

type KAESocks4Protocol

type KAESocks4Protocol uint32
const (
	KAESocks4ProtocolValue KAESocks4Protocol = 4
	KAESocks5Protocol      KAESocks4Protocol = 5
)

func (KAESocks4Protocol) String added in v0.6.17

func (e KAESocks4Protocol) String() string

type KAEStartRecording

type KAEStartRecording uint32
const (
	// KAENotifyRecording: # Discussion
	KAENotifyRecording KAEStartRecording = 'r'<<24 | 'e'<<16 | 'c'<<8 | 'r' // 'recr'
	// KAENotifyStartRecording: An event that notifies an application that recording has been turned on.
	KAENotifyStartRecording KAEStartRecording = 'r'<<24 | 'e'<<16 | 'c'<<8 | '1' // 'rec1'
	// KAENotifyStopRecording: An event that notifies an application that recording has been turned off.
	KAENotifyStopRecording KAEStartRecording = 'r'<<24 | 'e'<<16 | 'c'<<8 | '0' // 'rec0'
	// KAEStartRecordingValue: # Discussion
	KAEStartRecordingValue KAEStartRecording = 'r'<<24 | 'e'<<16 | 'c'<<8 | 'a' // 'reca'
	// KAEStopRecording: # Discussion
	KAEStopRecording KAEStartRecording = 'r'<<24 | 'e'<<16 | 'c'<<8 | 'c' // 'recc'
)

func (KAEStartRecording) String added in v0.6.17

func (e KAEStartRecording) String() string

type KAEU

type KAEU uint32
const (
	KAEUTApostrophe             KAEU = 3
	KAEUTChangesState           KAEU = 12
	KAEUTDirectParamIsReference KAEU = 9
	KAEUTEnumListIsExclusive    KAEU = 10
	KAEUTEnumerated             KAEU = 13
	KAEUTEnumsAreTypes          KAEU = 11
	KAEUTFeminine               KAEU = 2
	KAEUTHasReturningParam      KAEU = 31
	KAEUTMasculine              KAEU = 1
	KAEUTNotDirectParamIsTarget KAEU = 8
	KAEUTOptional               KAEU = 15
	KAEUTParamIsReference       KAEU = 9
	KAEUTParamIsTarget          KAEU = 8
	KAEUTPlural                 KAEU = 0
	KAEUTPropertyIsReference    KAEU = 9
	KAEUTReadWrite              KAEU = 12
	KAEUTReplyIsReference       KAEU = 9
	KAEUTTightBindingFunction   KAEU = 12
	KAEUTlistOfItems            KAEU = 14
)

func (KAEU) String

func (e KAEU) String() string

type KAEUnknownSource

type KAEUnknownSource uint32
const (
	// KAEDirectCall: The source of the Apple event is a direct call that bypassed the PPC Toolbox.
	KAEDirectCall KAEUnknownSource = 1
	// KAELocalProcess: The source application is another process on the same computer as the target application.
	KAELocalProcess KAEUnknownSource = 3
	// KAERemoteProcess: The source application is a process on a remote computer on the network.
	KAERemoteProcess KAEUnknownSource = 4
	// KAESameProcess: The source of the Apple event is the same application that received the event (the target application and the source application are the same).
	KAESameProcess KAEUnknownSource = 2
	// KAEUnknownSourceValue: The source of the Apple event is unknown.
	KAEUnknownSourceValue KAEUnknownSource = 0
)

func (KAEUnknownSource) String added in v0.6.17

func (e KAEUnknownSource) String() string

type KAEUseHTTPProxyAttr

type KAEUseHTTPProxyAttr uint32
const (
	// KAEHTTPProxyHostAttr: A value of type `typeChar` or `typeUTF8Text`.
	KAEHTTPProxyHostAttr KAEUseHTTPProxyAttr = 'x'<<24 | 'h'<<16 | 't'<<8 | 'h' // 'xhth'
	// KAEHTTPProxyPortAttr: A value of type `typeSInt32`.
	KAEHTTPProxyPortAttr KAEUseHTTPProxyAttr = 'x'<<24 | 'h'<<16 | 't'<<8 | 'p' // 'xhtp'
	// KAEUseHTTPProxyAttrValue: A value of type `typeBoolean`.
	KAEUseHTTPProxyAttrValue KAEUseHTTPProxyAttr = 'x'<<24 | 'u'<<16 | 'p'<<8 | 'r' // 'xupr'
)

func (KAEUseHTTPProxyAttr) String added in v0.6.17

func (e KAEUseHTTPProxyAttr) String() string

type KAEUseSocksAttr

type KAEUseSocksAttr uint32
const (
	KAESocksHostAttr     KAEUseSocksAttr = 'x'<<24 | 's'<<16 | 'h'<<8 | 's' // 'xshs'
	KAESocksPasswordAttr KAEUseSocksAttr = 'x'<<24 | 's'<<16 | 'h'<<8 | 'w' // 'xshw'
	KAESocksPortAttr     KAEUseSocksAttr = 'x'<<24 | 's'<<16 | 'h'<<8 | 'p' // 'xshp'
	KAESocksProxyAttr    KAEUseSocksAttr = 'x'<<24 | 's'<<16 | 'o'<<8 | 'k' // 'xsok'
	KAESocksUserAttr     KAEUseSocksAttr = 'x'<<24 | 's'<<16 | 'h'<<8 | 'u' // 'xshu'
	KAEUseSocksAttrValue KAEUseSocksAttr = 'x'<<24 | 's'<<16 | 'c'<<8 | 's' // 'xscs'
)

func (KAEUseSocksAttr) String added in v0.6.17

func (e KAEUseSocksAttr) String() string

type KAEUserTerminology

type KAEUserTerminology uint32
const (
	KAEOSAXSizeResource      KAEUserTerminology = 'o'<<24 | 's'<<16 | 'i'<<8 | 'z' // 'osiz'
	KAEScriptingSizeResource KAEUserTerminology = 's'<<24 | 'c'<<16 | 's'<<8 | 'z' // 'scsz'
	KAETerminologyExtension  KAEUserTerminology = 'a'<<24 | 'e'<<16 | 't'<<8 | 'e' // 'aete'
	KAEUserTerminologyValue  KAEUserTerminology = 'a'<<24 | 'e'<<16 | 'u'<<8 | 't' // 'aeut'
)

func (KAEUserTerminology) String added in v0.6.17

func (e KAEUserTerminology) String() string

type KAEZoom

type KAEZoom uint32
const (
	KAEZoomIn  KAEZoom = 7
	KAEZoomOut KAEZoom = 8
)

func (KAEZoom) String added in v0.5.1

func (e KAEZoom) String() string

type KAFPExtendedFlagsAlternateAddress added in v0.5.1

type KAFPExtendedFlagsAlternateAddress uint32
const (
	KAFPExtendedFlagsAlternateAddressMask KAFPExtendedFlagsAlternateAddress = 1
)

func (KAFPExtendedFlagsAlternateAddress) String added in v0.5.1

type KAFPTagLength added in v0.5.1

type KAFPTagLength uint32
const (
	KAFPTagLengthDDP    KAFPTagLength = 0x6
	KAFPTagLengthIP     KAFPTagLength = 0x6
	KAFPTagLengthIPPort KAFPTagLength = 0x8
)

func (KAFPTagLength) String added in v0.5.1

func (e KAFPTagLength) String() string

type KAFPTagType added in v0.5.1

type KAFPTagType uint32
const (
	KAFPTagTypeDDP    KAFPTagType = 0x3
	KAFPTagTypeDNS    KAFPTagType = 0x4
	KAFPTagTypeIP     KAFPTagType = 0x1
	KAFPTagTypeIPPort KAFPTagType = 0x2
)

func (KAFPTagType) String added in v0.5.1

func (e KAFPTagType) String() string

type KALM

type KALM int32
const (
	KALMDeferSwitchErr         KALM = -30043
	KALMDuplicateModuleErr     KALM = -30045
	KALMGroupNotFoundErr       KALM = -30048
	KALMInstallationErr        KALM = -30044
	KALMInternalErr            KALM = -30049
	KALMModuleCommunicationErr KALM = -30046
	KALMNoSuchModuleErr        KALM = -30047
	KALMRebootFlagsLevelErr    KALM = -30042
)

func (KALM) String

func (e KALM) String() string

type KALMLocationNotFound added in v0.5.1

type KALMLocationNotFound int32
const (
	KALMLocationNotFoundErr KALMLocationNotFound = -30048
)

func (KALMLocationNotFound) String added in v0.5.1

func (e KALMLocationNotFound) String() string

type KARM added in v0.5.1

type KARM uint32
const (
	// Deprecated.
	KARMMountVol KARM = 0x1
	// Deprecated.
	KARMMultVols KARM = 0x8
	// Deprecated.
	KARMNoUI KARM = 0x2
	// Deprecated.
	KARMSearch KARM = 0x100
	// Deprecated.
	KARMSearchMore KARM = 0x200
	// Deprecated.
	KARMSearchRelFirst KARM = 0x400
	// Deprecated.
	KARMTryFileIDFirst KARM = 0x800
)

func (KARM) String added in v0.5.1

func (e KARM) String() string

type KATSUInvalidFontFallbacksErr

type KATSUInvalidFontFallbacksErr int32
const (
	KATSUBadStreamErr                 KATSUInvalidFontFallbacksErr = -8902
	KATSUInvalidCallInsideCallbackErr KATSUInvalidFontFallbacksErr = -8904
	KATSUInvalidFontFallbacksErrValue KATSUInvalidFontFallbacksErr = -8900
	KATSULastErr                      KATSUInvalidFontFallbacksErr = -8959
	KATSUNoFontNameErr                KATSUInvalidFontFallbacksErr = -8905
	KATSUOutputBufferTooSmallErr      KATSUInvalidFontFallbacksErr = -8903
	KATSUUnsupportedStreamFormatErr   KATSUInvalidFontFallbacksErr = -8901
)

func (KATSUInvalidFontFallbacksErr) String added in v0.6.17

type KATSUInvalidTextLayoutErr

type KATSUInvalidTextLayoutErr int32
const (
	KATSUBusyObjectErr             KATSUInvalidTextLayoutErr = -8809
	KATSUCoordinateOverflowErr     KATSUInvalidTextLayoutErr = -8807
	KATSUFontsMatched              KATSUInvalidTextLayoutErr = -8793
	KATSUFontsNotMatched           KATSUInvalidTextLayoutErr = -8794
	KATSUInvalidAttributeSizeErr   KATSUInvalidTextLayoutErr = -8798
	KATSUInvalidAttributeTagErr    KATSUInvalidTextLayoutErr = -8799
	KATSUInvalidAttributeValueErr  KATSUInvalidTextLayoutErr = -8797
	KATSUInvalidCacheErr           KATSUInvalidTextLayoutErr = -8800
	KATSUInvalidFontErr            KATSUInvalidTextLayoutErr = -8796
	KATSUInvalidStyleErr           KATSUInvalidTextLayoutErr = -8791
	KATSUInvalidTextLayoutErrValue KATSUInvalidTextLayoutErr = -8790
	KATSUInvalidTextRangeErr       KATSUInvalidTextLayoutErr = -8792
	KATSULineBreakInWord           KATSUInvalidTextLayoutErr = -8808
	KATSULowLevelErr               KATSUInvalidTextLayoutErr = -8804
	KATSUNoCorrespondingFontErr    KATSUInvalidTextLayoutErr = -8795
	KATSUNoFontCmapAvailableErr    KATSUInvalidTextLayoutErr = -8805
	KATSUNoFontScalerAvailableErr  KATSUInvalidTextLayoutErr = -8806
	KATSUNoStyleRunsAssignedErr    KATSUInvalidTextLayoutErr = -8802
	KATSUNotSetErr                 KATSUInvalidTextLayoutErr = -8801
	KATSUQuickDrawTextErr          KATSUInvalidTextLayoutErr = -8803
)

func (KATSUInvalidTextLayoutErr) String added in v0.6.17

func (e KATSUInvalidTextLayoutErr) String() string

type KAlert

type KAlert uint32
const (
	KAlertCautionIcon KAlert = 'c'<<24 | 'a'<<16 | 'u'<<8 | 't' // 'caut'
	KAlertNoteIcon    KAlert = 'n'<<24 | 'o'<<16 | 't'<<8 | 'e' // 'note'
	KAlertStopIcon    KAlert = 's'<<24 | 't'<<16 | 'o'<<8 | 'p' // 'stop'
)

func (KAlert) String

func (e KAlert) String() string

type KAnyComponent added in v0.5.1

type KAnyComponent uint32
const (
	// Deprecated.
	KAnyComponentFlagsMask KAnyComponent = 0
	// Deprecated.
	KAnyComponentManufacturer KAnyComponent = 0
	// Deprecated.
	KAnyComponentSubType KAnyComponent = 0
	// Deprecated.
	KAnyComponentType KAnyComponent = 0
)

func (KAnyComponent) String added in v0.5.1

func (e KAnyComponent) String() string

type KAnyProtocol added in v0.5.1

type KAnyProtocol uint32
const (
	KAnyAuthType      KAnyProtocol = 0
	KAnyProtocolValue KAnyProtocol = 0
)

func (KAnyProtocol) String added in v0.6.17

func (e KAnyProtocol) String() string

type KAppearanceFolderIcon

type KAppearanceFolderIcon int32
const (
	KAppearanceFolderIconValue         KAppearanceFolderIcon = 'a'<<24 | 'p'<<16 | 'p'<<8 | 'r' // 'appr'
	KAppleExtrasFolderIcon             KAppearanceFolderIcon = 0x616578c4
	KAppleMenuFolderIcon               KAppearanceFolderIcon = 'a'<<24 | 'm'<<16 | 'n'<<8 | 'u' // 'amnu'
	KApplicationSupportFolderIcon      KAppearanceFolderIcon = 'a'<<24 | 's'<<16 | 'u'<<8 | 'p' // 'asup'
	KApplicationsFolderIcon            KAppearanceFolderIcon = 'a'<<24 | 'p'<<16 | 'p'<<8 | 's' // 'apps'
	KAssistantsFolderIcon              KAppearanceFolderIcon = 0x617374c4
	KColorSyncFolderIcon               KAppearanceFolderIcon = 'p'<<24 | 'r'<<16 | 'o'<<8 | 'f' // 'prof'
	KContextualMenuItemsFolderIcon     KAppearanceFolderIcon = 'c'<<24 | 'm'<<16 | 'n'<<8 | 'u' // 'cmnu'
	KControlPanelDisabledFolderIcon    KAppearanceFolderIcon = 'c'<<24 | 't'<<16 | 'r'<<8 | 'D' // 'ctrD'
	KControlPanelFolderIcon            KAppearanceFolderIcon = 'c'<<24 | 't'<<16 | 'r'<<8 | 'l' // 'ctrl'
	KControlStripModulesFolderIcon     KAppearanceFolderIcon = 0x736476c4
	KDocumentsFolderIcon               KAppearanceFolderIcon = 'd'<<24 | 'o'<<16 | 'c'<<8 | 's' // 'docs'
	KExtensionsDisabledFolderIcon      KAppearanceFolderIcon = 'e'<<24 | 'x'<<16 | 't'<<8 | 'D' // 'extD'
	KExtensionsFolderIcon              KAppearanceFolderIcon = 'e'<<24 | 'x'<<16 | 't'<<8 | 'n' // 'extn'
	KFavoritesFolderIcon               KAppearanceFolderIcon = 'f'<<24 | 'a'<<16 | 'v'<<8 | 's' // 'favs'
	KFontsFolderIcon                   KAppearanceFolderIcon = 'f'<<24 | 'o'<<16 | 'n'<<8 | 't' // 'font'
	KHelpFolderIcon                    KAppearanceFolderIcon = -999789456
	KInternetFolderIcon                KAppearanceFolderIcon = 0x696e74c4
	KInternetPlugInFolderIcon          KAppearanceFolderIcon = -999398028
	KInternetSearchSitesFolderIcon     KAppearanceFolderIcon = 'i'<<24 | 's'<<16 | 's'<<8 | 'f' // 'issf'
	KLocalesFolderIcon                 KAppearanceFolderIcon = -999526557
	KMacOSReadMeFolderIcon             KAppearanceFolderIcon = 0x6d6f72c4
	KPreferencesFolderIcon             KAppearanceFolderIcon = 0x707266c4
	KPrintMonitorFolderIcon            KAppearanceFolderIcon = 'p'<<24 | 'r'<<16 | 'n'<<8 | 't' // 'prnt'
	KPrinterDescriptionFolderIcon      KAppearanceFolderIcon = 'p'<<24 | 'p'<<16 | 'd'<<8 | 'f' // 'ppdf'
	KPrinterDriverFolderIcon           KAppearanceFolderIcon = -999263644
	KPublicFolderIcon                  KAppearanceFolderIcon = 'p'<<24 | 'u'<<16 | 'b'<<8 | 'f' // 'pubf'
	KRecentApplicationsFolderIcon      KAppearanceFolderIcon = 'r'<<24 | 'a'<<16 | 'p'<<8 | 'p' // 'rapp'
	KRecentDocumentsFolderIcon         KAppearanceFolderIcon = 'r'<<24 | 'd'<<16 | 'o'<<8 | 'c' // 'rdoc'
	KRecentServersFolderIcon           KAppearanceFolderIcon = 'r'<<24 | 's'<<16 | 'r'<<8 | 'v' // 'rsrv'
	KScriptingAdditionsFolderIcon      KAppearanceFolderIcon = -999070862
	KScriptsFolderIcon                 KAppearanceFolderIcon = 0x736372c4
	KSharedLibrariesFolderIcon         KAppearanceFolderIcon = -999528094
	KShutdownItemsDisabledFolderIcon   KAppearanceFolderIcon = 's'<<24 | 'h'<<16 | 'd'<<8 | 'D' // 'shdD'
	KShutdownItemsFolderIcon           KAppearanceFolderIcon = 's'<<24 | 'h'<<16 | 'd'<<8 | 'f' // 'shdf'
	KSpeakableItemsFolder              KAppearanceFolderIcon = 's'<<24 | 'p'<<16 | 'k'<<8 | 'i' // 'spki'
	KStartupItemsDisabledFolderIcon    KAppearanceFolderIcon = 's'<<24 | 't'<<16 | 'r'<<8 | 'D' // 'strD'
	KStartupItemsFolderIcon            KAppearanceFolderIcon = 's'<<24 | 't'<<16 | 'r'<<8 | 't' // 'strt'
	KSystemExtensionDisabledFolderIcon KAppearanceFolderIcon = 'm'<<24 | 'a'<<16 | 'c'<<8 | 'D' // 'macD'
	KSystemFolderIcon                  KAppearanceFolderIcon = 'm'<<24 | 'a'<<16 | 'c'<<8 | 's' // 'macs'
	KTextEncodingsFolderIcon           KAppearanceFolderIcon = -999004808
	KUsersFolderIcon                   KAppearanceFolderIcon = 0x757372c4
	KUtilitiesFolderIcon               KAppearanceFolderIcon = 0x757469c4
	KVoicesFolderIcon                  KAppearanceFolderIcon = 'f'<<24 | 'v'<<16 | 'o'<<8 | 'c' // 'fvoc'
)

func (KAppearanceFolderIcon) String

func (e KAppearanceFolderIcon) String() string

type KAppleLogoIcon

type KAppleLogoIcon uint32
const (
	KAppleLogoIconValue             KAppleLogoIcon = 'c'<<24 | 'a'<<16 | 'p'<<8 | 'l' // 'capl'
	KAppleMenuIcon                  KAppleLogoIcon = 's'<<24 | 'a'<<16 | 'p'<<8 | 'l' // 'sapl'
	KBackwardArrowIcon              KAppleLogoIcon = 'b'<<24 | 'a'<<16 | 'r'<<8 | 'o' // 'baro'
	KBurningIcon                    KAppleLogoIcon = 'b'<<24 | 'u'<<16 | 'r'<<8 | 'n' // 'burn'
	KConnectToIcon                  KAppleLogoIcon = 'c'<<24 | 'n'<<16 | 'c'<<8 | 't' // 'cnct'
	KDeleteAliasIcon                KAppleLogoIcon = 'd'<<24 | 'a'<<16 | 'l'<<8 | 'i' // 'dali'
	KEjectMediaIcon                 KAppleLogoIcon = 'e'<<24 | 'j'<<16 | 'e'<<8 | 'c' // 'ejec'
	KFavoriteItemsIcon              KAppleLogoIcon = 'f'<<24 | 'a'<<16 | 'v'<<8 | 'r' // 'favr'
	KForwardArrowIcon               KAppleLogoIcon = 'f'<<24 | 'a'<<16 | 'r'<<8 | 'o' // 'faro'
	KGenericWindowIcon              KAppleLogoIcon = 'g'<<24 | 'w'<<16 | 'i'<<8 | 'n' // 'gwin'
	KGridIcon                       KAppleLogoIcon = 'g'<<24 | 'r'<<16 | 'i'<<8 | 'd' // 'grid'
	KHelpIcon                       KAppleLogoIcon = 'h'<<24 | 'e'<<16 | 'l'<<8 | 'p' // 'help'
	KKeepArrangedIcon               KAppleLogoIcon = 'a'<<24 | 'r'<<16 | 'n'<<8 | 'g' // 'arng'
	KLockedIcon                     KAppleLogoIcon = 'l'<<24 | 'o'<<16 | 'c'<<8 | 'k' // 'lock'
	KNoFilesIcon                    KAppleLogoIcon = 'n'<<24 | 'f'<<16 | 'i'<<8 | 'l' // 'nfil'
	KNoFolderIcon                   KAppleLogoIcon = 'n'<<24 | 'f'<<16 | 'l'<<8 | 'd' // 'nfld'
	KNoWriteIcon                    KAppleLogoIcon = 'n'<<24 | 'w'<<16 | 'r'<<8 | 't' // 'nwrt'
	KProtectedApplicationFolderIcon KAppleLogoIcon = 'p'<<24 | 'a'<<16 | 'p'<<8 | 'p' // 'papp'
	KProtectedSystemFolderIcon      KAppleLogoIcon = 'p'<<24 | 's'<<16 | 'y'<<8 | 's' // 'psys'
	KQuestionMarkIcon               KAppleLogoIcon = 'q'<<24 | 'u'<<16 | 'e'<<8 | 's' // 'ques'
	KRecentItemsIcon                KAppleLogoIcon = 'r'<<24 | 'c'<<16 | 'n'<<8 | 't' // 'rcnt'
	KRightContainerArrowIcon        KAppleLogoIcon = 'r'<<24 | 'c'<<16 | 'a'<<8 | 'r' // 'rcar'
	KShortcutIcon                   KAppleLogoIcon = 's'<<24 | 'h'<<16 | 'r'<<8 | 't' // 'shrt'
	KSortAscendingIcon              KAppleLogoIcon = 'a'<<24 | 's'<<16 | 'n'<<8 | 'd' // 'asnd'
	KSortDescendingIcon             KAppleLogoIcon = 'd'<<24 | 's'<<16 | 'n'<<8 | 'd' // 'dsnd'
	KUnlockedIcon                   KAppleLogoIcon = 'u'<<24 | 'l'<<16 | 'c'<<8 | 'k' // 'ulck'
)

func (KAppleLogoIcon) String

func (e KAppleLogoIcon) String() string

type KAppleManufacturer added in v0.5.1

type KAppleManufacturer uint32
const (
	// Deprecated.
	KAppleManufacturerValue KAppleManufacturer = 'a'<<24 | 'p'<<16 | 'p'<<8 | 'l' // 'appl'
	// Deprecated.
	KComponentAliasResourceType KAppleManufacturer = 't'<<24 | 'h'<<16 | 'g'<<8 | 'a' // 'thga'
	// Deprecated.
	KComponentResourceType KAppleManufacturer = 't'<<24 | 'h'<<16 | 'n'<<8 | 'g' // 'thng'
)

func (KAppleManufacturer) String added in v0.5.1

func (e KAppleManufacturer) String() string

type KAppleScriptBadgeIcon

type KAppleScriptBadgeIcon uint32
const (
	KAlertCautionBadgeIcon     KAppleScriptBadgeIcon = 'c'<<24 | 'b'<<16 | 'd'<<8 | 'g' // 'cbdg'
	KAliasBadgeIcon            KAppleScriptBadgeIcon = 'a'<<24 | 'b'<<16 | 'd'<<8 | 'g' // 'abdg'
	KAppleScriptBadgeIconValue KAppleScriptBadgeIcon = 's'<<24 | 'c'<<16 | 'r'<<8 | 'p' // 'scrp'
	KLockedBadgeIcon           KAppleScriptBadgeIcon = 'l'<<24 | 'b'<<16 | 'd'<<8 | 'g' // 'lbdg'
	KMountedBadgeIcon          KAppleScriptBadgeIcon = 'm'<<24 | 'b'<<16 | 'd'<<8 | 'g' // 'mbdg'
	KSharedBadgeIcon           KAppleScriptBadgeIcon = 's'<<24 | 'b'<<16 | 'd'<<8 | 'g' // 'sbdg'
)

func (KAppleScriptBadgeIcon) String

func (e KAppleScriptBadgeIcon) String() string

type KAppleTalkIcon

type KAppleTalkIcon uint32
const (
	KAFPServerIcon      KAppleTalkIcon = 'a'<<24 | 'f'<<16 | 'p'<<8 | 's' // 'afps'
	KAppleTalkIconValue KAppleTalkIcon = 'a'<<24 | 't'<<16 | 'l'<<8 | 'k' // 'atlk'
	KAppleTalkZoneIcon  KAppleTalkIcon = 'a'<<24 | 't'<<16 | 'z'<<8 | 'n' // 'atzn'
	KFTPServerIcon      KAppleTalkIcon = 'f'<<24 | 't'<<16 | 'p'<<8 | 's' // 'ftps'
	KGenericNetworkIcon KAppleTalkIcon = 'g'<<24 | 'n'<<16 | 'e'<<8 | 't' // 'gnet'
	KHTTPServerIcon     KAppleTalkIcon = 'h'<<24 | 't'<<16 | 'p'<<8 | 's' // 'htps'
	KIPFileServerIcon   KAppleTalkIcon = 'i'<<24 | 's'<<16 | 'r'<<8 | 'v' // 'isrv'
)

func (KAppleTalkIcon) String

func (e KAppleTalkIcon) String() string

type KAsync added in v0.5.1

type KAsync uint32
const (
	KAsyncEjectComplete     KAsync = 6
	KAsyncEjectInProgress   KAsync = 5
	KAsyncMountComplete     KAsync = 2
	KAsyncMountInProgress   KAsync = 1
	KAsyncUnmountComplete   KAsync = 4
	KAsyncUnmountInProgress KAsync = 3
)

func (KAsync) String added in v0.5.1

func (e KAsync) String() string

type KAutoGenerateReturnID

type KAutoGenerateReturnID int32
const (
	// KAnyTransactionID: # Discussion
	KAnyTransactionID KAutoGenerateReturnID = 0
	// KAutoGenerateReturnIDValue: If you pass this value for the `returnID` parameter of the AECreateAppleEvent function, the Apple Event Manager assigns to the created Apple event a return ID that is unique to the current session.
	KAutoGenerateReturnIDValue KAutoGenerateReturnID = -1
)

func (KAutoGenerateReturnID) String

func (e KAutoGenerateReturnID) String() string

type KBadAdapterErr

type KBadAdapterErr int32
const (
	K16BitCardErr            KBadAdapterErr = -9084
	KAlreadySavedStateErr    KBadAdapterErr = -9105
	KAttemptDupCardEntryErr  KBadAdapterErr = -9106
	KBadAdapterErrValue      KBadAdapterErr = -9050
	KBadArgLengthErr         KBadAdapterErr = -9063
	KBadArgsErr              KBadAdapterErr = -9064
	KBadAttributeErr         KBadAdapterErr = -9051
	KBadBaseErr              KBadAdapterErr = -9052
	KBadCISErr               KBadAdapterErr = -9066
	KBadCustomIFIDErr        KBadAdapterErr = -9093
	KBadDeviceErr            KBadAdapterErr = -9083
	KBadEDCErr               KBadAdapterErr = -9053
	KBadHandleErr            KBadAdapterErr = -9065
	KBadIRQErr               KBadAdapterErr = -9054
	KBadLinkErr              KBadAdapterErr = -9082
	KBadOffsetErr            KBadAdapterErr = -9055
	KBadPageErr              KBadAdapterErr = -9056
	KBadSizeErr              KBadAdapterErr = -9057
	KBadSocketErr            KBadAdapterErr = -9058
	KBadSpeedErr             KBadAdapterErr = -9067
	KBadTupleDataErr         KBadAdapterErr = -9092
	KBadTypeErr              KBadAdapterErr = -9059
	KBadVccErr               KBadAdapterErr = -9060
	KBadVppErr               KBadAdapterErr = -9061
	KBadWindowErr            KBadAdapterErr = -9062
	KBusyErr                 KBadAdapterErr = -9074
	KCantConfigureCardErr    KBadAdapterErr = -9087
	KCardBusCardErr          KBadAdapterErr = -9085
	KCardPowerOffErr         KBadAdapterErr = -9107
	KClientRequestDenied     KBadAdapterErr = -9102
	KConfigurationLockedErr  KBadAdapterErr = -9076
	KGeneralFailureErr       KBadAdapterErr = -9070
	KInUseErr                KBadAdapterErr = -9077
	KInvalidCSClientErr      KBadAdapterErr = -9091
	KInvalidDeviceNumber     KBadAdapterErr = -9089
	KInvalidRegEntryErr      KBadAdapterErr = -9081
	KNoCardBusCISErr         KBadAdapterErr = -9109
	KNoCardEnablersFoundErr  KBadAdapterErr = -9099
	KNoCardErr               KBadAdapterErr = -9071
	KNoCardSevicesSocketsErr KBadAdapterErr = -9080
	KNoClientTableErr        KBadAdapterErr = -9097
	KNoCompatibleNameErr     KBadAdapterErr = -9101
	KNoEnablerForCardErr     KBadAdapterErr = -9100
	KNoIOWindowRequestedErr  KBadAdapterErr = -9094
	KNoMoreInterruptSlotsErr KBadAdapterErr = -9096
	KNoMoreItemsErr          KBadAdapterErr = -9078
	KNoMoreTimerClientsErr   KBadAdapterErr = -9095
	KNotReadyErr             KBadAdapterErr = -9103
	KNotZVCapableErr         KBadAdapterErr = -9108
	KOutOfResourceErr        KBadAdapterErr = -9079
	KPassCallToChainErr      KBadAdapterErr = -9086
	KPostCardEventErr        KBadAdapterErr = -9088
	KReadFailureErr          KBadAdapterErr = -9068
	KTooManyIOWindowsErr     KBadAdapterErr = -9104
	KUnsupportedCardErr      KBadAdapterErr = -9098
	KUnsupportedFunctionErr  KBadAdapterErr = -9072
	KUnsupportedModeErr      KBadAdapterErr = -9073
	KUnsupportedVsErr        KBadAdapterErr = -9090
	KWriteFailureErr         KBadAdapterErr = -9069
	KWriteProtectedErr       KBadAdapterErr = -9075
)

func (KBadAdapterErr) String

func (e KBadAdapterErr) String() string

type KBig5 added in v0.5.1

type KBig5 uint32
const (
	// KBig5_BasicVariant: The basic encoding variant.
	KBig5_BasicVariant KBig5 = 0
	KBig5_DOSVariant   KBig5 = 3
	// KBig5_ETenVariant: Adds kana, Cyrillic, radicals, and so forth with high-bytes C6-C8, F9.
	KBig5_ETenVariant KBig5 = 2
	// KBig5_StandardVariant: The standard variant; 0xC6A1-0xC7FC: kana, Cyrillic, enclosed numerics.
	KBig5_StandardVariant KBig5 = 1
)

func (KBig5) String added in v0.5.1

func (e KBig5) String() string

type KBlessedBusError added in v0.5.1

type KBlessedBusError uint32
const (
	// Deprecated.
	KBlessedBusErrorBait KBlessedBusError = 0x68f168f1
)

func (KBlessedBusError) String added in v0.5.1

func (e KBlessedBusError) String() string

type KBlessedFolder added in v0.5.1

type KBlessedFolder uint32
const (
	KBlessedFolderValue KBlessedFolder = 'b'<<24 | 'l'<<16 | 's'<<8 | 'f' // 'blsf'
	KRootFolder         KBlessedFolder = 'r'<<24 | 'o'<<16 | 't'<<8 | 'f' // 'rotf'
)

func (KBlessedFolder) String added in v0.5.1

func (e KBlessedFolder) String() string

type KBy added in v0.5.1

type KBy uint32
const (
	KByCommentView KBy = 6
	KByDateView    KBy = 3
	KByIconView    KBy = 1
	KByKindView    KBy = 5
	KByLabelView   KBy = 7
	KByNameView    KBy = 2
	KBySizeView    KBy = 4
	KBySmallIcon   KBy = 0
	KByVersionView KBy = 8
)

func (KBy) String added in v0.5.1

func (e KBy) String() string

type KCCallbackInfo

type KCCallbackInfo [22]uint16

See: https://developer.apple.com/documentation/coreservices/kccallbackinfo KCCallbackInfo is opaque storage with the size and alignment C gives KCCallbackInfo: 44 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 44 into.

type KCCallbackUPP

type KCCallbackUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/kccallbackupp

func NewKCCallbackUPP deprecated

func NewKCCallbackUPP(userRoutine unsafe.Pointer) KCCallbackUPP

NewKCCallbackUPP.

Deprecated: Deprecated since macOS 10.6.

See: https://developer.apple.com/documentation/coreservices/1562977-newkccallbackupp

type KCSAccept added in v0.5.1

type KCSAccept uint32
const (
	// Deprecated.
	KCSAcceptAllComponentsMode KCSAccept = 0
	// Deprecated.
	KCSAcceptThreadSafeComponentsOnlyMode KCSAccept = 1
)

func (KCSAccept) String added in v0.5.1

func (e KCSAccept) String() string

type KCSDiskSpaceRecoveryOptionNoU added in v0.5.1

type KCSDiskSpaceRecoveryOptionNoU uint32
const (
	KCSDiskSpaceRecoveryOptionNoUI KCSDiskSpaceRecoveryOptionNoU = 1
)

func (KCSDiskSpaceRecoveryOptionNoU) String added in v0.5.1

type KCSIdentity

type KCSIdentity int32
const (
	KCSIdentityAuthorityNotAccessibleErr KCSIdentity = -2
	KCSIdentityDeletedErr                KCSIdentity = -4
	KCSIdentityDuplicateFullNameErr      KCSIdentity = -6
	KCSIdentityDuplicatePosixNameErr     KCSIdentity = -8
	KCSIdentityInvalidFullNameErr        KCSIdentity = -5
	KCSIdentityInvalidPosixNameErr       KCSIdentity = -7
	KCSIdentityPermissionErr             KCSIdentity = -3
	KCSIdentityUnknownAuthorityErr       KCSIdentity = -1
)

func (KCSIdentity) String

func (e KCSIdentity) String() string

type KCSIdentityClass

type KCSIdentityClass uint32
const (
	KCSIdentityClassGroup KCSIdentityClass = 2
	KCSIdentityClassUser  KCSIdentityClass = 1
)

func (KCSIdentityClass) String

func (e KCSIdentityClass) String() string

type KCSIdentityCommit added in v0.5.1

type KCSIdentityCommit uint32
const (
	KCSIdentityCommitCompleted KCSIdentityCommit = 1
)

func (KCSIdentityCommit) String added in v0.5.1

func (e KCSIdentityCommit) String() string

type KCSIdentityFlag

type KCSIdentityFlag uint32
const (
	KCSIdentityFlagHidden KCSIdentityFlag = 1
	KCSIdentityFlagNone   KCSIdentityFlag = 0
)

func (KCSIdentityFlag) String

func (e KCSIdentityFlag) String() string

type KCSIdentityQuery

type KCSIdentityQuery uint32
const (
	KCSIdentityQueryGenerateUpdateEvents    KCSIdentityQuery = 0x1
	KCSIdentityQueryIncludeHiddenIdentities KCSIdentityQuery = 0x2
)

func (KCSIdentityQuery) String

func (e KCSIdentityQuery) String() string

type KCSIdentityQueryEvent

type KCSIdentityQueryEvent uint32
const (
	KCSIdentityQueryEventErrorOccurred       KCSIdentityQueryEvent = 5
	KCSIdentityQueryEventResultsAdded        KCSIdentityQueryEvent = 2
	KCSIdentityQueryEventResultsChanged      KCSIdentityQueryEvent = 3
	KCSIdentityQueryEventResultsRemoved      KCSIdentityQueryEvent = 4
	KCSIdentityQueryEventSearchPhaseFinished KCSIdentityQueryEvent = 1
)

func (KCSIdentityQueryEvent) String

func (e KCSIdentityQueryEvent) String() string

type KCSIdentityQueryString

type KCSIdentityQueryString uint32
const (
	KCSIdentityQueryStringBeginsWith KCSIdentityQueryString = 2
	KCSIdentityQueryStringEquals     KCSIdentityQueryString = 1
)

func (KCSIdentityQueryString) String

func (e KCSIdentityQueryString) String() string

type KCallingConventionWidth added in v0.5.1

type KCallingConventionWidth int32
const (
	// Deprecated.
	KCallingConventionMask KCallingConventionWidth = 0xf
	// Deprecated.
	KCallingConventionPhase KCallingConventionWidth = 0
	// Deprecated.
	KCallingConventionWidthValue KCallingConventionWidth = 4
	// Deprecated.
	KDispatchedParameterPhase KCallingConventionWidth = 8
	// Deprecated.
	KDispatchedSelectorSizePhase KCallingConventionWidth = 6
	// Deprecated.
	KDispatchedSelectorSizeWidth KCallingConventionWidth = 2
	// Deprecated.
	KRegisterParameterMask KCallingConventionWidth = 0x7ffff800
	// Deprecated.
	KRegisterParameterPhase KCallingConventionWidth = 11
	// Deprecated.
	KRegisterParameterSizePhase KCallingConventionWidth = 0
	// Deprecated.
	KRegisterParameterSizeWidth KCallingConventionWidth = 2
	// Deprecated.
	KRegisterParameterWhichPhase KCallingConventionWidth = 2
	// Deprecated.
	KRegisterParameterWhichWidth KCallingConventionWidth = 3
	// Deprecated.
	KRegisterParameterWidth KCallingConventionWidth = 5
	// Deprecated.
	KRegisterResultLocationPhase KCallingConventionWidth = 6
	// Deprecated.
	KRegisterResultLocationWidth KCallingConventionWidth = 5
	// Deprecated.
	KResultSizeMask KCallingConventionWidth = 0x30
	// Deprecated.
	KResultSizePhase KCallingConventionWidth = 4
	// Deprecated.
	KResultSizeWidth KCallingConventionWidth = 2
	// Deprecated.
	KSpecialCaseSelectorMask KCallingConventionWidth = 0x3f0
	// Deprecated.
	KSpecialCaseSelectorPhase KCallingConventionWidth = 4
	// Deprecated.
	KSpecialCaseSelectorWidth KCallingConventionWidth = 6
	// Deprecated.
	KStackParameterMask KCallingConventionWidth = -64
	// Deprecated.
	KStackParameterPhase KCallingConventionWidth = 6
	// Deprecated.
	KStackParameterWidth KCallingConventionWidth = 2
)

func (KCallingConventionWidth) String added in v0.5.1

func (e KCallingConventionWidth) String() string

type KCertSearch added in v0.5.1

type KCertSearch uint32
const (
	KCertSearchAny               KCertSearch = 0
	KCertSearchDecryptAllowed    KCertSearch = 64
	KCertSearchDecryptDisallowed KCertSearch = 128
	KCertSearchDecryptIgnored    KCertSearch = 0
	KCertSearchDecryptMask       KCertSearch = 192
	KCertSearchEncryptAllowed    KCertSearch = 16
	KCertSearchEncryptDisallowed KCertSearch = 32
	KCertSearchEncryptIgnored    KCertSearch = 0
	KCertSearchEncryptMask       KCertSearch = 48
	KCertSearchPrivKeyRequired   KCertSearch = 4096
	KCertSearchShift             KCertSearch = 0
	KCertSearchSigningAllowed    KCertSearch = 1
	KCertSearchSigningDisallowed KCertSearch = 2
	KCertSearchSigningIgnored    KCertSearch = 0
	KCertSearchSigningMask       KCertSearch = 3
	KCertSearchUnwrapAllowed     KCertSearch = 1024
	KCertSearchUnwrapDisallowed  KCertSearch = 2048
	KCertSearchUnwrapIgnored     KCertSearch = 0
	KCertSearchUnwrapMask        KCertSearch = 3072
	KCertSearchVerifyAllowed     KCertSearch = 4
	KCertSearchVerifyDisallowed  KCertSearch = 8
	KCertSearchVerifyIgnored     KCertSearch = 0
	KCertSearchVerifyMask        KCertSearch = 12
	KCertSearchWrapAllowed       KCertSearch = 256
	KCertSearchWrapDisallowed    KCertSearch = 512
	KCertSearchWrapIgnored       KCertSearch = 0
	KCertSearchWrapMask          KCertSearch = 768
)

func (KCertSearch) String added in v0.5.1

func (e KCertSearch) String() string

type KCertificateKCItemClass added in v0.5.1

type KCertificateKCItemClass uint32
const (
	KAppleSharePasswordKCItemClass KCertificateKCItemClass = 'a'<<24 | 's'<<16 | 'h'<<8 | 'p' // 'ashp'
	KCertificateKCItemClassValue   KCertificateKCItemClass = 'c'<<24 | 'e'<<16 | 'r'<<8 | 't' // 'cert'
	KGenericPasswordKCItemClass    KCertificateKCItemClass = 'g'<<24 | 'e'<<16 | 'n'<<8 | 'p' // 'genp'
	KInternetPasswordKCItemClass   KCertificateKCItemClass = 'i'<<24 | 'n'<<16 | 'e'<<8 | 't' // 'inet'
)

func (KCertificateKCItemClass) String added in v0.5.1

func (e KCertificateKCItemClass) String() string

type KClassKCItemAttr added in v0.5.1

type KClassKCItemAttr uint32
const (
	KAccountKCItemAttr        KClassKCItemAttr = 'a'<<24 | 'c'<<16 | 'c'<<8 | 't' // 'acct'
	KAddressKCItemAttr        KClassKCItemAttr = 'a'<<24 | 'd'<<16 | 'd'<<8 | 'r' // 'addr'
	KAuthTypeKCItemAttr       KClassKCItemAttr = 'a'<<24 | 't'<<16 | 'y'<<8 | 'p' // 'atyp'
	KClassKCItemAttrValue     KClassKCItemAttr = 'c'<<24 | 'l'<<16 | 'a'<<8 | 's' // 'clas'
	KCommentKCItemAttr        KClassKCItemAttr = 'i'<<24 | 'c'<<16 | 'm'<<8 | 't' // 'icmt'
	KCommonNameKCItemAttr     KClassKCItemAttr = 'c'<<24 | 'n'<<16 | ' '<<8 | ' ' // 'cn  '
	KCreationDateKCItemAttr   KClassKCItemAttr = 'c'<<24 | 'd'<<16 | 'a'<<8 | 't' // 'cdat'
	KCreatorKCItemAttr        KClassKCItemAttr = 'c'<<24 | 'r'<<16 | 't'<<8 | 'r' // 'crtr'
	KCustomIconKCItemAttr     KClassKCItemAttr = 'c'<<24 | 'u'<<16 | 's'<<8 | 'i' // 'cusi'
	KDecryptKCItemAttr        KClassKCItemAttr = 'd'<<24 | 'e'<<16 | 'c'<<8 | 'r' // 'decr'
	KDescriptionKCItemAttr    KClassKCItemAttr = 'd'<<24 | 'e'<<16 | 's'<<8 | 'c' // 'desc'
	KEMailKCItemAttr          KClassKCItemAttr = 'm'<<24 | 'a'<<16 | 'i'<<8 | 'l' // 'mail'
	KEncryptKCItemAttr        KClassKCItemAttr = 'e'<<24 | 'n'<<16 | 'c'<<8 | 'r' // 'encr'
	KEndDateKCItemAttr        KClassKCItemAttr = 'e'<<24 | 'd'<<16 | 'a'<<8 | 't' // 'edat'
	KGenericKCItemAttr        KClassKCItemAttr = 'g'<<24 | 'e'<<16 | 'n'<<8 | 'a' // 'gena'
	KInvisibleKCItemAttr      KClassKCItemAttr = 'i'<<24 | 'n'<<16 | 'v'<<8 | 'i' // 'invi'
	KIssuerKCItemAttr         KClassKCItemAttr = 'i'<<24 | 's'<<16 | 's'<<8 | 'u' // 'issu'
	KIssuerURLKCItemAttr      KClassKCItemAttr = 'i'<<24 | 'u'<<16 | 'r'<<8 | 'l' // 'iurl'
	KLabelKCItemAttr          KClassKCItemAttr = 'l'<<24 | 'a'<<16 | 'b'<<8 | 'l' // 'labl'
	KModDateKCItemAttr        KClassKCItemAttr = 'm'<<24 | 'd'<<16 | 'a'<<8 | 't' // 'mdat'
	KNegativeKCItemAttr       KClassKCItemAttr = 'n'<<24 | 'e'<<16 | 'g'<<8 | 'a' // 'nega'
	KPathKCItemAttr           KClassKCItemAttr = 'p'<<24 | 'a'<<16 | 't'<<8 | 'h' // 'path'
	KPortKCItemAttr           KClassKCItemAttr = 'p'<<24 | 'o'<<16 | 'r'<<8 | 't' // 'port'
	KProtocolKCItemAttr       KClassKCItemAttr = 'p'<<24 | 't'<<16 | 'c'<<8 | 'l' // 'ptcl'
	KPublicKeyHashKCItemAttr  KClassKCItemAttr = 'h'<<24 | 'p'<<16 | 'k'<<8 | 'y' // 'hpky'
	KScriptCodeKCItemAttr     KClassKCItemAttr = 's'<<24 | 'c'<<16 | 'r'<<8 | 'p' // 'scrp'
	KSecurityDomainKCItemAttr KClassKCItemAttr = 's'<<24 | 'd'<<16 | 'm'<<8 | 'n' // 'sdmn'
	KSerialNumberKCItemAttr   KClassKCItemAttr = 's'<<24 | 'n'<<16 | 'b'<<8 | 'r' // 'snbr'
	KServerKCItemAttr         KClassKCItemAttr = 's'<<24 | 'r'<<16 | 'v'<<8 | 'r' // 'srvr'
	KServiceKCItemAttr        KClassKCItemAttr = 's'<<24 | 'v'<<16 | 'c'<<8 | 'e' // 'svce'
	KSignKCItemAttr           KClassKCItemAttr = 's'<<24 | 'i'<<16 | 'g'<<8 | 'n' // 'sign'
	KSignatureKCItemAttr      KClassKCItemAttr = 's'<<24 | 's'<<16 | 'i'<<8 | 'g' // 'ssig'
	KStartDateKCItemAttr      KClassKCItemAttr = 's'<<24 | 'd'<<16 | 'a'<<8 | 't' // 'sdat'
	KSubjectKCItemAttr        KClassKCItemAttr = 's'<<24 | 'u'<<16 | 'b'<<8 | 'j' // 'subj'
	KTypeKCItemAttr           KClassKCItemAttr = 't'<<24 | 'y'<<16 | 'p'<<8 | 'e' // 'type'
	KUnwrapKCItemAttr         KClassKCItemAttr = 'u'<<24 | 'n'<<16 | 'w'<<8 | 'r' // 'unwr'
	KVerifyKCItemAttr         KClassKCItemAttr = 'v'<<24 | 'e'<<16 | 'r'<<8 | 'i' // 'veri'
	KVolumeKCItemAttr         KClassKCItemAttr = 'v'<<24 | 'l'<<16 | 'm'<<8 | 'e' // 'vlme'
	KWrapKCItemAttr           KClassKCItemAttr = 'w'<<24 | 'r'<<16 | 'a'<<8 | 'p' // 'wrap'
)

func (KClassKCItemAttr) String added in v0.5.1

func (e KClassKCItemAttr) String() string

type KClassic added in v0.5.1

type KClassic int32
const (
	// Deprecated.
	KClassicDomain KClassic = -32762
)

func (KClassic) String added in v0.5.1

func (e KClassic) String() string

type KClassicPreferencesFolder added in v0.5.1

type KClassicPreferencesFolder uint32
const (
	// Deprecated.
	KClassicPreferencesFolderType KClassicPreferencesFolder = 'c'<<24 | 'p'<<16 | 'r'<<8 | 'f' // 'cprf'
)

func (KClassicPreferencesFolder) String added in v0.5.1

func (e KClassicPreferencesFolder) String() string

type KClipboardIcon

type KClipboardIcon uint32
const (
	KClipboardIconValue            KClipboardIcon = 'C'<<24 | 'L'<<16 | 'I'<<8 | 'P' // 'CLIP'
	KClippingPictureTypeIcon       KClipboardIcon = 'c'<<24 | 'l'<<16 | 'p'<<8 | 'p' // 'clpp'
	KClippingSoundTypeIcon         KClipboardIcon = 'c'<<24 | 'l'<<16 | 'p'<<8 | 's' // 'clps'
	KClippingTextTypeIcon          KClipboardIcon = 'c'<<24 | 'l'<<16 | 'p'<<8 | 't' // 'clpt'
	KClippingUnknownTypeIcon       KClipboardIcon = 'c'<<24 | 'l'<<16 | 'p'<<8 | 'u' // 'clpu'
	KComputerIcon                  KClipboardIcon = 'r'<<24 | 'o'<<16 | 'o'<<8 | 't' // 'root'
	KDesktopIcon                   KClipboardIcon = 'd'<<24 | 'e'<<16 | 's'<<8 | 'k' // 'desk'
	KFinderIcon                    KClipboardIcon = 'F'<<24 | 'N'<<16 | 'D'<<8 | 'R' // 'FNDR'
	KFontSuitcaseIcon              KClipboardIcon = 'F'<<24 | 'F'<<16 | 'I'<<8 | 'L' // 'FFIL'
	KFullTrashIcon                 KClipboardIcon = 'f'<<24 | 't'<<16 | 'r'<<8 | 'h' // 'ftrh'
	KGenericApplicationIcon        KClipboardIcon = 'A'<<24 | 'P'<<16 | 'P'<<8 | 'L' // 'APPL'
	KGenericCDROMIcon              KClipboardIcon = 'c'<<24 | 'd'<<16 | 'd'<<8 | 'r' // 'cddr'
	KGenericComponentIcon          KClipboardIcon = 't'<<24 | 'h'<<16 | 'n'<<8 | 'g' // 'thng'
	KGenericControlPanelIcon       KClipboardIcon = 'A'<<24 | 'P'<<16 | 'P'<<8 | 'C' // 'APPC'
	KGenericControlStripModuleIcon KClipboardIcon = 's'<<24 | 'd'<<16 | 'e'<<8 | 'v' // 'sdev'
	KGenericDeskAccessoryIcon      KClipboardIcon = 'A'<<24 | 'P'<<16 | 'P'<<8 | 'D' // 'APPD'
	KGenericDocumentIcon           KClipboardIcon = 'd'<<24 | 'o'<<16 | 'c'<<8 | 'u' // 'docu'
	KGenericEditionFileIcon        KClipboardIcon = 'e'<<24 | 'd'<<16 | 't'<<8 | 'f' // 'edtf'
	KGenericExtensionIcon          KClipboardIcon = 'I'<<24 | 'N'<<16 | 'I'<<8 | 'T' // 'INIT'
	KGenericFileServerIcon         KClipboardIcon = 's'<<24 | 'r'<<16 | 'v'<<8 | 'r' // 'srvr'
	KGenericFloppyIcon             KClipboardIcon = 'f'<<24 | 'l'<<16 | 'p'<<8 | 'y' // 'flpy'
	KGenericFontIcon               KClipboardIcon = 'f'<<24 | 'f'<<16 | 'i'<<8 | 'l' // 'ffil'
	KGenericFontScalerIcon         KClipboardIcon = 's'<<24 | 'c'<<16 | 'l'<<8 | 'r' // 'sclr'
	KGenericHardDiskIcon           KClipboardIcon = 'h'<<24 | 'd'<<16 | 's'<<8 | 'k' // 'hdsk'
	KGenericIDiskIcon              KClipboardIcon = 'i'<<24 | 'd'<<16 | 's'<<8 | 'k' // 'idsk'
	KGenericMoverObjectIcon        KClipboardIcon = 'm'<<24 | 'o'<<16 | 'v'<<8 | 'r' // 'movr'
	KGenericPCCardIcon             KClipboardIcon = 'p'<<24 | 'c'<<16 | 'm'<<8 | 'c' // 'pcmc'
	KGenericPreferencesIcon        KClipboardIcon = 'p'<<24 | 'r'<<16 | 'e'<<8 | 'f' // 'pref'
	KGenericQueryDocumentIcon      KClipboardIcon = 'q'<<24 | 'e'<<16 | 'r'<<8 | 'y' // 'qery'
	KGenericRAMDiskIcon            KClipboardIcon = 'r'<<24 | 'a'<<16 | 'm'<<8 | 'd' // 'ramd'
	KGenericRemovableMediaIcon     KClipboardIcon = 'r'<<24 | 'm'<<16 | 'o'<<8 | 'v' // 'rmov'
	KGenericSharedLibaryIcon       KClipboardIcon = 's'<<24 | 'h'<<16 | 'l'<<8 | 'b' // 'shlb'
	KGenericStationeryIcon         KClipboardIcon = 's'<<24 | 'd'<<16 | 'o'<<8 | 'c' // 'sdoc'
	KGenericSuitcaseIcon           KClipboardIcon = 's'<<24 | 'u'<<16 | 'i'<<8 | 't' // 'suit'
	KGenericURLIcon                KClipboardIcon = 'g'<<24 | 'u'<<16 | 'r'<<8 | 'l' // 'gurl'
	KGenericWORMIcon               KClipboardIcon = 'w'<<24 | 'o'<<16 | 'r'<<8 | 'm' // 'worm'
	KInternationResourcesIcon      KClipboardIcon = 'i'<<24 | 'f'<<16 | 'i'<<8 | 'l' // 'ifil'
	KInternationalResourcesIcon    KClipboardIcon = 'i'<<24 | 'f'<<16 | 'i'<<8 | 'l' // 'ifil'
	KKeyboardLayoutIcon            KClipboardIcon = 'k'<<24 | 'f'<<16 | 'i'<<8 | 'l' // 'kfil'
	KSoundFileIcon                 KClipboardIcon = 's'<<24 | 'f'<<16 | 'i'<<8 | 'l' // 'sfil'
	KSystemSuitcaseIcon            KClipboardIcon = 'z'<<24 | 's'<<16 | 'y'<<8 | 's' // 'zsys'
	KTrashIcon                     KClipboardIcon = 't'<<24 | 'r'<<16 | 's'<<8 | 'h' // 'trsh'
	KTrueTypeFlatFontIcon          KClipboardIcon = 's'<<24 | 'f'<<16 | 'n'<<8 | 't' // 'sfnt'
	KTrueTypeFontIcon              KClipboardIcon = 't'<<24 | 'f'<<16 | 'i'<<8 | 'l' // 'tfil'
	KTrueTypeMultiFlatFontIcon     KClipboardIcon = 't'<<24 | 't'<<16 | 'c'<<8 | 'f' // 'ttcf'
	KUnknownFSObjectIcon           KClipboardIcon = 'u'<<24 | 'n'<<16 | 'f'<<8 | 's' // 'unfs'
	KUserIDiskIcon                 KClipboardIcon = 'u'<<24 | 'd'<<16 | 's'<<8 | 'k' // 'udsk'
)

func (KClipboardIcon) String

func (e KClipboardIcon) String() string

type KClipping added in v0.5.1

type KClipping uint32
const (
	KClippingCreator     KClipping = 'd'<<24 | 'r'<<16 | 'a'<<8 | 'g' // 'drag'
	KClippingPictureType KClipping = 'c'<<24 | 'l'<<16 | 'p'<<8 | 'p' // 'clpp'
	KClippingSoundType   KClipping = 'c'<<24 | 'l'<<16 | 'p'<<8 | 's' // 'clps'
	KClippingTextType    KClipping = 'c'<<24 | 'l'<<16 | 'p'<<8 | 't' // 'clpt'
	KClippingUnknownType KClipping = 'c'<<24 | 'l'<<16 | 'p'<<8 | 'u' // 'clpu'
)

func (KClipping) String added in v0.5.1

func (e KClipping) String() string

type KCollate

type KCollate int32
const (
	KCollateAttributesNotFoundErr   KCollate = -29500
	KCollateBufferTooSmall          KCollate = -29506
	KCollateInvalidChar             KCollate = -29505
	KCollateInvalidCollationRef     KCollate = -29507
	KCollateInvalidOptions          KCollate = -29501
	KCollateMissingUnicodeTableErr  KCollate = -29502
	KCollatePatternNotFoundErr      KCollate = -29504
	KCollateUnicodeConvertFailedErr KCollate = -29503
)

func (KCollate) String

func (e KCollate) String() string

type KCollectionDontWant added in v0.5.1

type KCollectionDontWant uint32
const (
	// Deprecated.
	KCollectionDontWantAttributes KCollectionDontWant = 0
	// Deprecated.
	KCollectionDontWantData KCollectionDontWant = 0
	// Deprecated.
	KCollectionDontWantId KCollectionDontWant = 0
	// Deprecated.
	KCollectionDontWantIndex KCollectionDontWant = 0
	// Deprecated.
	KCollectionDontWantSize KCollectionDontWant = 0
	// Deprecated.
	KCollectionDontWantTag KCollectionDontWant = 0
)

func (KCollectionDontWant) String added in v0.5.1

func (e KCollectionDontWant) String() string

type KCollectionNoAttributes added in v0.5.1

type KCollectionNoAttributes int32
const (
	// Deprecated.
	KCollectionAllAttributes KCollectionNoAttributes = -1
	// Deprecated.
	KCollectionDefaultAttributes KCollectionNoAttributes = 0x40000000
	// Deprecated.
	KCollectionNoAttributesValue KCollectionNoAttributes = 0
	// Deprecated.
	KCollectionUserAttributes KCollectionNoAttributes = 0xffff
)

func (KCollectionNoAttributes) String added in v0.6.17

func (e KCollectionNoAttributes) String() string

type KCollectionUser0Bit added in v0.5.1

type KCollectionUser0Bit uint32
const (
	// Deprecated.
	KCollectionLockBit KCollectionUser0Bit = 31
	// Deprecated.
	KCollectionPersistenceBit KCollectionUser0Bit = 30
	// Deprecated.
	KCollectionReserved0Bit KCollectionUser0Bit = 16
	// Deprecated.
	KCollectionReserved10Bit KCollectionUser0Bit = 26
	// Deprecated.
	KCollectionReserved11Bit KCollectionUser0Bit = 27
	// Deprecated.
	KCollectionReserved12Bit KCollectionUser0Bit = 28
	// Deprecated.
	KCollectionReserved13Bit KCollectionUser0Bit = 29
	// Deprecated.
	KCollectionReserved1Bit KCollectionUser0Bit = 17
	// Deprecated.
	KCollectionReserved2Bit KCollectionUser0Bit = 18
	// Deprecated.
	KCollectionReserved3Bit KCollectionUser0Bit = 19
	// Deprecated.
	KCollectionReserved4Bit KCollectionUser0Bit = 20
	// Deprecated.
	KCollectionReserved5Bit KCollectionUser0Bit = 21
	// Deprecated.
	KCollectionReserved6Bit KCollectionUser0Bit = 22
	// Deprecated.
	KCollectionReserved7Bit KCollectionUser0Bit = 23
	// Deprecated.
	KCollectionReserved8Bit KCollectionUser0Bit = 24
	// Deprecated.
	KCollectionReserved9Bit KCollectionUser0Bit = 25
	// Deprecated.
	KCollectionUser0BitValue KCollectionUser0Bit = 0
	// Deprecated.
	KCollectionUser10Bit KCollectionUser0Bit = 10
	// Deprecated.
	KCollectionUser11Bit KCollectionUser0Bit = 11
	// Deprecated.
	KCollectionUser12Bit KCollectionUser0Bit = 12
	// Deprecated.
	KCollectionUser13Bit KCollectionUser0Bit = 13
	// Deprecated.
	KCollectionUser14Bit KCollectionUser0Bit = 14
	// Deprecated.
	KCollectionUser15Bit KCollectionUser0Bit = 15
	// Deprecated.
	KCollectionUser1Bit KCollectionUser0Bit = 1
	// Deprecated.
	KCollectionUser2Bit KCollectionUser0Bit = 2
	// Deprecated.
	KCollectionUser3Bit KCollectionUser0Bit = 3
	// Deprecated.
	KCollectionUser4Bit KCollectionUser0Bit = 4
	// Deprecated.
	KCollectionUser5Bit KCollectionUser0Bit = 5
	// Deprecated.
	KCollectionUser6Bit KCollectionUser0Bit = 6
	// Deprecated.
	KCollectionUser7Bit KCollectionUser0Bit = 7
	// Deprecated.
	KCollectionUser8Bit KCollectionUser0Bit = 8
	// Deprecated.
	KCollectionUser9Bit KCollectionUser0Bit = 9
)

func (KCollectionUser0Bit) String added in v0.6.17

func (e KCollectionUser0Bit) String() string

type KCollectionUser0Mask added in v0.5.1

type KCollectionUser0Mask uint32
const (
	// Deprecated.
	KCollectionLockMask KCollectionUser0Mask = 2147483648
	// Deprecated.
	KCollectionPersistenceMask KCollectionUser0Mask = 1073741824
	// Deprecated.
	KCollectionReserved0Mask KCollectionUser0Mask = 65536
	// Deprecated.
	KCollectionReserved10Mask KCollectionUser0Mask = 67108864
	// Deprecated.
	KCollectionReserved11Mask KCollectionUser0Mask = 134217728
	// Deprecated.
	KCollectionReserved12Mask KCollectionUser0Mask = 268435456
	// Deprecated.
	KCollectionReserved13Mask KCollectionUser0Mask = 536870912
	// Deprecated.
	KCollectionReserved1Mask KCollectionUser0Mask = 131072
	// Deprecated.
	KCollectionReserved2Mask KCollectionUser0Mask = 262144
	// Deprecated.
	KCollectionReserved3Mask KCollectionUser0Mask = 524288
	// Deprecated.
	KCollectionReserved4Mask KCollectionUser0Mask = 1048576
	// Deprecated.
	KCollectionReserved5Mask KCollectionUser0Mask = 2097152
	// Deprecated.
	KCollectionReserved6Mask KCollectionUser0Mask = 4194304
	// Deprecated.
	KCollectionReserved7Mask KCollectionUser0Mask = 8388608
	// Deprecated.
	KCollectionReserved8Mask KCollectionUser0Mask = 16777216
	// Deprecated.
	KCollectionReserved9Mask KCollectionUser0Mask = 33554432
	// Deprecated.
	KCollectionUser0MaskValue KCollectionUser0Mask = 1
	// Deprecated.
	KCollectionUser10Mask KCollectionUser0Mask = 1024
	// Deprecated.
	KCollectionUser11Mask KCollectionUser0Mask = 2048
	// Deprecated.
	KCollectionUser12Mask KCollectionUser0Mask = 4096
	// Deprecated.
	KCollectionUser13Mask KCollectionUser0Mask = 8192
	// Deprecated.
	KCollectionUser14Mask KCollectionUser0Mask = 16384
	// Deprecated.
	KCollectionUser15Mask KCollectionUser0Mask = 32768
	// Deprecated.
	KCollectionUser1Mask KCollectionUser0Mask = 2
	// Deprecated.
	KCollectionUser2Mask KCollectionUser0Mask = 4
	// Deprecated.
	KCollectionUser3Mask KCollectionUser0Mask = 8
	// Deprecated.
	KCollectionUser4Mask KCollectionUser0Mask = 16
	// Deprecated.
	KCollectionUser5Mask KCollectionUser0Mask = 32
	// Deprecated.
	KCollectionUser6Mask KCollectionUser0Mask = 64
	// Deprecated.
	KCollectionUser7Mask KCollectionUser0Mask = 128
	// Deprecated.
	KCollectionUser8Mask KCollectionUser0Mask = 256
	// Deprecated.
	KCollectionUser9Mask KCollectionUser0Mask = 512
)

func (KCollectionUser0Mask) String added in v0.6.17

func (e KCollectionUser0Mask) String() string

type KColorSyncFolderType added in v0.5.1

type KColorSyncFolderType uint32
const (
	// Deprecated.
	KAppleShareAuthenticationFolderType KColorSyncFolderType = 'a'<<24 | 'u'<<16 | 't'<<8 | 'h' // 'auth'
	// Deprecated.
	KAppleShareSupportFolderType KColorSyncFolderType = 's'<<24 | 'h'<<16 | 'a'<<8 | 'r' // 'shar'
	// Deprecated.
	KAudioAlertSoundsFolderType KColorSyncFolderType = 'a'<<24 | 'l'<<16 | 'r'<<8 | 't' // 'alrt'
	// Deprecated.
	KAudioComponentsFolderType KColorSyncFolderType = 'a'<<24 | 'c'<<16 | 'm'<<8 | 'p' // 'acmp'
	// Deprecated.
	KAudioDigidesignFolderType KColorSyncFolderType = 'a'<<24 | 'd'<<16 | 'i'<<8 | 'g' // 'adig'
	// Deprecated.
	KAudioPlugInsFolderType KColorSyncFolderType = 'a'<<24 | 'p'<<16 | 'l'<<8 | 'g' // 'aplg'
	// Deprecated.
	KAudioPresetsFolderType KColorSyncFolderType = 'a'<<24 | 'p'<<16 | 's'<<8 | 't' // 'apst'
	// Deprecated.
	KAudioSoundBanksFolderType KColorSyncFolderType = 'b'<<24 | 'a'<<16 | 'n'<<8 | 'k' // 'bank'
	// Deprecated.
	KAudioSoundsFolderType KColorSyncFolderType = 'a'<<24 | 's'<<16 | 'n'<<8 | 'd' // 'asnd'
	// Deprecated.
	KAudioSupportFolderType KColorSyncFolderType = 'a'<<24 | 'd'<<16 | 'i'<<8 | 'o' // 'adio'
	// Deprecated.
	KAudioVSTFolderType KColorSyncFolderType = 'a'<<24 | 'v'<<16 | 's'<<8 | 't' // 'avst'
	// Deprecated.
	KAutomatorWorkflowsFolderType KColorSyncFolderType = 'f'<<24 | 'l'<<16 | 'o'<<8 | 'w' // 'flow'
	// Deprecated.
	KAutosaveInformationFolderType KColorSyncFolderType = 'a'<<24 | 's'<<16 | 'a'<<8 | 'v' // 'asav'
	// Deprecated.
	KBootTimeStartupItemsFolderType KColorSyncFolderType = 'e'<<24 | 'm'<<16 | 'p'<<8 | 'z' // 'empz'
	// Deprecated.
	KCachedDataFolderType KColorSyncFolderType = 'c'<<24 | 'a'<<16 | 'c'<<8 | 'h' // 'cach'
	// Deprecated.
	KCarbonLibraryFolderType KColorSyncFolderType = 'c'<<24 | 'a'<<16 | 'r'<<8 | 'b' // 'carb'
	// Deprecated.
	KClassicDesktopFolderType KColorSyncFolderType = 's'<<24 | 'd'<<16 | 's'<<8 | 'k' // 'sdsk'
	// Deprecated.
	KColorPickersFolderType KColorSyncFolderType = 'c'<<24 | 'p'<<16 | 'k'<<8 | 'r' // 'cpkr'
	// Deprecated.
	KColorSyncCMMFolderType KColorSyncFolderType = 'c'<<24 | 'c'<<16 | 'm'<<8 | 'm' // 'ccmm'
	// Deprecated.
	KColorSyncFolderTypeValue KColorSyncFolderType = 's'<<24 | 'y'<<16 | 'n'<<8 | 'c' // 'sync'
	// Deprecated.
	KColorSyncScriptingFolderType KColorSyncFolderType = 'c'<<24 | 's'<<16 | 'c'<<8 | 'r' // 'cscr'
	// Deprecated.
	KComponentsFolderType KColorSyncFolderType = 'c'<<24 | 'm'<<16 | 'p'<<8 | 'd' // 'cmpd'
	// Deprecated.
	KCompositionsFolderType KColorSyncFolderType = 'c'<<24 | 'm'<<16 | 'p'<<8 | 's' // 'cmps'
	// Deprecated.
	KCoreServicesFolderType KColorSyncFolderType = 'c'<<24 | 's'<<16 | 'r'<<8 | 'v' // 'csrv'
	// Deprecated.
	KDirectoryServicesFolderType KColorSyncFolderType = 'd'<<24 | 's'<<16 | 'r'<<8 | 'v' // 'dsrv'
	// Deprecated.
	KDirectoryServicesPlugInsFolderType KColorSyncFolderType = 'd'<<24 | 'p'<<16 | 'l'<<8 | 'g' // 'dplg'
	// Deprecated.
	KDocumentationFolderType KColorSyncFolderType = 'i'<<24 | 'n'<<16 | 'f'<<8 | 'o' // 'info'
	// Deprecated.
	KDownloadsFolderType KColorSyncFolderType = 'd'<<24 | 'o'<<16 | 'w'<<8 | 'n' // 'down'
	// Deprecated.
	KFileSystemSupportFolderType KColorSyncFolderType = 'f'<<24 | 's'<<16 | 'y'<<8 | 's' // 'fsys'
	// Deprecated.
	KFindByContentIndexesFolderType KColorSyncFolderType = 'f'<<24 | 'b'<<16 | 'c'<<8 | 'x' // 'fbcx'
	// Deprecated.
	KFontCollectionsFolderType KColorSyncFolderType = 'f'<<24 | 'n'<<16 | 'c'<<8 | 'l' // 'fncl'
	// Deprecated.
	KFrameworksFolderType KColorSyncFolderType = 'f'<<24 | 'r'<<16 | 'a'<<8 | 'm' // 'fram'
	// Deprecated.
	KISSDownloadsFolderType KColorSyncFolderType = 'i'<<24 | 's'<<16 | 's'<<8 | 'd' // 'issd'
	// Deprecated.
	KIndexFilesFolderType KColorSyncFolderType = 'i'<<24 | 'n'<<16 | 'd'<<8 | 'x' // 'indx'
	// Deprecated.
	KInputManagersFolderType KColorSyncFolderType = 'i'<<24 | 'n'<<16 | 'p'<<8 | 't' // 'inpt'
	// Deprecated.
	KInputMethodsFolderType KColorSyncFolderType = 'i'<<24 | 'n'<<16 | 'p'<<8 | 'f' // 'inpf'
	// Deprecated.
	KInstallerReceiptsFolderType KColorSyncFolderType = 'r'<<24 | 'c'<<16 | 'p'<<8 | 't' // 'rcpt'
	// Deprecated.
	KKernelExtensionsFolderType KColorSyncFolderType = 'k'<<24 | 'e'<<16 | 'x'<<8 | 't' // 'kext'
	// Deprecated.
	KKeyboardLayoutsFolderType KColorSyncFolderType = 'k'<<24 | 'l'<<16 | 'a'<<8 | 'y' // 'klay'
	// Deprecated.
	KLibraryAssistantsFolderType KColorSyncFolderType = 'a'<<24 | 's'<<16 | 't'<<8 | 'l' // 'astl'
	// Deprecated.
	KMIDIDriversFolderType KColorSyncFolderType = 'm'<<24 | 'i'<<16 | 'd'<<8 | 'i' // 'midi'
	// Deprecated.
	KManagedItemsFolderType KColorSyncFolderType = 'm'<<24 | 'a'<<16 | 'n'<<8 | 'g' // 'mang'
	// Deprecated.
	KPrintersFolderType KColorSyncFolderType = 'i'<<24 | 'm'<<16 | 'p'<<8 | 'r' // 'impr'
	// Deprecated.
	KPrivateFrameworksFolderType KColorSyncFolderType = 'p'<<24 | 'f'<<16 | 'r'<<8 | 'm' // 'pfrm'
	// Deprecated.
	KQuickTimeComponentsFolderType KColorSyncFolderType = 'w'<<24 | 'c'<<16 | 'm'<<8 | 'p' // 'wcmp'
	// Deprecated.
	KSpeechFolderType KColorSyncFolderType = 's'<<24 | 'p'<<16 | 'c'<<8 | 'h' // 'spch'
	// Deprecated.
	KSpotlightImportersFolderType KColorSyncFolderType = 's'<<24 | 'i'<<16 | 'm'<<8 | 'p' // 'simp'
	// Deprecated.
	KSpotlightMetadataCacheFolderType KColorSyncFolderType = 's'<<24 | 'c'<<16 | 'c'<<8 | 'h' // 'scch'
	// Deprecated.
	KSpotlightSavedSearchesFolderType KColorSyncFolderType = 's'<<24 | 'p'<<16 | 'o'<<8 | 't' // 'spot'
	// Deprecated.
	KSystemSoundsFolderType KColorSyncFolderType = 's'<<24 | 's'<<16 | 'n'<<8 | 'd' // 'ssnd'
	// Deprecated.
	KUserSpecificTmpFolderType KColorSyncFolderType = 'u'<<24 | 't'<<16 | 'm'<<8 | 'p' // 'utmp'
	// Deprecated.
	KiMovieFolderType KColorSyncFolderType = 'i'<<24 | 'm'<<16 | 'o'<<8 | 'v' // 'imov'
	// Deprecated.
	KiMoviePlugInsFolderType KColorSyncFolderType = 'i'<<24 | 'm'<<16 | 'p'<<8 | 'i' // 'impi'
	// Deprecated.
	KiMovieSoundEffectsFolderType KColorSyncFolderType = 'i'<<24 | 'm'<<16 | 's'<<8 | 'e' // 'imse'
)

func (KColorSyncFolderType) String added in v0.5.1

func (e KColorSyncFolderType) String() string

type KColorSyncProfilesFolderType added in v0.5.1

type KColorSyncProfilesFolderType uint32
const (
	// Deprecated.
	KApplicationSupportFolderType KColorSyncProfilesFolderType = 'a'<<24 | 's'<<16 | 'u'<<8 | 'p' // 'asup'
	// Deprecated.
	KColorSyncProfilesFolderTypeValue KColorSyncProfilesFolderType = 'p'<<24 | 'r'<<16 | 'o'<<8 | 'f' // 'prof'
	// Deprecated.
	KPrinterDescriptionFolderType KColorSyncProfilesFolderType = 'p'<<24 | 'p'<<16 | 'd'<<8 | 'f' // 'ppdf'
	// Deprecated.
	KPrinterDriverFolderType KColorSyncProfilesFolderType = 0xc4707264
	// Deprecated.
	KScriptingAdditionsFolderType KColorSyncProfilesFolderType = 0xc4736372
	// Deprecated.
	KTextEncodingsFolderType KColorSyncProfilesFolderType = 0xc4746578
)

func (KColorSyncProfilesFolderType) String added in v0.5.1

type KComponent added in v0.5.1

type KComponent int32
const (
	// Deprecated.
	KComponentCanDoSelect KComponent = -3
	// Deprecated.
	KComponentCloseSelect KComponent = -2
	// Deprecated.
	KComponentExecuteWiredActionSelect KComponent = -9
	// Deprecated.
	KComponentGetMPWorkFunctionSelect KComponent = -8
	// Deprecated.
	KComponentGetPublicResourceSelect KComponent = -10
	// Deprecated.
	KComponentOpenSelect KComponent = -1
	// Deprecated.
	KComponentRegisterSelect KComponent = -5
	// Deprecated.
	KComponentTargetSelect KComponent = -6
	// Deprecated.
	KComponentUnregisterSelect KComponent = -7
	// Deprecated.
	KComponentVersionSelect KComponent = -4
)

func (KComponent) String added in v0.5.1

func (e KComponent) String() string

type KComponentDebug added in v0.5.1

type KComponentDebug uint32
const (
	// Deprecated.
	KComponentDebugOption KComponentDebug = 0
)

func (KComponentDebug) String added in v0.5.1

func (e KComponentDebug) String() string

type KConnSuite added in v0.5.1

type KConnSuite uint32
const (
	CADBAddress       KConnSuite = 'c'<<24 | 'a'<<16 | 'd'<<8 | 'b' // 'cadb'
	CAddressSpec      KConnSuite = 'c'<<24 | 'a'<<16 | 'd'<<8 | 'r' // 'cadr'
	CAppleTalkAddress KConnSuite = 'c'<<24 | 'a'<<16 | 't'<<8 | ' ' // 'cat '
	CBusAddress       KConnSuite = 'c'<<24 | 'b'<<16 | 'u'<<8 | 's' // 'cbus'
	CDevSpec          KConnSuite = 'c'<<24 | 'd'<<16 | 'e'<<8 | 'v' // 'cdev'
	CEthernetAddress  KConnSuite = 'c'<<24 | 'e'<<16 | 'n'<<8 | ' ' // 'cen '
	CFireWireAddress  KConnSuite = 'c'<<24 | 'f'<<16 | 'w'<<8 | ' ' // 'cfw '
	CIPAddress        KConnSuite = 'c'<<24 | 'i'<<16 | 'p'<<8 | ' ' // 'cip '
	CLocalTalkAddress KConnSuite = 'c'<<24 | 'l'<<16 | 't'<<8 | ' ' // 'clt '
	CSCSIAddress      KConnSuite = 'c'<<24 | 's'<<16 | 'c'<<8 | 's' // 'cscs'
	CTokenRingAddress KConnSuite = 'c'<<24 | 't'<<16 | 'o'<<8 | 'k' // 'ctok'
	CUSBAddress       KConnSuite = 'c'<<24 | 'u'<<16 | 's'<<8 | 'b' // 'cusb'
	EADB              KConnSuite = 'e'<<24 | 'a'<<16 | 'd'<<8 | 'b' // 'eadb'
	EAddressSpec      KConnSuite = 'e'<<24 | 'a'<<16 | 'd'<<8 | 's' // 'eads'
	EAnalogAudio      KConnSuite = 'e'<<24 | 'p'<<16 | 'a'<<8 | 'u' // 'epau'
	EAppleTalk        KConnSuite = 'e'<<24 | 'p'<<16 | 'a'<<8 | 't' // 'epat'
	EAudioLineIn      KConnSuite = 'e'<<24 | 'c'<<16 | 'a'<<8 | 'i' // 'ecai'
	EAudioLineOut     KConnSuite = 'e'<<24 | 'c'<<16 | 'a'<<8 | 'l' // 'ecal'
	EAudioOut         KConnSuite = 'e'<<24 | 'c'<<16 | 'a'<<8 | 'o' // 'ecao'
	EBus              KConnSuite = 'e'<<24 | 'b'<<16 | 'u'<<8 | 's' // 'ebus'
	ECDROM            KConnSuite = 'e'<<24 | 'c'<<16 | 'd'<<8 | ' ' // 'ecd '
	ECommSlot         KConnSuite = 'e'<<24 | 'c'<<16 | 'c'<<8 | 'm' // 'eccm'
	EConduit          KConnSuite = 'e'<<24 | 'c'<<16 | 'o'<<8 | 'n' // 'econ'
	EDVD              KConnSuite = 'e'<<24 | 'd'<<16 | 'v'<<8 | 'd' // 'edvd'
	EDeviceType       KConnSuite = 'e'<<24 | 'd'<<16 | 'v'<<8 | 't' // 'edvt'
	EDigitalAudio     KConnSuite = 'e'<<24 | 'p'<<16 | 'd'<<8 | 'a' // 'epda'
	EDisplay          KConnSuite = 'e'<<24 | 'd'<<16 | 'd'<<8 | 's' // 'edds'
	EEthernet         KConnSuite = 'e'<<24 | 'c'<<16 | 'e'<<8 | 'n' // 'ecen'
	EFireWire         KConnSuite = 'e'<<24 | 'c'<<16 | 'f'<<8 | 'w' // 'ecfw'
	EFloppy           KConnSuite = 'e'<<24 | 'f'<<16 | 'd'<<8 | ' ' // 'efd '
	EHD               KConnSuite = 'e'<<24 | 'h'<<16 | 'd'<<8 | ' ' // 'ehd '
	EIP               KConnSuite = 'e'<<24 | 'p'<<16 | 'i'<<8 | 'p' // 'epip'
	EIRTalk           KConnSuite = 'e'<<24 | 'p'<<16 | 'i'<<8 | 't' // 'epit'
	EInfrared         KConnSuite = 'e'<<24 | 'c'<<16 | 'i'<<8 | 'r' // 'ecir'
	EIrDA             KConnSuite = 'e'<<24 | 'p'<<16 | 'i'<<8 | 'r' // 'epir'
	EKeyboard         KConnSuite = 'e'<<24 | 'k'<<16 | 'b'<<8 | 'd' // 'ekbd'
	ELCD              KConnSuite = 'e'<<24 | 'd'<<16 | 'l'<<8 | 'c' // 'edlc'
	ELocalTalk        KConnSuite = 'e'<<24 | 'c'<<16 | 'l'<<8 | 't' // 'eclt'
	EMacIP            KConnSuite = 'e'<<24 | 'p'<<16 | 'm'<<8 | 'i' // 'epmi'
	EMacVideo         KConnSuite = 'e'<<24 | 'p'<<16 | 'm'<<8 | 'v' // 'epmv'
	EMicrophone       KConnSuite = 'e'<<24 | 'c'<<16 | 'm'<<8 | 'i' // 'ecmi'
	EModem            KConnSuite = 'e'<<24 | 'd'<<16 | 'm'<<8 | 'm' // 'edmm'
	EModemPort        KConnSuite = 'e'<<24 | 'c'<<16 | 'm'<<8 | 'p' // 'ecmp'
	EModemPrinterPort KConnSuite = 'e'<<24 | 'm'<<16 | 'p'<<8 | 'p' // 'empp'
	EMonitorOut       KConnSuite = 'e'<<24 | 'c'<<16 | 'm'<<8 | 'n' // 'ecmn'
	EMouse            KConnSuite = 'e'<<24 | 'm'<<16 | 'o'<<8 | 'u' // 'emou'
	ENuBus            KConnSuite = 'e'<<24 | 'n'<<16 | 'u'<<8 | 'b' // 'enub'
	ENuBusCard        KConnSuite = 'e'<<24 | 'd'<<16 | 'n'<<8 | 'b' // 'ednb'
	EPCIbus           KConnSuite = 'e'<<24 | 'c'<<16 | 'p'<<8 | 'i' // 'ecpi'
	EPCIcard          KConnSuite = 'e'<<24 | 'd'<<16 | 'p'<<8 | 'i' // 'edpi'
	EPCcard           KConnSuite = 'e'<<24 | 'c'<<16 | 'p'<<8 | 'c' // 'ecpc'
	EPDScard          KConnSuite = 'e'<<24 | 'p'<<16 | 'd'<<8 | 's' // 'epds'
	EPDSslot          KConnSuite = 'e'<<24 | 'c'<<16 | 'p'<<8 | 'd' // 'ecpd'
	EPPP              KConnSuite = 'e'<<24 | 'p'<<16 | 'p'<<8 | 'p' // 'eppp'
	EPointingDevice   KConnSuite = 'e'<<24 | 'd'<<16 | 'p'<<8 | 'd' // 'edpd'
	EPostScript       KConnSuite = 'e'<<24 | 'p'<<16 | 'p'<<8 | 's' // 'epps'
	EPrinter          KConnSuite = 'e'<<24 | 'd'<<16 | 'p'<<8 | 'r' // 'edpr'
	EPrinterPort      KConnSuite = 'e'<<24 | 'c'<<16 | 'p'<<8 | 'p' // 'ecpp'
	EProtocol         KConnSuite = 'e'<<24 | 'p'<<16 | 'r'<<8 | 'o' // 'epro'
	ESCSI             KConnSuite = 'e'<<24 | 'c'<<16 | 's'<<8 | 'c' // 'ecsc'
	ESVGA             KConnSuite = 'e'<<24 | 'p'<<16 | 's'<<8 | 'g' // 'epsg'
	ESerial           KConnSuite = 'e'<<24 | 'p'<<16 | 's'<<8 | 'r' // 'epsr'
	ESpeakers         KConnSuite = 'e'<<24 | 'd'<<16 | 's'<<8 | 'p' // 'edsp'
	EStorageDevice    KConnSuite = 'e'<<24 | 'd'<<16 | 's'<<8 | 't' // 'edst'
	ESvideo           KConnSuite = 'e'<<24 | 'p'<<16 | 's'<<8 | 'v' // 'epsv'
	ETokenRing        KConnSuite = 'e'<<24 | 't'<<16 | 'o'<<8 | 'k' // 'etok'
	ETrackball        KConnSuite = 'e'<<24 | 't'<<16 | 'r'<<8 | 'k' // 'etrk'
	ETrackpad         KConnSuite = 'e'<<24 | 'd'<<16 | 't'<<8 | 'p' // 'edtp'
	EUSB              KConnSuite = 'e'<<24 | 'c'<<16 | 'u'<<8 | 's' // 'ecus'
	EVideoIn          KConnSuite = 'e'<<24 | 'c'<<16 | 'v'<<8 | 'i' // 'ecvi'
	EVideoMonitor     KConnSuite = 'e'<<24 | 'd'<<16 | 'v'<<8 | 'm' // 'edvm'
	EVideoOut         KConnSuite = 'e'<<24 | 'c'<<16 | 'v'<<8 | 'o' // 'ecvo'
	KConnSuiteValue   KConnSuite = 'm'<<24 | 'a'<<16 | 'c'<<8 | 'c' // 'macc'
	PATMachine        KConnSuite = 'p'<<24 | 'a'<<16 | 't'<<8 | 'm' // 'patm'
	PATType           KConnSuite = 'p'<<24 | 'a'<<16 | 't'<<8 | 't' // 'patt'
	PATZone           KConnSuite = 'p'<<24 | 'a'<<16 | 't'<<8 | 'z' // 'patz'
	PConduit          KConnSuite = 'p'<<24 | 'c'<<16 | 'o'<<8 | 'n' // 'pcon'
	PDNS              KConnSuite = 'p'<<24 | 'd'<<16 | 'n'<<8 | 's' // 'pdns'
	PDeviceAddress    KConnSuite = 'p'<<24 | 'd'<<16 | 'v'<<8 | 'a' // 'pdva'
	PDeviceType       KConnSuite = 'p'<<24 | 'd'<<16 | 'v'<<8 | 't' // 'pdvt'
	PDottedDecimal    KConnSuite = 'p'<<24 | 'i'<<16 | 'p'<<8 | 'd' // 'pipd'
	PNetwork          KConnSuite = 'p'<<24 | 'n'<<16 | 'e'<<8 | 't' // 'pnet'
	PNode             KConnSuite = 'p'<<24 | 'n'<<16 | 'o'<<8 | 'd' // 'pnod'
	PPort             KConnSuite = 'p'<<24 | 'p'<<16 | 'o'<<8 | 'r' // 'ppor'
	PProtocol         KConnSuite = 'p'<<24 | 'p'<<16 | 'r'<<8 | 't' // 'pprt'
	PSCSIBus          KConnSuite = 'p'<<24 | 's'<<16 | 'c'<<8 | 'b' // 'pscb'
	PSCSILUN          KConnSuite = 'p'<<24 | 's'<<16 | 'l'<<8 | 'u' // 'pslu'
	PSocket           KConnSuite = 'p'<<24 | 's'<<16 | 'o'<<8 | 'c' // 'psoc'
)

func (KConnSuite) String added in v0.5.1

func (e KConnSuite) String() string

type KContainerFolderAliasType added in v0.5.1

type KContainerFolderAliasType uint32
const (
	KAppPackageAliasType           KContainerFolderAliasType = 'f'<<24 | 'a'<<16 | 'p'<<8 | 'a' // 'fapa'
	KApplicationAliasType          KContainerFolderAliasType = 'a'<<24 | 'd'<<16 | 'r'<<8 | 'p' // 'adrp'
	KApplicationCPAliasType        KContainerFolderAliasType = 'a'<<24 | 'c'<<16 | 'd'<<8 | 'p' // 'acdp'
	KApplicationDAAliasType        KContainerFolderAliasType = 'a'<<24 | 'd'<<16 | 'd'<<8 | 'p' // 'addp'
	KContainerAliasType            KContainerFolderAliasType = 'd'<<24 | 'r'<<16 | 'o'<<8 | 'p' // 'drop'
	KContainerCDROMAliasType       KContainerFolderAliasType = 'c'<<24 | 'd'<<16 | 'd'<<8 | 'r' // 'cddr'
	KContainerFloppyAliasType      KContainerFolderAliasType = 'f'<<24 | 'l'<<16 | 'p'<<8 | 'y' // 'flpy'
	KContainerFolderAliasTypeValue KContainerFolderAliasType = 'f'<<24 | 'd'<<16 | 'r'<<8 | 'p' // 'fdrp'
	KContainerHardDiskAliasType    KContainerFolderAliasType = 'h'<<24 | 'd'<<16 | 's'<<8 | 'k' // 'hdsk'
	KContainerServerAliasType      KContainerFolderAliasType = 's'<<24 | 'r'<<16 | 'v'<<8 | 'r' // 'srvr'
	KContainerTrashAliasType       KContainerFolderAliasType = 't'<<24 | 'r'<<16 | 's'<<8 | 'h' // 'trsh'
	KDesktopPrinterAliasType       KContainerFolderAliasType = 'd'<<24 | 't'<<16 | 'p'<<8 | 'a' // 'dtpa'
	KPackageAliasType              KContainerFolderAliasType = 'f'<<24 | 'p'<<16 | 'k'<<8 | 'a' // 'fpka'
)

func (KContainerFolderAliasType) String added in v0.5.1

func (e KContainerFolderAliasType) String() string

type KCooperativeThread added in v0.5.1

type KCooperativeThread uint32
const (
	// Deprecated.
	KCooperativeThreadValue KCooperativeThread = 1
	// Deprecated.
	KPreemptiveThread KCooperativeThread = 2
)

func (KCooperativeThread) String added in v0.5.1

func (e KCooperativeThread) String() string

type KCoreEndian added in v0.5.1

type KCoreEndian uint32
const (
	// KCoreEndianAppleEventManagerDomain: Specifies that the domain is limited to Appleevents.
	KCoreEndianAppleEventManagerDomain KCoreEndian = 'a'<<24 | 'e'<<16 | 'v'<<8 | 't' // 'aevt'
	// KCoreEndianResourceManagerDomain: Specifies that the domain is limited to theresources for a specific application.
	KCoreEndianResourceManagerDomain KCoreEndian = 'r'<<24 | 's'<<16 | 'r'<<8 | 'c' // 'rsrc'
)

func (KCoreEndian) String added in v0.5.1

func (e KCoreEndian) String() string

type KCoreEvent added in v0.5.1

type KCoreEvent uint32
const (
	// KCoreEventClass: An Apple event sent by the Mac OS; applications that present a graphical interface to the user should be able to any events sent by the Mac OS that apply to the application.
	KCoreEventClass KCoreEvent = 'a'<<24 | 'e'<<16 | 'v'<<8 | 't' // 'aevt'
)

func (KCoreEvent) String added in v0.5.1

func (e KCoreEvent) String() string

type KCreateFolder added in v0.5.1

type KCreateFolder uint32
const (
	// Deprecated.
	KCreateFolderValue KCreateFolder = 1
	// Deprecated.
	KDontCreateFolder KCreateFolder = 0
)

func (KCreateFolder) String added in v0.5.1

func (e KCreateFolder) String() string

type KCreateFolderAtBoot added in v0.5.1

type KCreateFolderAtBoot uint32
const (
	// Deprecated.
	KCreateFolderAtBootValue KCreateFolderAtBoot = 0x2
	// Deprecated.
	KCreateFolderAtBootBit KCreateFolderAtBoot = 1
	// Deprecated.
	KFolderCreatedAdminPrivs KCreateFolderAtBoot = 0x10
	// Deprecated.
	KFolderCreatedAdminPrivsBit KCreateFolderAtBoot = 4
	// Deprecated.
	KFolderCreatedInvisible KCreateFolderAtBoot = 0x4
	// Deprecated.
	KFolderCreatedInvisibleBit KCreateFolderAtBoot = 2
	// Deprecated.
	KFolderCreatedNameLocked KCreateFolderAtBoot = 0x8
	// Deprecated.
	KFolderCreatedNameLockedBit KCreateFolderAtBoot = 3
)

func (KCreateFolderAtBoot) String added in v0.5.1

func (e KCreateFolderAtBoot) String() string

type KCurrentMixedModeState added in v0.5.1

type KCurrentMixedModeState uint32
const (
	// Deprecated.
	KCurrentMixedModeStateRecord KCurrentMixedModeState = 1
)

func (KCurrentMixedModeState) String added in v0.5.1

func (e KCurrentMixedModeState) String() string

type KCurrentUserFolder added in v0.5.1

type KCurrentUserFolder uint32
const (
	KCurrentUserFolderLocation KCurrentUserFolder = 'c'<<24 | 'u'<<16 | 's'<<8 | 'f' // 'cusf'
)

func (KCurrentUserFolder) String added in v0.5.1

func (e KCurrentUserFolder) String() string

type KCustomBadgeResource added in v0.5.1

type KCustomBadgeResource int32
const (
	KCustomBadgeResourceID      KCustomBadgeResource = -16455
	KCustomBadgeResourceType    KCustomBadgeResource = 'b'<<24 | 'a'<<16 | 'd'<<8 | 'g' // 'badg'
	KCustomBadgeResourceVersion KCustomBadgeResource = 0
)

func (KCustomBadgeResource) String added in v0.5.1

func (e KCustomBadgeResource) String() string

type KCustomIcon added in v0.5.1

type KCustomIcon int32
const (
	KCustomIconResource KCustomIcon = -16455
)

func (KCustomIcon) String added in v0.5.1

func (e KCustomIcon) String() string

type KDMGenErr

type KDMGenErr int32
const (
	KDMCantBlock                   KDMGenErr = -6224
	KDMDisplayAlreadyInstalledErr  KDMGenErr = -6230
	KDMDisplayNotFoundErr          KDMGenErr = -6229
	KDMDriverNotDisplayMgrAwareErr KDMGenErr = -6228
	KDMFoundErr                    KDMGenErr = -6232
	KDMGenErrValue                 KDMGenErr = -6220
	KDMMainDisplayCannotMoveErr    KDMGenErr = -6231
	KDMMirroringBlocked            KDMGenErr = -6223
	KDMMirroringNotOn              KDMGenErr = -6225
	KDMMirroringOnAlready          KDMGenErr = -6221
	KDMNoDeviceTableclothErr       KDMGenErr = -6231
	KDMNotFoundErr                 KDMGenErr = -6229
	KDMSWNotInitializedErr         KDMGenErr = -6227
	KDMWrongNumberOfDisplays       KDMGenErr = -6222
	KSysSWTooOld                   KDMGenErr = -6226
)

func (KDMGenErr) String

func (e KDMGenErr) String() string

type KDOSJapanese added in v0.5.1

type KDOSJapanese uint32
const (
	KDOSJapanesePalmVariant     KDOSJapanese = 1
	KDOSJapaneseStandardVariant KDOSJapanese = 0
)

func (KDOSJapanese) String added in v0.5.1

func (e KDOSJapanese) String() string

type KDSp

type KDSp int32
const (
	KDSpConfirmSwitchWarning      KDSp = -30448
	KDSpContextAlreadyReservedErr KDSp = -30444
	KDSpContextNotFoundErr        KDSp = -30446
	KDSpContextNotReservedErr     KDSp = -30445
	KDSpFrameRateNotReadyErr      KDSp = -30447
	KDSpInternalErr               KDSp = -30449
	KDSpInvalidAttributesErr      KDSp = -30443
	KDSpInvalidContextErr         KDSp = -30442
	KDSpNotInitializedErr         KDSp = -30440
	KDSpStereoContextErr          KDSp = -30450
	KDSpSystemSWTooOldErr         KDSp = -30441
)

func (KDSp) String

func (e KDSp) String() string

type KDTP

type KDTP int32
const (
	KDTPAbortJobErr  KDTP = 128
	KDTPHoldJobErr   KDTP = -4200
	KDTPStopQueueErr KDTP = -4201
	KDTPTryAgainErr  KDTP = -4202
)

func (KDTP) String

func (e KDTP) String() string

type KDesktopFolderType added in v0.5.1

type KDesktopFolderType uint32
const (
	// Deprecated.
	KApplicationsFolderType KDesktopFolderType = 'a'<<24 | 'p'<<16 | 'p'<<8 | 's' // 'apps'
	// Deprecated.
	KChewableItemsFolderType KDesktopFolderType = 'f'<<24 | 'l'<<16 | 'n'<<8 | 't' // 'flnt'
	// Deprecated.
	KCurrentUserFolderType KDesktopFolderType = 'c'<<24 | 'u'<<16 | 's'<<8 | 'r' // 'cusr'
	// Deprecated.
	KDesktopFolderTypeValue KDesktopFolderType = 'd'<<24 | 'e'<<16 | 's'<<8 | 'k' // 'desk'
	// Deprecated.
	KDomainLibraryFolderType KDesktopFolderType = 'd'<<24 | 'l'<<16 | 'i'<<8 | 'b' // 'dlib'
	// Deprecated.
	KDomainTopLevelFolderType KDesktopFolderType = 'd'<<24 | 't'<<16 | 'o'<<8 | 'p' // 'dtop'
	// Deprecated.
	KFontsFolderType KDesktopFolderType = 'f'<<24 | 'o'<<16 | 'n'<<8 | 't' // 'font'
	// Deprecated.
	KPreferencesFolderType KDesktopFolderType = 'p'<<24 | 'r'<<16 | 'e'<<8 | 'f' // 'pref'
	// Deprecated.
	KSharedUserDataFolderType KDesktopFolderType = 's'<<24 | 'd'<<16 | 'a'<<8 | 't' // 'sdat'
	// Deprecated.
	KSystemPreferencesFolderType KDesktopFolderType = 's'<<24 | 'p'<<16 | 'r'<<8 | 'f' // 'sprf'
	// Deprecated.
	KTemporaryFolderType KDesktopFolderType = 't'<<24 | 'e'<<16 | 'm'<<8 | 'p' // 'temp'
	// Deprecated.
	KTemporaryItemsInCacheDataFolderType KDesktopFolderType = 'v'<<24 | 't'<<16 | 'm'<<8 | 'p' // 'vtmp'
	// Deprecated.
	KTrashFolderType KDesktopFolderType = 't'<<24 | 'r'<<16 | 's'<<8 | 'h' // 'trsh'
	// Deprecated.
	KUsersFolderType KDesktopFolderType = 'u'<<24 | 's'<<16 | 'r'<<8 | 's' // 'usrs'
	// Deprecated.
	KVolumeRootFolderType KDesktopFolderType = 'r'<<24 | 'o'<<16 | 'o'<<8 | 't' // 'root'
	// Deprecated.
	KWhereToEmptyTrashFolderType KDesktopFolderType = 'e'<<24 | 'm'<<16 | 'p'<<8 | 't' // 'empt'
)

func (KDesktopFolderType) String added in v0.5.1

func (e KDesktopFolderType) String() string

type KDesktopIconResource

type KDesktopIconResource int32
const (
	KDesktopIconResourceValue       KDesktopIconResource = -3992
	KGenericFileServerIconResource  KDesktopIconResource = -3972
	KGenericHardDiskIconResource    KDesktopIconResource = -3995
	KGenericMoverObjectIconResource KDesktopIconResource = -3969
	KGenericSuitcaseIconResource    KDesktopIconResource = -3970
	KOpenFolderIconResource         KDesktopIconResource = -3997
)

func (KDesktopIconResource) String

func (e KDesktopIconResource) String() string

type KDeveloper added in v0.5.1

type KDeveloper uint32
const (
	// Deprecated.
	KDeveloperApplicationsFolderType KDeveloper = 'd'<<24 | 'a'<<16 | 'p'<<8 | 'p' // 'dapp'
	// Deprecated.
	KDeveloperDocsFolderType KDeveloper = 'd'<<24 | 'd'<<16 | 'o'<<8 | 'c' // 'ddoc'
	// Deprecated.
	KDeveloperFolderType KDeveloper = 'd'<<24 | 'e'<<16 | 'v'<<8 | 'f' // 'devf'
	// Deprecated.
	KDeveloperHelpFolderType KDeveloper = 'd'<<24 | 'e'<<16 | 'v'<<8 | 'h' // 'devh'
)

func (KDeveloper) String added in v0.5.1

func (e KDeveloper) String() string

type KDictionariesFolderType added in v0.5.1

type KDictionariesFolderType uint32
const (
	KDictionariesFolderTypeValue KDictionariesFolderType = 'd'<<24 | 'i'<<16 | 'c'<<8 | 't' // 'dict'
	KLogsFolderType              KDictionariesFolderType = 'l'<<24 | 'o'<<16 | 'g'<<8 | 's' // 'logs'
	KPreferencePanesFolderType   KDictionariesFolderType = 'p'<<24 | 'p'<<16 | 'a'<<8 | 'n' // 'ppan'
)

func (KDictionariesFolderType) String added in v0.5.1

func (e KDictionariesFolderType) String() string

type KDocumentsFolderType added in v0.5.1

type KDocumentsFolderType uint32
const (
	// Deprecated.
	KDocumentsFolderTypeValue KDocumentsFolderType = 'd'<<24 | 'o'<<16 | 'c'<<8 | 's' // 'docs'
	// Deprecated.
	KInternetSitesFolderType KDocumentsFolderType = 's'<<24 | 'i'<<16 | 't'<<8 | 'e' // 'site'
	// Deprecated.
	KMovieDocumentsFolderType KDocumentsFolderType = 'm'<<24 | 'd'<<16 | 'o'<<8 | 'c' // 'mdoc'
	// Deprecated.
	KMusicDocumentsFolderType KDocumentsFolderType = 0xb5646f63
	// Deprecated.
	KPictureDocumentsFolderType KDocumentsFolderType = 'p'<<24 | 'd'<<16 | 'o'<<8 | 'c' // 'pdoc'
	// Deprecated.
	KPublicFolderType KDocumentsFolderType = 'p'<<24 | 'u'<<16 | 'b'<<8 | 'b' // 'pubb'
)

func (KDocumentsFolderType) String added in v0.5.1

func (e KDocumentsFolderType) String() string

type KDropBoxFolder added in v0.5.1

type KDropBoxFolder uint32
const (
	// Deprecated.
	KDropBoxFolderType KDropBoxFolder = 'd'<<24 | 'r'<<16 | 'o'<<8 | 'p' // 'drop'
)

func (KDropBoxFolder) String added in v0.5.1

func (e KDropBoxFolder) String() string

type KDuration added in v0.5.1

type KDuration int32
const (
	// Deprecated.
	KDurationForever KDuration = 0x7fffffff
	// Deprecated.
	KDurationImmediate KDuration = 0
	// Deprecated.
	KDurationMicrosecond KDuration = -1
	// Deprecated.
	KDurationMillisecond KDuration = 1
)

func (KDuration) String added in v0.5.1

func (e KDuration) String() string

type KExportedFolderAliasType added in v0.5.1

type KExportedFolderAliasType uint32
const (
	KDropFolderAliasType          KExportedFolderAliasType = 'f'<<24 | 'a'<<16 | 'd'<<8 | 'r' // 'fadr'
	KExportedFolderAliasTypeValue KExportedFolderAliasType = 'f'<<24 | 'a'<<16 | 'e'<<8 | 't' // 'faet'
	KMountedFolderAliasType       KExportedFolderAliasType = 'f'<<24 | 'a'<<16 | 'm'<<8 | 'n' // 'famn'
	KSharedFolderAliasType        KExportedFolderAliasType = 'f'<<24 | 'a'<<16 | 's'<<8 | 'h' // 'fash'
)

func (KExportedFolderAliasType) String added in v0.5.1

func (e KExportedFolderAliasType) String() string

type KExtended added in v0.5.1

type KExtended uint32
const (
	KExtendedFlagHasCustomBadge KExtended = 0x100
	KExtendedFlagHasRoutingInfo KExtended = 0x4
	KExtendedFlagObjectIsBusy   KExtended = 0x80
	KExtendedFlagsAreInvalid    KExtended = 0x8000
)

func (KExtended) String added in v0.5.1

func (e KExtended) String() string

type KFAServerApp added in v0.5.1

type KFAServerApp uint32
const (
	KDoFolderActionEvent     KFAServerApp = 'f'<<24 | 'o'<<16 | 'l'<<8 | 'a' // 'fola'
	KFAAttachCommand         KFAServerApp = 'a'<<24 | 't'<<16 | 'f'<<8 | 'a' // 'atfa'
	KFAEditCommand           KFAServerApp = 'e'<<24 | 'd'<<16 | 'f'<<8 | 'a' // 'edfa'
	KFAFileParam             KFAServerApp = 'f'<<24 | 'a'<<16 | 'a'<<8 | 'l' // 'faal'
	KFAIndexParam            KFAServerApp = 'i'<<24 | 'n'<<16 | 'd'<<8 | 'x' // 'indx'
	KFARemoveCommand         KFAServerApp = 'r'<<24 | 'm'<<16 | 'f'<<8 | 'a' // 'rmfa'
	KFAServerAppValue        KFAServerApp = 's'<<24 | 's'<<16 | 'r'<<8 | 'v' // 'ssrv'
	KFASuiteCode             KFAServerApp = 'f'<<24 | 'a'<<16 | 'c'<<8 | 'o' // 'faco'
	KFolderActionCode        KFAServerApp = 'a'<<24 | 'c'<<16 | 't'<<8 | 'n' // 'actn'
	KFolderClosedEvent       KFAServerApp = 'f'<<24 | 'c'<<16 | 'l'<<8 | 'o' // 'fclo'
	KFolderItemsAddedEvent   KFAServerApp = 'f'<<24 | 'g'<<16 | 'e'<<8 | 't' // 'fget'
	KFolderItemsRemovedEvent KFAServerApp = 'f'<<24 | 'l'<<16 | 'o'<<8 | 's' // 'flos'
	KFolderOpenedEvent       KFAServerApp = 'f'<<24 | 'o'<<16 | 'p'<<8 | 'n' // 'fopn'
	KFolderWindowMovedEvent  KFAServerApp = 'f'<<24 | 's'<<16 | 'i'<<8 | 'z' // 'fsiz'
	KItemList                KFAServerApp = 'f'<<24 | 'l'<<16 | 's'<<8 | 't' // 'flst'
	KNewSizeParameter        KFAServerApp = 'f'<<24 | 'n'<<16 | 's'<<8 | 'z' // 'fnsz'
)

func (KFAServerApp) String added in v0.5.1

func (e KFAServerApp) String() string

type KFB

type KFB int32
const (
	KFBCaccessCanceled        KFB = -30521
	KFBCaccessorStoreFailed   KFB = -30515
	KFBCaddDocFailed          KFB = -30516
	KFBCallocFailed           KFB = -30502
	KFBCanalysisNotAvailable  KFB = -30527
	KFBCbadIndexFile          KFB = -30505
	KFBCbadIndexFileVersion   KFB = -30528
	KFBCbadParam              KFB = -30503
	KFBCbadSearchSession      KFB = -30531
	KFBCcommitFailed          KFB = -30509
	KFBCcompactionFailed      KFB = -30506
	KFBCdeletionFailed        KFB = -30510
	KFBCfileNotIndexed        KFB = -30504
	KFBCflushFailed           KFB = -30517
	KFBCillegalSessionChange  KFB = -30526
	KFBCindexCreationFailed   KFB = -30514
	KFBCindexDiskIOFailed     KFB = -30530
	KFBCindexFileDestroyed    KFB = -30522
	KFBCindexNotAvailable     KFB = -30523
	KFBCindexNotFound         KFB = -30518
	KFBCindexingCanceled      KFB = -30520
	KFBCindexingFailed        KFB = -30508
	KFBCmergingFailed         KFB = -30513
	KFBCmoveFailed            KFB = -30511
	KFBCnoIndexesFound        KFB = -30501
	KFBCnoSearchSession       KFB = -30519
	KFBCnoSuchHit             KFB = -30532
	KFBCsearchFailed          KFB = -30524
	KFBCsomeFilesNotIndexed   KFB = -30525
	KFBCsummarizationCanceled KFB = -30529
	KFBCtokenizationFailed    KFB = -30512
	KFBCvTwinExceptionErr     KFB = -30500
	KFBCvalidationFailed      KFB = -30507
)

func (KFB) String

func (e KFB) String() string

type KFM

type KFM int32
const (
	KFMFontContainerAccessErr    KFM = -985
	KFMFontTableAccessErr        KFM = -984
	KFMInvalidFontErr            KFM = -982
	KFMInvalidFontFamilyErr      KFM = -981
	KFMIterationCompleted        KFM = -980
	KFMIterationScopeModifiedErr KFM = -983
)

func (KFM) String

func (e KFM) String() string

type KFN added in v0.5.1

type KFN uint32
const (
	KFNNoImplicitAllSubscription KFN = 1
	KFNNotifyInBackground        KFN = 2
)

func (KFN) String added in v0.5.1

func (e KFN) String() string

type KFNDirectoryModified added in v0.5.1

type KFNDirectoryModified uint32
const (
	KFNDirectoryModifiedMessage KFNDirectoryModified = 1
)

func (KFNDirectoryModified) String added in v0.5.1

func (e KFNDirectoryModified) String() string

type KFNS

type KFNS int32
const (
	KFNSBadFlattenedSizeErr    KFNS = -29587
	KFNSBadProfileVersionErr   KFNS = -29583
	KFNSBadReferenceVersionErr KFNS = -29581
	KFNSDuplicateReferenceErr  KFNS = -29584
	KFNSInsufficientDataErr    KFNS = -29586
	KFNSInvalidProfileErr      KFNS = -29582
	KFNSInvalidReferenceErr    KFNS = -29580
	KFNSMismatchErr            KFNS = -29585
	KFNSNameNotFoundErr        KFNS = -29589
)

func (KFNS) String

func (e KFNS) String() string

type KFS added in v0.5.1

type KFS uint32
const (
	KFSAllowConcurrentAsyncIOBit  KFS = 3
	KFSAllowConcurrentAsyncIOMask KFS = 0x8
	KFSForceReadBit               KFS = 6
	KFSForceReadMask              KFS = 0x40
	KFSNewLineBit                 KFS = 7
	KFSNewLineCharMask            KFS = 0xff00
	KFSNewLineMask                KFS = 0x80
	KFSNoCacheBit                 KFS = 5
	KFSNoCacheMask                KFS = 0x20
	KFSPleaseCacheBit             KFS = 4
	KFSPleaseCacheMask            KFS = 0x10
	KFSRdVerifyBit                KFS = 6
	KFSRdVerifyMask               KFS = 0x40
)

func (KFS) String added in v0.5.1

func (e KFS) String() string

type KFSAliasInfo added in v0.5.1

type KFSAliasInfo uint32
const (
	// Deprecated.
	KFSAliasInfoFSInfo KFSAliasInfo = 0x20
	// Deprecated.
	KFSAliasInfoFinderInfo KFSAliasInfo = 0x4
	// Deprecated.
	KFSAliasInfoIDs KFSAliasInfo = 0x10
	// Deprecated.
	KFSAliasInfoIsDirectory KFSAliasInfo = 0x8
	// Deprecated.
	KFSAliasInfoNone KFSAliasInfo = 0
	// Deprecated.
	KFSAliasInfoTargetCreateDate KFSAliasInfo = 0x2
	// Deprecated.
	KFSAliasInfoVolumeCreateDate KFSAliasInfo = 0x1
	// Deprecated.
	KFSAliasInfoVolumeFlags KFSAliasInfo = 0x40
)

func (KFSAliasInfo) String added in v0.5.1

func (e KFSAliasInfo) String() string

type KFSAlloc added in v0.5.1

type KFSAlloc uint32
const (
	KFSAllocAllOrNothingMask KFSAlloc = 0x1
	KFSAllocContiguousMask   KFSAlloc = 0x2
	KFSAllocDefaultFlags     KFSAlloc = 0
	KFSAllocNoRoundUpMask    KFSAlloc = 0x4
	KFSAllocReservedMask     KFSAlloc = 0xfff8
)

func (KFSAlloc) String added in v0.5.1

func (e KFSAlloc) String() string

type KFSCatInfo added in v0.5.1

type KFSCatInfo int32
const (
	KFSCatInfoAccessDate        KFSCatInfo = 0x100
	KFSCatInfoAllDates          KFSCatInfo = 0x3e0
	KFSCatInfoAttrMod           KFSCatInfo = 0x80
	KFSCatInfoBackupDate        KFSCatInfo = 0x200
	KFSCatInfoContentMod        KFSCatInfo = 0x40
	KFSCatInfoCreateDate        KFSCatInfo = 0x20
	KFSCatInfoDataSizes         KFSCatInfo = 0x4000
	KFSCatInfoFSFileSecurityRef KFSCatInfo = 0x400000
	KFSCatInfoFinderInfo        KFSCatInfo = 0x800
	KFSCatInfoFinderXInfo       KFSCatInfo = 0x1000
	KFSCatInfoGettableInfo      KFSCatInfo = 0x3ffff
	KFSCatInfoNodeFlags         KFSCatInfo = 0x2
	KFSCatInfoNodeID            KFSCatInfo = 0x10
	KFSCatInfoNone              KFSCatInfo = 0
	KFSCatInfoParentDirID       KFSCatInfo = 0x8
	KFSCatInfoPermissions       KFSCatInfo = 0x400
	KFSCatInfoReserved          KFSCatInfo = -262144
	KFSCatInfoRsrcSizes         KFSCatInfo = 0x8000
	KFSCatInfoSetOwnership      KFSCatInfo = 0x100000
	KFSCatInfoSettableInfo      KFSCatInfo = 0x1fe3
	KFSCatInfoSharingFlags      KFSCatInfo = 0x10000
	KFSCatInfoTextEncoding      KFSCatInfo = 0x1
	KFSCatInfoUserAccess        KFSCatInfo = 0x80000
	KFSCatInfoUserPrivs         KFSCatInfo = 0x20000
	KFSCatInfoValence           KFSCatInfo = 0x2000
	KFSCatInfoVolume            KFSCatInfo = 0x4
)

func (KFSCatInfo) String added in v0.5.1

func (e KFSCatInfo) String() string

type KFSEjectVolumeForce added in v0.5.1

type KFSEjectVolumeForce uint32
const (
	KFSEjectVolumeForceEject KFSEjectVolumeForce = 1
)

func (KFSEjectVolumeForce) String added in v0.5.1

func (e KFSEjectVolumeForce) String() string

type KFSEventStreamCreate added in v0.5.1

type KFSEventStreamCreate uint32
const (
	// KFSEventStreamCreateFlagFileEvents: # Discussion
	KFSEventStreamCreateFlagFileEvents  KFSEventStreamCreate = 0x10
	KFSEventStreamCreateFlagFullHistory KFSEventStreamCreate = 0x80
	// KFSEventStreamCreateFlagIgnoreSelf: # Discussion
	KFSEventStreamCreateFlagIgnoreSelf KFSEventStreamCreate = 0x8
	KFSEventStreamCreateFlagMarkSelf   KFSEventStreamCreate = 0x20
	// KFSEventStreamCreateFlagNoDefer: # Discussion
	KFSEventStreamCreateFlagNoDefer KFSEventStreamCreate = 0x2
	// KFSEventStreamCreateFlagNone: # Discussion
	KFSEventStreamCreateFlagNone KFSEventStreamCreate = 0
	// KFSEventStreamCreateFlagUseCFTypes: # Discussion
	KFSEventStreamCreateFlagUseCFTypes      KFSEventStreamCreate = 0x1
	KFSEventStreamCreateFlagUseExtendedData KFSEventStreamCreate = 0x40
	// KFSEventStreamCreateFlagWatchRoot: # Discussion
	KFSEventStreamCreateFlagWatchRoot KFSEventStreamCreate = 0x4
	KFSEventStreamCreateWithDocID     KFSEventStreamCreate = 0x100
)

func (KFSEventStreamCreate) String added in v0.5.1

func (e KFSEventStreamCreate) String() string

type KFSEventStreamEventFlag

type KFSEventStreamEventFlag uint32
const (
	// KFSEventStreamEventFlagEventIdsWrapped: # Discussion
	KFSEventStreamEventFlagEventIdsWrapped KFSEventStreamEventFlag = 0x8
	// KFSEventStreamEventFlagHistoryDone: # Discussion
	KFSEventStreamEventFlagHistoryDone        KFSEventStreamEventFlag = 0x10
	KFSEventStreamEventFlagItemChangeOwner    KFSEventStreamEventFlag = 0x4000
	KFSEventStreamEventFlagItemCloned         KFSEventStreamEventFlag = 0x400000
	KFSEventStreamEventFlagItemCreated        KFSEventStreamEventFlag = 0x100
	KFSEventStreamEventFlagItemFinderInfoMod  KFSEventStreamEventFlag = 0x2000
	KFSEventStreamEventFlagItemInodeMetaMod   KFSEventStreamEventFlag = 0x400
	KFSEventStreamEventFlagItemIsDir          KFSEventStreamEventFlag = 0x20000
	KFSEventStreamEventFlagItemIsFile         KFSEventStreamEventFlag = 0x10000
	KFSEventStreamEventFlagItemIsHardlink     KFSEventStreamEventFlag = 0x100000
	KFSEventStreamEventFlagItemIsLastHardlink KFSEventStreamEventFlag = 0x200000
	KFSEventStreamEventFlagItemIsSymlink      KFSEventStreamEventFlag = 0x40000
	KFSEventStreamEventFlagItemModified       KFSEventStreamEventFlag = 0x1000
	KFSEventStreamEventFlagItemRemoved        KFSEventStreamEventFlag = 0x200
	KFSEventStreamEventFlagItemRenamed        KFSEventStreamEventFlag = 0x800
	KFSEventStreamEventFlagItemXattrMod       KFSEventStreamEventFlag = 0x8000
	KFSEventStreamEventFlagKernelDropped      KFSEventStreamEventFlag = 0x4
	// KFSEventStreamEventFlagMount: # Discussion
	KFSEventStreamEventFlagMount KFSEventStreamEventFlag = 0x40
	// KFSEventStreamEventFlagMustScanSubDirs: # Discussion
	KFSEventStreamEventFlagMustScanSubDirs KFSEventStreamEventFlag = 0x1
	// KFSEventStreamEventFlagNone: # Discussion
	KFSEventStreamEventFlagNone     KFSEventStreamEventFlag = 0
	KFSEventStreamEventFlagOwnEvent KFSEventStreamEventFlag = 0x80000
	// KFSEventStreamEventFlagRootChanged: # Discussion
	KFSEventStreamEventFlagRootChanged KFSEventStreamEventFlag = 0x20
	// KFSEventStreamEventFlagUnmount: # Discussion
	KFSEventStreamEventFlagUnmount KFSEventStreamEventFlag = 0x80
	// KFSEventStreamEventFlagUserDropped: # Discussion
	KFSEventStreamEventFlagUserDropped KFSEventStreamEventFlag = 0x2
)

func (KFSEventStreamEventFlag) String

func (e KFSEventStreamEventFlag) String() string

type KFSEventStreamEventIdSince added in v0.5.1

type KFSEventStreamEventIdSince uint
const (
	KFSEventStreamEventIdSinceNow KFSEventStreamEventIdSince = 0xffffffffffffffff
)

func (KFSEventStreamEventIdSince) String added in v0.5.1

type KFSFileOperation added in v0.5.1

type KFSFileOperation uint32
const (
	KFSFileOperationDefaultOptions             KFSFileOperation = 0
	KFSFileOperationDoNotMoveAcrossVolumes     KFSFileOperation = 0x4
	KFSFileOperationOverwrite                  KFSFileOperation = 0x1
	KFSFileOperationSkipPreflight              KFSFileOperation = 0x8
	KFSFileOperationSkipSourcePermissionErrors KFSFileOperation = 0x2
)

func (KFSFileOperation) String added in v0.5.1

func (e KFSFileOperation) String() string

type KFSInvalidVolumeRef added in v0.5.1

type KFSInvalidVolumeRef uint32
const (
	KFSInvalidVolumeRefNum KFSInvalidVolumeRef = 0
)

func (KFSInvalidVolumeRef) String added in v0.5.1

func (e KFSInvalidVolumeRef) String() string

type KFSIterate added in v0.5.1

type KFSIterate int32
const (
	KFSIterateDelete   KFSIterate = 2
	KFSIterateFlat     KFSIterate = 0
	KFSIterateReserved KFSIterate = -4
	KFSIterateSubtree  KFSIterate = 1
)

func (KFSIterate) String added in v0.5.1

func (e KFSIterate) String() string

type KFSMountServer added in v0.5.1

type KFSMountServer uint32
const (
	KFSMountServerMarkDoNotDisplay     KFSMountServer = 1
	KFSMountServerMountOnMountDir      KFSMountServer = 4
	KFSMountServerSuppressConnectionUI KFSMountServer = 64
)

func (KFSMountServer) String added in v0.5.1

func (e KFSMountServer) String() string

type KFSMountServerMountWithout added in v0.5.1

type KFSMountServerMountWithout uint32
const (
	KFSMountServerMountWithoutNotification KFSMountServerMountWithout = 2
)

func (KFSMountServerMountWithout) String added in v0.5.1

type KFSNodeInSharedBit added in v0.5.1

type KFSNodeInSharedBit uint32
const (
	KFSNodeInSharedBitValue KFSNodeInSharedBit = 2
	KFSNodeInSharedMask     KFSNodeInSharedBit = 0x4
	KFSNodeIsMountedBit     KFSNodeInSharedBit = 3
	KFSNodeIsMountedMask    KFSNodeInSharedBit = 0x8
	KFSNodeIsSharePointBit  KFSNodeInSharedBit = 5
	KFSNodeIsSharePointMask KFSNodeInSharedBit = 0x20
)

func (KFSNodeInSharedBit) String added in v0.6.17

func (e KFSNodeInSharedBit) String() string

type KFSNodeLockedBit added in v0.5.1

type KFSNodeLockedBit uint32
const (
	KFSNodeCopyProtectBit  KFSNodeLockedBit = 6
	KFSNodeCopyProtectMask KFSNodeLockedBit = 0x40
	KFSNodeDataOpenBit     KFSNodeLockedBit = 3
	KFSNodeDataOpenMask    KFSNodeLockedBit = 0x8
	KFSNodeForkOpenBit     KFSNodeLockedBit = 7
	KFSNodeForkOpenMask    KFSNodeLockedBit = 0x80
	KFSNodeHardLinkBit     KFSNodeLockedBit = 8
	KFSNodeHardLinkMask    KFSNodeLockedBit = 0x100
	KFSNodeIsDirectoryBit  KFSNodeLockedBit = 4
	KFSNodeIsDirectoryMask KFSNodeLockedBit = 0x10
	KFSNodeLockedBitValue  KFSNodeLockedBit = 0
	KFSNodeLockedMask      KFSNodeLockedBit = 0x1
	KFSNodeResOpenBit      KFSNodeLockedBit = 2
	KFSNodeResOpenMask     KFSNodeLockedBit = 0x4
)

func (KFSNodeLockedBit) String added in v0.6.17

func (e KFSNodeLockedBit) String() string

type KFSOperationStage added in v0.5.1

type KFSOperationStage uint32
const (
	KFSOperationStageComplete     KFSOperationStage = 3
	KFSOperationStagePreflighting KFSOperationStage = 1
	KFSOperationStageRunning      KFSOperationStage = 2
	KFSOperationStageUndefined    KFSOperationStage = 0
)

func (KFSOperationStage) String added in v0.5.1

func (e KFSOperationStage) String() string

type KFSPathMakeRef added in v0.5.1

type KFSPathMakeRef uint32
const (
	KFSPathMakeRefDefaultOptions         KFSPathMakeRef = 0
	KFSPathMakeRefDoNotFollowLeafSymlink KFSPathMakeRef = 0x1
)

func (KFSPathMakeRef) String added in v0.5.1

func (e KFSPathMakeRef) String() string

type KFSReplaceObject added in v0.5.1

type KFSReplaceObject uint32
const (
	KFSReplaceObjectDefaultOptions              KFSReplaceObject = 0
	KFSReplaceObjectDoNotCheckObjectWriteAccess KFSReplaceObject = 0x10
	KFSReplaceObjectPreservePermissionInfo      KFSReplaceObject = 0x8
	KFSReplaceObjectReplaceMetadata             KFSReplaceObject = 0x1
	KFSReplaceObjectReplacePermissionInfo       KFSReplaceObject = 0x4
	KFSReplaceObjectSaveOriginalAsABackup       KFSReplaceObject = 0x2
)

func (KFSReplaceObject) String added in v0.5.1

func (e KFSReplaceObject) String() string

type KFSUnmountVolumeForce added in v0.5.1

type KFSUnmountVolumeForce uint32
const (
	KFSUnmountVolumeForceUnmount KFSUnmountVolumeForce = 1
)

func (KFSUnmountVolumeForce) String added in v0.5.1

func (e KFSUnmountVolumeForce) String() string

type KFSVolFlag added in v0.5.1

type KFSVolFlag uint32
const (
	KFSVolFlagDefaultVolumeBit     KFSVolFlag = 5
	KFSVolFlagDefaultVolumeMask    KFSVolFlag = 0x20
	KFSVolFlagFilesOpenBit         KFSVolFlag = 6
	KFSVolFlagFilesOpenMask        KFSVolFlag = 0x40
	KFSVolFlagHardwareLockedBit    KFSVolFlag = 7
	KFSVolFlagHardwareLockedMask   KFSVolFlag = 0x80
	KFSVolFlagJournalingActiveBit  KFSVolFlag = 14
	KFSVolFlagJournalingActiveMask KFSVolFlag = 0x4000
	KFSVolFlagSoftwareLockedBit    KFSVolFlag = 15
	KFSVolFlagSoftwareLockedMask   KFSVolFlag = 0x8000
)

func (KFSVolFlag) String added in v0.5.1

func (e KFSVolFlag) String() string

type KFSVolInfo added in v0.5.1

type KFSVolInfo uint32
const (
	KFSVolInfoBackupDate   KFSVolInfo = 0x4
	KFSVolInfoBlocks       KFSVolInfo = 0x80
	KFSVolInfoCheckedDate  KFSVolInfo = 0x8
	KFSVolInfoCreateDate   KFSVolInfo = 0x1
	KFSVolInfoDataClump    KFSVolInfo = 0x400
	KFSVolInfoDirCount     KFSVolInfo = 0x20
	KFSVolInfoDriveInfo    KFSVolInfo = 0x8000
	KFSVolInfoFSInfo       KFSVolInfo = 0x4000
	KFSVolInfoFileCount    KFSVolInfo = 0x10
	KFSVolInfoFinderInfo   KFSVolInfo = 0x1000
	KFSVolInfoFlags        KFSVolInfo = 0x2000
	KFSVolInfoGettableInfo KFSVolInfo = 0xffff
	KFSVolInfoModDate      KFSVolInfo = 0x2
	KFSVolInfoNextAlloc    KFSVolInfo = 0x100
	KFSVolInfoNextID       KFSVolInfo = 0x800
	KFSVolInfoNone         KFSVolInfo = 0
	KFSVolInfoRsrcClump    KFSVolInfo = 0x200
	KFSVolInfoSettableInfo KFSVolInfo = 0x3004
	KFSVolInfoSizes        KFSVolInfo = 0x40
)

func (KFSVolInfo) String added in v0.5.1

func (e KFSVolInfo) String() string

type KFirstMagicBusyFiletype added in v0.5.1

type KFirstMagicBusyFiletype uint32
const (
	KFirstMagicBusyFiletypeValue KFirstMagicBusyFiletype = 'b'<<24 | 'z'<<16 | 'y'<<8 | ' ' // 'bzy '
	KLastMagicBusyFiletype       KFirstMagicBusyFiletype = 'b'<<24 | 'z'<<16 | 'y'<<8 | '?' // 'bzy?'
)

func (KFirstMagicBusyFiletype) String added in v0.5.1

func (e KFirstMagicBusyFiletype) String() string

type KFolder added in v0.5.1

type KFolder uint32
const (
	// Deprecated.
	KFolderInLocalOrRemoteUserFolder KFolder = 160
	// Deprecated.
	KFolderInRemoteUserFolderIfAvailable KFolder = 0x80
	// Deprecated.
	KFolderInRemoteUserFolderIfAvailableBit KFolder = 7
	// Deprecated.
	KFolderInUserFolder KFolder = 0x20
	// Deprecated.
	KFolderInUserFolderBit KFolder = 5
	// Deprecated.
	KFolderManagerFolderInMacOS9FolderIfMacOSXIsInstalledBit KFolder = 10
	// Deprecated.
	KFolderManagerFolderInMacOS9FolderIfMacOSXIsInstalledMask KFolder = 0x400
	// Deprecated.
	KFolderManagerNewlyCreatedFolderIsLocalizedBit KFolder = 12
	// Deprecated.
	KFolderManagerNewlyCreatedFolderShouldHaveDotLocalizedCreatedWithinMask KFolder = 4096
	// Deprecated.
	KFolderManagerNotCreatedOnRemoteVolumesBit KFolder = 11
	// Deprecated.
	KFolderManagerNotCreatedOnRemoteVolumesMask KFolder = 2048
	// Deprecated.
	KFolderMustStayOnSameVolume KFolder = 0x200
	// Deprecated.
	KFolderMustStayOnSameVolumeBit KFolder = 9
	// Deprecated.
	KFolderNeverMatchedInIdentifyFolder KFolder = 0x100
	// Deprecated.
	KFolderNeverMatchedInIdentifyFolderBit KFolder = 8
	// Deprecated.
	KFolderTrackedByAlias KFolder = 0x40
	// Deprecated.
	KFolderTrackedByAliasBit KFolder = 6
)

func (KFolder) String added in v0.5.1

func (e KFolder) String() string

type KForkInfoFlags added in v0.5.1

type KForkInfoFlags uint32
const (
	KForkInfoFlagsFileLockedBit   KForkInfoFlags = 5
	KForkInfoFlagsFileLockedMask  KForkInfoFlags = 32
	KForkInfoFlagsLargeFileBit    KForkInfoFlags = 3
	KForkInfoFlagsLargeFileMask   KForkInfoFlags = 8
	KForkInfoFlagsModifiedBit     KForkInfoFlags = 7
	KForkInfoFlagsModifiedMask    KForkInfoFlags = 128
	KForkInfoFlagsOwnClumpBit     KForkInfoFlags = 6
	KForkInfoFlagsOwnClumpMask    KForkInfoFlags = 64
	KForkInfoFlagsResourceBit     KForkInfoFlags = 1
	KForkInfoFlagsResourceMask    KForkInfoFlags = 2
	KForkInfoFlagsSharedWriteBit  KForkInfoFlags = 4
	KForkInfoFlagsSharedWriteMask KForkInfoFlags = 16
	KForkInfoFlagsWriteBit        KForkInfoFlags = 0
	KForkInfoFlagsWriteLockedBit  KForkInfoFlags = 2
	KForkInfoFlagsWriteLockedMask KForkInfoFlags = 4
	KForkInfoFlagsWriteMask       KForkInfoFlags = 1
)

func (KForkInfoFlags) String added in v0.5.1

func (e KForkInfoFlags) String() string

type KFragment added in v0.5.1

type KFragment uint32
const (
	// Deprecated.
	KFragmentIsPrepared KFragment = 0
	// Deprecated.
	KFragmentNeedsPreparing KFragment = 0x2
)

func (KFragment) String added in v0.5.1

func (e KFragment) String() string

type KGenericDocumentIconResource

type KGenericDocumentIconResource int32
const (
	KFloppyIconResource               KGenericDocumentIconResource = -3998
	KGenericApplicationIconResource   KGenericDocumentIconResource = -3996
	KGenericCDROMIconResource         KGenericDocumentIconResource = -3987
	KGenericDeskAccessoryIconResource KGenericDocumentIconResource = -3991
	KGenericDocumentIconResourceValue KGenericDocumentIconResource = -4000
	KGenericEditionFileIconResource   KGenericDocumentIconResource = -3989
	KGenericFolderIconResource        KGenericDocumentIconResource = -3999
	KGenericRAMDiskIconResource       KGenericDocumentIconResource = -3988
	KGenericStationeryIconResource    KGenericDocumentIconResource = -3985
	KPrivateFolderIconResource        KGenericDocumentIconResource = -3994
	KTrashIconResource                KGenericDocumentIconResource = -3993
)

func (KGenericDocumentIconResource) String

type KGenericFolderIcon

type KGenericFolderIcon uint32
const (
	KDropFolderIcon         KGenericFolderIcon = 'd'<<24 | 'b'<<16 | 'o'<<8 | 'x' // 'dbox'
	KGenericFolderIconValue KGenericFolderIcon = 'f'<<24 | 'l'<<16 | 'd'<<8 | 'r' // 'fldr'
	KMountedFolderIcon      KGenericFolderIcon = 'm'<<24 | 'n'<<16 | 't'<<8 | 'd' // 'mntd'
	KOpenFolderIcon         KGenericFolderIcon = 'o'<<24 | 'f'<<16 | 'l'<<8 | 'd' // 'ofld'
	KOwnedFolderIcon        KGenericFolderIcon = 'o'<<24 | 'w'<<16 | 'n'<<8 | 'd' // 'ownd'
	KPrivateFolderIcon      KGenericFolderIcon = 'p'<<24 | 'r'<<16 | 'v'<<8 | 'f' // 'prvf'
	KSharedFolderIcon       KGenericFolderIcon = 's'<<24 | 'h'<<16 | 'f'<<8 | 'l' // 'shfl'
)

func (KGenericFolderIcon) String

func (e KGenericFolderIcon) String() string

type KGenericPreferencesIconResource

type KGenericPreferencesIconResource int32
const (
	KAppleMenuFolderIconResource         KGenericPreferencesIconResource = -3982
	KGenericExtensionIconResource        KGenericPreferencesIconResource = -16415
	KGenericPreferencesIconResourceValue KGenericPreferencesIconResource = -3971
	KGenericQueryDocumentIconResource    KGenericPreferencesIconResource = -16506
	KHelpIconResource                    KGenericPreferencesIconResource = -20271
	KSystemFolderIconResource            KGenericPreferencesIconResource = -3983
)

func (KGenericPreferencesIconResource) String

type KGetDebugOption added in v0.5.1

type KGetDebugOption uint32
const (
	// Deprecated.
	KGetDebugOptionValue KGetDebugOption = 1
	// Deprecated.
	KSetDebugOption KGetDebugOption = 2
)

func (KGetDebugOption) String added in v0.5.1

func (e KGetDebugOption) String() string

type KHIDSuccess

type KHIDSuccess int32
const (
	KHIDBadLogPhysValuesErr         KHIDSuccess = -13942
	KHIDBadLogicalMaximumErr        KHIDSuccess = -13933
	KHIDBadLogicalMinimumErr        KHIDSuccess = -13934
	KHIDBadParameterErr             KHIDSuccess = -13938
	KHIDBaseError                   KHIDSuccess = -13950
	KHIDBufferTooSmallErr           KHIDSuccess = -13948
	KHIDEndOfDescriptorErr          KHIDSuccess = -13936
	KHIDIncompatibleReportErr       KHIDSuccess = -13943
	KHIDInvalidPreparsedDataErr     KHIDSuccess = -13944
	KHIDInvalidRangePageErr         KHIDSuccess = -13923
	KHIDInvalidReportLengthErr      KHIDSuccess = -13940
	KHIDInvalidReportTypeErr        KHIDSuccess = -13941
	KHIDInvertedLogicalRangeErr     KHIDSuccess = -13932
	KHIDInvertedPhysicalRangeErr    KHIDSuccess = -13931
	KHIDInvertedUsageRangeErr       KHIDSuccess = -13929
	KHIDNotEnoughMemoryErr          KHIDSuccess = -13937
	KHIDNotValueArrayErr            KHIDSuccess = -13945
	KHIDNullPointerErr              KHIDSuccess = -13939
	KHIDNullStateErr                KHIDSuccess = -13949
	KHIDReportCountZeroErr          KHIDSuccess = -13925
	KHIDReportIDZeroErr             KHIDSuccess = -13924
	KHIDReportSizeZeroErr           KHIDSuccess = -13926
	KHIDSuccessValue                KHIDSuccess = 0
	KHIDUnmatchedDesignatorRangeErr KHIDSuccess = -13927
	KHIDUnmatchedStringRangeErr     KHIDSuccess = -13928
	KHIDUnmatchedUsageRangeErr      KHIDSuccess = -13930
	KHIDUsageNotFoundErr            KHIDSuccess = -13946
	KHIDUsagePageZeroErr            KHIDSuccess = -13935
	KHIDValueOutOfRangeErr          KHIDSuccess = -13947
)

func (KHIDSuccess) String added in v0.6.17

func (e KHIDSuccess) String() string

type KHIDVersionIncompatibleErr

type KHIDVersionIncompatibleErr int32
const (
	KHIDDeviceNotReady              KHIDVersionIncompatibleErr = -13910
	KHIDVersionIncompatibleErrValue KHIDVersionIncompatibleErr = -13909
)

func (KHIDVersionIncompatibleErr) String added in v0.6.17

type KHandleIsResourceBit added in v0.5.1

type KHandleIsResourceBit uint32
const (
	// Deprecated.
	KHandleIsResourceBitValue KHandleIsResourceBit = 5
	// Deprecated.
	KHandleLockedBit KHandleIsResourceBit = 7
	// Deprecated.
	KHandlePurgeableBit KHandleIsResourceBit = 6
)

func (KHandleIsResourceBit) String added in v0.6.17

func (e KHandleIsResourceBit) String() string

type KHandleIsResourceMask added in v0.5.1

type KHandleIsResourceMask uint32
const (
	// Deprecated.
	KHandleIsResourceMaskValue KHandleIsResourceMask = 0x20
	// Deprecated.
	KHandleLockedMask KHandleIsResourceMask = 0x80
	// Deprecated.
	KHandlePurgeableMask KHandleIsResourceMask = 0x40
)

func (KHandleIsResourceMask) String added in v0.6.17

func (e KHandleIsResourceMask) String() string

type KHuge1BitMask added in v0.5.1

type KHuge1BitMask uint32
const (
	KHuge1BitMaskValue KHuge1BitMask = 'i'<<24 | 'c'<<16 | 'h'<<8 | '#' // 'ich#'
	KHuge32BitData     KHuge1BitMask = 'i'<<24 | 'h'<<16 | '3'<<8 | '2' // 'ih32'
	KHuge4BitData      KHuge1BitMask = 'i'<<24 | 'c'<<16 | 'h'<<8 | '4' // 'ich4'
	KHuge8BitData      KHuge1BitMask = 'i'<<24 | 'c'<<16 | 'h'<<8 | '8' // 'ich8'
	KHuge8BitMask      KHuge1BitMask = 'h'<<24 | '8'<<16 | 'm'<<8 | 'k' // 'h8mk'
)

func (KHuge1BitMask) String added in v0.5.1

func (e KHuge1BitMask) String() string

type KISOLatin1 added in v0.5.1

type KISOLatin1 uint32
const (
	KISOLatin1MusicCDVariant  KISOLatin1 = 1
	KISOLatin1StandardVariant KISOLatin1 = 0
)

func (KISOLatin1) String added in v0.5.1

func (e KISOLatin1) String() string

type KISOLatinArabic added in v0.5.1

type KISOLatinArabic uint32
const (
	KISOLatinArabicExplicitOrderVariant KISOLatinArabic = 2
	KISOLatinArabicImplicitOrderVariant KISOLatinArabic = 0
	KISOLatinArabicVisualOrderVariant   KISOLatinArabic = 1
)

func (KISOLatinArabic) String added in v0.5.1

func (e KISOLatinArabic) String() string

type KISOLatinHebrew added in v0.5.1

type KISOLatinHebrew uint32
const (
	KISOLatinHebrewExplicitOrderVariant KISOLatinHebrew = 2
	KISOLatinHebrewImplicitOrderVariant KISOLatinHebrew = 0
	KISOLatinHebrewVisualOrderVariant   KISOLatinHebrew = 1
)

func (KISOLatinHebrew) String added in v0.5.1

func (e KISOLatinHebrew) String() string

type KISp

type KISp int32
const (
	KISpBufferToSmallErr    KISp = -30422
	KISpDeviceActiveErr     KISp = -30428
	KISpDeviceInactiveErr   KISp = -30426
	KISpElementInListErr    KISp = -30423
	KISpElementNotInListErr KISp = -30424
	KISpInternalErr         KISp = -30420
	KISpListBusyErr         KISp = -30429
	KISpSystemActiveErr     KISp = -30427
	KISpSystemInactiveErr   KISp = -30425
	KISpSystemListErr       KISp = -30421
)

func (KISp) String

func (e KISp) String() string

type KIcon added in v0.5.1

type KIcon uint32
const (
	KIconServices128PixelDataARGB KIcon = 'i'<<24 | 'c'<<16 | '0'<<8 | '7' // 'ic07'
	KIconServices16PixelDataARGB  KIcon = 'i'<<24 | 'c'<<16 | '0'<<8 | '4' // 'ic04'
	KIconServices32PixelDataARGB  KIcon = 'i'<<24 | 'c'<<16 | '0'<<8 | '5' // 'ic05'
	KIconServices48PixelDataARGB  KIcon = 'i'<<24 | 'c'<<16 | '0'<<8 | '6' // 'ic06'
)

func (KIcon) String added in v0.5.1

func (e KIcon) String() string

type KIconFamily added in v0.5.1

type KIconFamily uint32
const (
	KIconFamilyType KIconFamily = 'i'<<24 | 'c'<<16 | 'n'<<8 | 's' // 'icns'
)

func (KIconFamily) String added in v0.5.1

func (e KIconFamily) String() string

type KIconServices

type KIconServices uint32
const (
	KIconServicesNoBadgeFlag        KIconServices = 0x1
	KIconServicesNormalUsageFlag    KIconServices = 0
	KIconServicesUpdateIfNeededFlag KIconServices = 0x2
)

func (KIconServices) String

func (e KIconServices) String() string

type KIconServices256PixelDataARGB added in v0.5.1

type KIconServices256PixelDataARGB uint32
const (
	KIconServices1024PixelDataARGB     KIconServices256PixelDataARGB = 'i'<<24 | 'c'<<16 | '1'<<8 | '0' // 'ic10'
	KIconServices256PixelDataARGBValue KIconServices256PixelDataARGB = 'i'<<24 | 'c'<<16 | '0'<<8 | '8' // 'ic08'
	KIconServices512PixelDataARGB      KIconServices256PixelDataARGB = 'i'<<24 | 'c'<<16 | '0'<<8 | '9' // 'ic09'
	KThumbnail32BitData                KIconServices256PixelDataARGB = 'i'<<24 | 't'<<16 | '3'<<8 | '2' // 'it32'
	KThumbnail8BitMask                 KIconServices256PixelDataARGB = 't'<<24 | '8'<<16 | 'm'<<8 | 'k' // 't8mk'
)

func (KIconServices256PixelDataARGB) String added in v0.5.1

type KIconServicesCatalogInfo added in v0.5.1

type KIconServicesCatalogInfo uint32
const (
	KIconServicesCatalogInfoMask KIconServicesCatalogInfo = 531550
)

func (KIconServicesCatalogInfo) String added in v0.5.1

func (e KIconServicesCatalogInfo) String() string

type KIdleKCEvent added in v0.5.1

type KIdleKCEvent uint32
const (
	KAddKCEvent                 KIdleKCEvent = 3
	KDataAccessKCEvent          KIdleKCEvent = 10
	KDefaultChangedKCEvent      KIdleKCEvent = 9
	KDeleteKCEvent              KIdleKCEvent = 4
	KIdleKCEventValue           KIdleKCEvent = 0
	KKeychainListChangedKCEvent KIdleKCEvent = 11
	KLockKCEvent                KIdleKCEvent = 1
	KPasswordChangedKCEvent     KIdleKCEvent = 6
	KSystemKCEvent              KIdleKCEvent = 8
	KUnlockKCEvent              KIdleKCEvent = 2
	KUpdateKCEvent              KIdleKCEvent = 5
)

func (KIdleKCEvent) String added in v0.5.1

func (e KIdleKCEvent) String() string

type KIdleKCEventMask added in v0.5.1

type KIdleKCEventMask uint32
const (
	KAddKCEventMask             KIdleKCEventMask = 8
	KDataAccessKCEventMask      KIdleKCEventMask = 1024
	KDefaultChangedKCEventMask  KIdleKCEventMask = 512
	KDeleteKCEventMask          KIdleKCEventMask = 16
	KEveryKCEventMask           KIdleKCEventMask = 0xffff
	KIdleKCEventMaskValue       KIdleKCEventMask = 1
	KLockKCEventMask            KIdleKCEventMask = 2
	KPasswordChangedKCEventMask KIdleKCEventMask = 64
	KSystemEventKCEventMask     KIdleKCEventMask = 256
	KUnlockKCEventMask          KIdleKCEventMask = 4
	KUpdateKCEventMask          KIdleKCEventMask = 32
)

func (KIdleKCEventMask) String added in v0.5.1

func (e KIdleKCEventMask) String() string

type KInternetLocationCreator added in v0.5.1

type KInternetLocationCreator uint32
const (
	KInternetLocationAFP          KInternetLocationCreator = 'i'<<24 | 'l'<<16 | 'a'<<8 | 'f' // 'ilaf'
	KInternetLocationAppleTalk    KInternetLocationCreator = 'i'<<24 | 'l'<<16 | 'a'<<8 | 't' // 'ilat'
	KInternetLocationCreatorValue KInternetLocationCreator = 'd'<<24 | 'r'<<16 | 'a'<<8 | 'g' // 'drag'
	KInternetLocationFTP          KInternetLocationCreator = 'i'<<24 | 'l'<<16 | 'f'<<8 | 't' // 'ilft'
	KInternetLocationFile         KInternetLocationCreator = 'i'<<24 | 'l'<<16 | 'f'<<8 | 'i' // 'ilfi'
	KInternetLocationGeneric      KInternetLocationCreator = 'i'<<24 | 'l'<<16 | 'g'<<8 | 'e' // 'ilge'
	KInternetLocationHTTP         KInternetLocationCreator = 'i'<<24 | 'l'<<16 | 'h'<<8 | 't' // 'ilht'
	KInternetLocationMail         KInternetLocationCreator = 'i'<<24 | 'l'<<16 | 'm'<<8 | 'a' // 'ilma'
	KInternetLocationNNTP         KInternetLocationCreator = 'i'<<24 | 'l'<<16 | 'n'<<8 | 'w' // 'ilnw'
	KInternetLocationNSL          KInternetLocationCreator = 'i'<<24 | 'l'<<16 | 'n'<<8 | 's' // 'ilns'
)

func (KInternetLocationCreator) String added in v0.6.17

func (e KInternetLocationCreator) String() string

type KInternetLocationHTTPIcon

type KInternetLocationHTTPIcon uint32
const (
	KInternetLocationAppleShareIcon      KInternetLocationHTTPIcon = 'i'<<24 | 'l'<<16 | 'a'<<8 | 'f' // 'ilaf'
	KInternetLocationAppleTalkZoneIcon   KInternetLocationHTTPIcon = 'i'<<24 | 'l'<<16 | 'a'<<8 | 't' // 'ilat'
	KInternetLocationFTPIcon             KInternetLocationHTTPIcon = 'i'<<24 | 'l'<<16 | 'f'<<8 | 't' // 'ilft'
	KInternetLocationFileIcon            KInternetLocationHTTPIcon = 'i'<<24 | 'l'<<16 | 'f'<<8 | 'i' // 'ilfi'
	KInternetLocationGenericIcon         KInternetLocationHTTPIcon = 'i'<<24 | 'l'<<16 | 'g'<<8 | 'e' // 'ilge'
	KInternetLocationHTTPIconValue       KInternetLocationHTTPIcon = 'i'<<24 | 'l'<<16 | 'h'<<8 | 't' // 'ilht'
	KInternetLocationMailIcon            KInternetLocationHTTPIcon = 'i'<<24 | 'l'<<16 | 'm'<<8 | 'a' // 'ilma'
	KInternetLocationNSLNeighborhoodIcon KInternetLocationHTTPIcon = 'i'<<24 | 'l'<<16 | 'n'<<8 | 's' // 'ilns'
	KInternetLocationNewsIcon            KInternetLocationHTTPIcon = 'i'<<24 | 'l'<<16 | 'n'<<8 | 'w' // 'ilnw'
)

func (KInternetLocationHTTPIcon) String added in v0.6.17

func (e KInternetLocationHTTPIcon) String() string

type KIsOnDesk added in v0.5.1

type KIsOnDesk uint32
const (
	KColor         KIsOnDesk = 0xe
	KHasBeenInited KIsOnDesk = 0x100
	KHasBundle     KIsOnDesk = 0x2000
	KHasCustomIcon KIsOnDesk = 0x400
	KHasNoINITs    KIsOnDesk = 0x80
	KIsAlias       KIsOnDesk = 0x8000
	KIsInvisible   KIsOnDesk = 0x4000
	KIsOnDeskValue KIsOnDesk = 0x1
	KIsShared      KIsOnDesk = 0x40
	KIsStationery  KIsOnDesk = 0x800
	KNameLocked    KIsOnDesk = 0x1000
)

func (KIsOnDesk) String added in v0.5.1

func (e KIsOnDesk) String() string

type KKCAuthType added in v0.5.1

type KKCAuthType uint32
const (
	KKCAuthTypeDPA        KKCAuthType = 'd'<<24 | 'p'<<16 | 'a'<<8 | 'a' // 'dpaa'
	KKCAuthTypeDefault    KKCAuthType = 'd'<<24 | 'f'<<16 | 'l'<<8 | 't' // 'dflt'
	KKCAuthTypeHTTPDigest KKCAuthType = 'h'<<24 | 't'<<16 | 't'<<8 | 'd' // 'httd'
	KKCAuthTypeMSN        KKCAuthType = 'm'<<24 | 's'<<16 | 'n'<<8 | 'a' // 'msna'
	KKCAuthTypeNTLM       KKCAuthType = 'n'<<24 | 't'<<16 | 'l'<<8 | 'm' // 'ntlm'
	KKCAuthTypeRPA        KKCAuthType = 'r'<<24 | 'p'<<16 | 'a'<<8 | 'a' // 'rpaa'
)

func (KKCAuthType) String added in v0.5.1

func (e KKCAuthType) String() string

type KKCProtocolType added in v0.5.1

type KKCProtocolType uint32
const (
	KKCProtocolTypeAFP        KKCProtocolType = 'a'<<24 | 'f'<<16 | 'p'<<8 | ' ' // 'afp '
	KKCProtocolTypeAppleTalk  KKCProtocolType = 'a'<<24 | 't'<<16 | 'l'<<8 | 'k' // 'atlk'
	KKCProtocolTypeFTP        KKCProtocolType = 'f'<<24 | 't'<<16 | 'p'<<8 | ' ' // 'ftp '
	KKCProtocolTypeFTPAccount KKCProtocolType = 'f'<<24 | 't'<<16 | 'p'<<8 | 'a' // 'ftpa'
	KKCProtocolTypeHTTP       KKCProtocolType = 'h'<<24 | 't'<<16 | 't'<<8 | 'p' // 'http'
	KKCProtocolTypeIMAP       KKCProtocolType = 'i'<<24 | 'm'<<16 | 'a'<<8 | 'p' // 'imap'
	KKCProtocolTypeIRC        KKCProtocolType = 'i'<<24 | 'r'<<16 | 'c'<<8 | ' ' // 'irc '
	KKCProtocolTypeLDAP       KKCProtocolType = 'l'<<24 | 'd'<<16 | 'a'<<8 | 'p' // 'ldap'
	KKCProtocolTypeNNTP       KKCProtocolType = 'n'<<24 | 'n'<<16 | 't'<<8 | 'p' // 'nntp'
	KKCProtocolTypePOP3       KKCProtocolType = 'p'<<24 | 'o'<<16 | 'p'<<8 | '3' // 'pop3'
	KKCProtocolTypeSMTP       KKCProtocolType = 's'<<24 | 'm'<<16 | 't'<<8 | 'p' // 'smtp'
	KKCProtocolTypeSOCKS      KKCProtocolType = 's'<<24 | 'o'<<16 | 'x'<<8 | ' ' // 'sox '
	KKCProtocolTypeTelnet     KKCProtocolType = 't'<<24 | 'e'<<16 | 'l'<<8 | 'n' // 'teln'
)

func (KKCProtocolType) String added in v0.5.1

func (e KKCProtocolType) String() string

type KLS

type KLS int32
const (
	// KLSAppDoesNotClaimTypeErr: Not currently used.
	KLSAppDoesNotClaimTypeErr KLS = -10820
	// KLSAppDoesNotSupportSchemeWarning: Not currently used.
	KLSAppDoesNotSupportSchemeWarning KLS = -10821
	// KLSAppInTrashErr: The app can’t run because it’s inside a Trash folder.
	KLSAppInTrashErr KLS = -10660
	// KLSApplicationNotFoundErr: No app in the Launch Services database matches the input criteria.
	KLSApplicationNotFoundErr  KLS = -10814
	KLSAttributeNotFoundErr    KLS = -10662
	KLSAttributeNotSettableErr KLS = -10663
	// KLSCannotSetInfoErr: The system can’t hide the filename extension.
	KLSCannotSetInfoErr KLS = -10823
	// KLSDataErr: Improper data structure.
	KLSDataErr KLS = -10817
	// KLSDataTooOldErr: Not currently used.
	KLSDataTooOldErr KLS = -10816
	// KLSDataUnavailableErr: Data of the desired type is not available (for example, there is no kind string).
	KLSDataUnavailableErr                KLS = -10813
	KLSExecutableIncorrectFormat         KLS = -10661
	KLSGarbageCollectionUnsupportedErr   KLS = -10666
	KLSIncompatibleApplicationVersionErr KLS = -10664
	// KLSIncompatibleSystemVersionErr: The requested app can’t run on the current macOS version.
	KLSIncompatibleSystemVersionErr KLS = -10825
	// KLSLaunchInProgressErr: A launch of the app is already in progress.
	KLSLaunchInProgressErr KLS = -10818
	KLSMalformedLocErr     KLS = -10400
	// KLSMultipleSessionsNotSupportedErr: The requested app can’t run simultaneously in two different user sessions.
	KLSMultipleSessionsNotSupportedErr KLS = -10829
	KLSNo32BitEnvironmentErr           KLS = -10386
	// KLSNoClassicEnvironmentErr: Not currently used.
	KLSNoClassicEnvironmentErr KLS = -10828
	// KLSNoExecutableErr: The executable file is missing or has an unusable format.
	KLSNoExecutableErr KLS = -10827
	// KLSNoLaunchPermissionErr: The user doesn’t have permission to launch the app on a managed network.
	KLSNoLaunchPermissionErr KLS = -10826
	// KLSNoRegistrationInfoErr: Not currently used.
	KLSNoRegistrationInfoErr   KLS = -10824
	KLSNoRosettaEnvironmentErr KLS = -10665
	// KLSNotAnApplicationErr: The item for registration is not an app.
	KLSNotAnApplicationErr KLS = -10811
	// KLSNotInitializedErr: Not currently used.
	KLSNotInitializedErr KLS = -10812
	// KLSNotRegisteredErr: Not currently used.
	KLSNotRegisteredErr KLS = -10819
	// KLSServerCommunicationErr: There is a problem communicating with the server process that maintains the Launch Services database.
	KLSServerCommunicationErr KLS = -10822
	// KLSUnknownErr: An unknown error has occurred.
	KLSUnknownErr KLS = -10810
	// KLSUnknownTypeErr: Not currently used.
	KLSUnknownTypeErr KLS = -10815
)

func (KLS) String

func (e KLS) String() string

type KLSLaunch

type KLSLaunch uint32
const (
	// Deprecated.
	KLSLaunchHasUntrustedContents KLSLaunch = 0x400000
	// Deprecated.
	KLSLaunchInClassic KLSLaunch = 0x40000
	// Deprecated.
	KLSLaunchInhibitBGOnly KLSLaunch = 0x80
	// Deprecated.
	KLSLaunchNoParams KLSLaunch = 0x800
	// Deprecated.
	KLSLaunchStartClassic KLSLaunch = 0x20000
)

func (KLSLaunch) String

func (e KLSLaunch) String() string

type KLSSharedFileList

type KLSSharedFileList uint32
const (
	KLSSharedFileListDoNotMountVolumes KLSSharedFileList = 2
	KLSSharedFileListNoUserInteraction KLSSharedFileList = 1
)

func (KLSSharedFileList) String

func (e KLSSharedFileList) String() string

type KLSUnknown

type KLSUnknown uint32
const (
	// KLSUnknownCreator: The value to supply as the creator signatureif no file creator information is available.
	KLSUnknownCreator KLSUnknown = 0
	// KLSUnknownType: The value to supply as the file type (for example,to the [LSGetApplicationForInfo] function)if no file type information is available.
	KLSUnknownType KLSUnknown = 0
)

func (KLSUnknown) String

func (e KLSUnknown) String() string

type KLarge1BitMask added in v0.5.1

type KLarge1BitMask uint32
const (
	KLarge1BitMaskValue KLarge1BitMask = 'I'<<24 | 'C'<<16 | 'N'<<8 | '#' // 'ICN#'
	KLarge32BitData     KLarge1BitMask = 'i'<<24 | 'l'<<16 | '3'<<8 | '2' // 'il32'
	KLarge4BitData      KLarge1BitMask = 'i'<<24 | 'c'<<16 | 'l'<<8 | '4' // 'icl4'
	KLarge8BitData      KLarge1BitMask = 'i'<<24 | 'c'<<16 | 'l'<<8 | '8' // 'icl8'
	KLarge8BitMask      KLarge1BitMask = 'l'<<24 | '8'<<16 | 'm'<<8 | 'k' // 'l8mk'
	KMini1BitMask       KLarge1BitMask = 'i'<<24 | 'c'<<16 | 'm'<<8 | '#' // 'icm#'
	KMini4BitData       KLarge1BitMask = 'i'<<24 | 'c'<<16 | 'm'<<8 | '4' // 'icm4'
	KMini8BitData       KLarge1BitMask = 'i'<<24 | 'c'<<16 | 'm'<<8 | '8' // 'icm8'
	KSmall1BitMask      KLarge1BitMask = 'i'<<24 | 'c'<<16 | 's'<<8 | '#' // 'ics#'
	KSmall32BitData     KLarge1BitMask = 'i'<<24 | 's'<<16 | '3'<<8 | '2' // 'is32'
	KSmall4BitData      KLarge1BitMask = 'i'<<24 | 'c'<<16 | 's'<<8 | '4' // 'ics4'
	KSmall8BitData      KLarge1BitMask = 'i'<<24 | 'c'<<16 | 's'<<8 | '8' // 'ics8'
	KSmall8BitMask      KLarge1BitMask = 's'<<24 | '8'<<16 | 'm'<<8 | 'k' // 's8mk'
)

func (KLarge1BitMask) String added in v0.5.1

func (e KLarge1BitMask) String() string

type KLargeIconSize added in v0.5.1

type KLargeIconSize uint32
const (
	KLarge4BitIconSize  KLargeIconSize = 512
	KLarge8BitIconSize  KLargeIconSize = 1024
	KLargeIconSizeValue KLargeIconSize = 256
	KSmall4BitIconSize  KLargeIconSize = 128
	KSmall8BitIconSize  KLargeIconSize = 256
	KSmallIconSize      KLargeIconSize = 64
)

func (KLargeIconSize) String added in v0.5.1

func (e KLargeIconSize) String() string

type KLastDomain added in v0.5.1

type KLastDomain int32
const (
	// Deprecated.
	KLastDomainConstant KLastDomain = -32760
)

func (KLastDomain) String added in v0.5.1

func (e KLastDomain) String() string

type KLaunchToGetTerminology added in v0.5.1

type KLaunchToGetTerminology uint32
const (
	KAlwaysSendSubject           KLaunchToGetTerminology = 8192
	KDontFindAppBySignature      KLaunchToGetTerminology = 16384
	KLaunchToGetTerminologyValue KLaunchToGetTerminology = 32768
)

func (KLaunchToGetTerminology) String added in v0.5.1

func (e KLaunchToGetTerminology) String() string

type KLocaleLanguageMask added in v0.5.1

type KLocaleLanguageMask uint32
const (
	KLocaleAllPartsMask        KLocaleLanguageMask = 0x3f
	KLocaleLanguageMaskValue   KLocaleLanguageMask = 1
	KLocaleLanguageVariantMask KLocaleLanguageMask = 2
	KLocaleRegionMask          KLocaleLanguageMask = 16
	KLocaleRegionVariantMask   KLocaleLanguageMask = 32
	KLocaleScriptMask          KLocaleLanguageMask = 4
	KLocaleScriptVariantMask   KLocaleLanguageMask = 8
)

func (KLocaleLanguageMask) String added in v0.6.17

func (e KLocaleLanguageMask) String() string

type KLocaleNameMask added in v0.5.1

type KLocaleNameMask uint32
const (
	KLocaleAndVariantNameMask       KLocaleNameMask = 0x3
	KLocaleNameMaskValue            KLocaleNameMask = 1
	KLocaleOperationVariantNameMask KLocaleNameMask = 2
)

func (KLocaleNameMask) String added in v0.6.17

func (e KLocaleNameMask) String() string

type KLocales

type KLocales int32
const (
	KLocalesBufferTooSmallErr    KLocales = -30001
	KLocalesDefaultDisplayStatus KLocales = -30029
	KLocalesTableFormatErr       KLocales = -30002
)

func (KLocales) String

func (e KLocales) String() string

type KM68kISA added in v0.5.1

type KM68kISA uint32
const (
	// Deprecated.
	KM68kISAValue KM68kISA = 0
	// Deprecated.
	KPowerPCISA KM68kISA = 1
)

func (KM68kISA) String added in v0.5.1

func (e KM68kISA) String() string

type KMPAllocate added in v0.5.1

type KMPAllocate uint32
const (
	// Deprecated.
	KMPAllocateClearMask KMPAllocate = 0x1
	// Deprecated.
	KMPAllocateGloballyMask KMPAllocate = 0x2
	// Deprecated.
	KMPAllocateNoCreateMask KMPAllocate = 0x20
	// Deprecated.
	KMPAllocateNoGrowthMask KMPAllocate = 0x10
	// Deprecated.
	KMPAllocateResidentMask KMPAllocate = 0x4
)

func (KMPAllocate) String added in v0.5.1

func (e KMPAllocate) String() string

type KMPAllocateDefaultAligned added in v0.5.1

type KMPAllocateDefaultAligned uint32
const (
	// Deprecated.
	KMPAllocate1024ByteAligned KMPAllocateDefaultAligned = 10
	// Deprecated.
	KMPAllocate16ByteAligned KMPAllocateDefaultAligned = 4
	// Deprecated.
	KMPAllocate32ByteAligned KMPAllocateDefaultAligned = 5
	// Deprecated.
	KMPAllocate4096ByteAligned KMPAllocateDefaultAligned = 12
	// Deprecated.
	KMPAllocate8ByteAligned KMPAllocateDefaultAligned = 3
	// Deprecated.
	KMPAllocateAltiVecAligned KMPAllocateDefaultAligned = 4
	// Deprecated.
	KMPAllocateDefaultAlignedValue KMPAllocateDefaultAligned = 0
	// Deprecated.
	KMPAllocateInterlockAligned KMPAllocateDefaultAligned = 255
	// Deprecated.
	KMPAllocateMaxAlignment KMPAllocateDefaultAligned = 16
	// Deprecated.
	KMPAllocateVMPageAligned KMPAllocateDefaultAligned = 254
	// Deprecated.
	KMPAllocateVMXAligned KMPAllocateDefaultAligned = 4
)

func (KMPAllocateDefaultAligned) String added in v0.6.17

func (e KMPAllocateDefaultAligned) String() string

type KMPAnyRemoteContext added in v0.5.1

type KMPAnyRemoteContext uint32
const (
	// Deprecated.
	KMPAnyRemoteContextValue KMPAnyRemoteContext = 0
	// Deprecated.
	KMPAsyncInterruptRemoteContext KMPAnyRemoteContext = 3
	// Deprecated.
	KMPInterruptRemoteContext KMPAnyRemoteContext = 2
	// Deprecated.
	KMPOwningProcessRemoteContext KMPAnyRemoteContext = 1
)

func (KMPAnyRemoteContext) String added in v0.6.17

func (e KMPAnyRemoteContext) String() string

type KMPCreateTask added in v0.5.1

type KMPCreateTask uint32
const (
	// Deprecated.
	KMPCreateTaskNotDebuggableMask KMPCreateTask = 4
	// Deprecated.
	KMPCreateTaskSuspendedMask KMPCreateTask = 1
	// Deprecated.
	KMPCreateTaskTakesAllExceptionsMask KMPCreateTask = 2
	// Deprecated.
	KMPCreateTaskValidOptionsMask KMPCreateTask = 7
)

func (KMPCreateTask) String added in v0.5.1

func (e KMPCreateTask) String() string

type KMPIterationEndErr

type KMPIterationEndErr int32
const (
	KMPBlueBlockingErr KMPIterationEndErr = -29293
	// KMPDeletedErr: The desired notification the function was waiting upon was deleted.
	KMPDeletedErr KMPIterationEndErr = -29295
	// KMPInsufficientResourcesErr: Could not complete task due to unavailable Multiprocessing Services resources.
	KMPInsufficientResourcesErr KMPIterationEndErr = -29298
	// KMPInvalidIDErr: Invalid ID value.
	KMPInvalidIDErr         KMPIterationEndErr = -29299
	KMPIterationEndErrValue KMPIterationEndErr = -29275
	KMPPrivilegedErr        KMPIterationEndErr = -29276
	KMPProcessCreatedErr    KMPIterationEndErr = -29288
	KMPProcessTerminatedErr KMPIterationEndErr = -29289
	KMPTaskAbortedErr       KMPIterationEndErr = -29297
	// KMPTaskBlockedErr: The desired task is blocked.
	KMPTaskBlockedErr KMPIterationEndErr = -29291
	KMPTaskCreatedErr KMPIterationEndErr = -29290
	// KMPTaskStoppedErr: The desired task is stopped.
	KMPTaskStoppedErr KMPIterationEndErr = -29292
	// KMPTimeoutErr: The designated timeout interval passed before the function could take action.
	KMPTimeoutErr KMPIterationEndErr = -29296
)

func (KMPIterationEndErr) String added in v0.6.17

func (e KMPIterationEndErr) String() string

type KMPLowLevelDebugger added in v0.5.1

type KMPLowLevelDebugger uint32
const (
	// Deprecated.
	KMPHighLevelDebugger KMPLowLevelDebugger = 0x20000000
	// Deprecated.
	KMPLowLevelDebuggerValue KMPLowLevelDebugger = 0
	// Deprecated.
	KMPMidLevelDebugger KMPLowLevelDebugger = 0x10000000
)

func (KMPLowLevelDebugger) String added in v0.6.17

func (e KMPLowLevelDebugger) String() string

type KMPMaxAlloc added in v0.5.1

type KMPMaxAlloc uint32
const (
	// Deprecated.
	KMPMaxAllocSize KMPMaxAlloc = 1073741824
)

func (KMPMaxAlloc) String added in v0.5.1

func (e KMPMaxAlloc) String() string

type KMPNanokernelNeedsMemory added in v0.5.1

type KMPNanokernelNeedsMemory int32
const (
	KMPNanokernelNeedsMemoryErr KMPNanokernelNeedsMemory = -29294
)

func (KMPNanokernelNeedsMemory) String added in v0.5.1

func (e KMPNanokernelNeedsMemory) String() string

type KMPNoI added in v0.5.1

type KMPNoI uint32
const (
	// Deprecated.
	KMPNoID KMPNoI = 0
)

func (KMPNoI) String added in v0.5.1

func (e KMPNoI) String() string

type KMPPreserveTimerIDMask added in v0.5.1

type KMPPreserveTimerIDMask uint32
const (
	// Deprecated.
	KMPPreserveTimerIDMaskValue KMPPreserveTimerIDMask = 1
	// Deprecated.
	KMPTimeIsDeltaMask KMPPreserveTimerIDMask = 2
	// Deprecated.
	KMPTimeIsDurationMask KMPPreserveTimerIDMask = 4
)

func (KMPPreserveTimerIDMask) String added in v0.6.17

func (e KMPPreserveTimerIDMask) String() string

type KMPQueueInfoVersion added in v0.5.1

type KMPQueueInfoVersion uint32
const (
	// Deprecated.
	KMPAddressSpaceInfoVersion KMPQueueInfoVersion = 524289
	// Deprecated.
	KMPCriticalRegionInfoVersion KMPQueueInfoVersion = 393217
	// Deprecated.
	KMPEventInfoVersion KMPQueueInfoVersion = 589825
	// Deprecated.
	KMPNotificationInfoVersion KMPQueueInfoVersion = 786433
	// Deprecated.
	KMPQueueInfoVersionValue KMPQueueInfoVersion = 262145
	// Deprecated.
	KMPSemaphoreInfoVersion KMPQueueInfoVersion = 327681
)

func (KMPQueueInfoVersion) String added in v0.6.17

func (e KMPQueueInfoVersion) String() string

type KMPTaskBlocked added in v0.5.1

type KMPTaskBlocked uint32
const (
	// Deprecated.
	KMPTaskBlockedValue KMPTaskBlocked = 0
	// Deprecated.
	KMPTaskReady KMPTaskBlocked = 1
	// Deprecated.
	KMPTaskRunning KMPTaskBlocked = 2
)

func (KMPTaskBlocked) String added in v0.6.17

func (e KMPTaskBlocked) String() string

type KMPTaskInfo added in v0.5.1

type KMPTaskInfo uint32
const (
	// Deprecated.
	KMPTaskInfoVersion KMPTaskInfo = 3
)

func (KMPTaskInfo) String added in v0.5.1

func (e KMPTaskInfo) String() string

type KMPTaskPropagate added in v0.5.1

type KMPTaskPropagate uint32
const (
	// Deprecated.
	KMPTaskPropagateValue KMPTaskPropagate = 0
	// Deprecated.
	KMPTaskPropagateMask KMPTaskPropagate = 1
	// Deprecated.
	KMPTaskResumeBranch KMPTaskPropagate = 2
	// Deprecated.
	KMPTaskResumeBranchMask KMPTaskPropagate = 4
	// Deprecated.
	KMPTaskResumeMask KMPTaskPropagate = 0
	// Deprecated.
	KMPTaskResumeStep KMPTaskPropagate = 1
	// Deprecated.
	KMPTaskResumeStepMask KMPTaskPropagate = 2
)

func (KMPTaskPropagate) String added in v0.6.17

func (e KMPTaskPropagate) String() string

type KMPTaskStateRegisters added in v0.5.1

type KMPTaskStateRegisters uint32
const (
	// Deprecated.
	KMPTaskState32BitMemoryException KMPTaskStateRegisters = 4
	// Deprecated.
	KMPTaskStateFPU KMPTaskStateRegisters = 1
	// Deprecated.
	KMPTaskStateMachine KMPTaskStateRegisters = 3
	// Deprecated.
	KMPTaskStateRegistersValue KMPTaskStateRegisters = 0
	// Deprecated.
	KMPTaskStateTaskInfo KMPTaskStateRegisters = 5
	// Deprecated.
	KMPTaskStateVectors KMPTaskStateRegisters = 2
)

func (KMPTaskStateRegisters) String added in v0.6.17

func (e KMPTaskStateRegisters) String() string

type KMacArabic added in v0.5.1

type KMacArabic uint32
const (
	// KMacArabicAlBayanVariant: A Mac OS Arabic variant used for the Arabic TrueType font Al Bayan.
	KMacArabicAlBayanVariant KMacArabic = 3
	// KMacArabicStandardVariant: A Mac OS Arabic variant is supported by the Cairo font (the system font for Arabic) and is the encoding supported by the text processing utilities.
	KMacArabicStandardVariant KMacArabic = 0
	// KMacArabicThuluthVariant: A Mac OS Arabic variant used for the Arabic PostScript-only fonts: Thuluth and Thuluth bold.
	KMacArabicThuluthVariant KMacArabic = 2
	// KMacArabicTrueTypeVariant: A Mac OS Arabic variant used for most of the Arabic TrueType fonts: Baghdad, Geeza, Kufi, Nadeem.
	KMacArabicTrueTypeVariant KMacArabic = 1
)

func (KMacArabic) String added in v0.5.1

func (e KMacArabic) String() string

type KMacCroatian added in v0.5.1

type KMacCroatian uint32
const (
	// KMacCroatianCurrencySignVariant: In versions of Mac OS earlier than 8.5, 0xDB is the currency sign.
	KMacCroatianCurrencySignVariant KMacCroatian = 1
	// KMacCroatianDefaultVariant: This is a meta value that maps to one of the following constants, depending on version of the Mac OS.
	KMacCroatianDefaultVariant KMacCroatian = 0
	// KMacCroatianEuroSignVariant: In Mac OS version 8.5 and later, 0xDB is the Euro sign.
	KMacCroatianEuroSignVariant KMacCroatian = 2
)

func (KMacCroatian) String added in v0.5.1

func (e KMacCroatian) String() string

type KMacCyrillic added in v0.5.1

type KMacCyrillic uint32
const (
	// KMacCyrillicCurrSignStdVariant: In Mac OS versions prior to 9.0 (RU, BG), 0xFF = currency sign, 0xA2/0xB6 = CENT / PARTIAL DIFF.
	KMacCyrillicCurrSignStdVariant KMacCyrillic = 1
	// KMacCyrillicCurrSignUkrVariant: In Mac OS version 9.0 and later (UA, LangKit), 0xFF = currency sign, 0xA2/0xB6 = GHE with upturn.
	KMacCyrillicCurrSignUkrVariant KMacCyrillic = 2
	// KMacCyrillicDefaultVariant: This is a meta value that maps to one of the following constants, depending on version of the Mac OS.
	KMacCyrillicDefaultVariant KMacCyrillic = 0
	// KMacCyrillicEuroSignVariant: In Mac OS 9.0 and later, 0xFF is Euro sign, 0xA2/0xB6 = GHE with upturn.
	KMacCyrillicEuroSignVariant KMacCyrillic = 3
)

func (KMacCyrillic) String added in v0.5.1

func (e KMacCyrillic) String() string

type KMacFarsi added in v0.5.1

type KMacFarsi uint32
const (
	// KMacFarsiStandardVariant: This Mac OS Farsi variant is supported by the Tehran font (the system font for Farsi) and is the encoding supported by the text processing utilities.
	KMacFarsiStandardVariant KMacFarsi = 0
	// KMacFarsiTrueTypeVariant: This Mac OS Farsi variant is used for most of the Farsi TrueType fonts: Ashfahan, Amir, Kamran, Mashad, NadeemFarsi.
	KMacFarsiTrueTypeVariant KMacFarsi = 1
)

func (KMacFarsi) String added in v0.5.1

func (e KMacFarsi) String() string

type KMacGreek added in v0.5.1

type KMacGreek uint32
const (
	KMacGreekDefaultVariant    KMacGreek = 0
	KMacGreekEuroSignVariant   KMacGreek = 2
	KMacGreekNoEuroSignVariant KMacGreek = 1
)

func (KMacGreek) String added in v0.5.1

func (e KMacGreek) String() string

type KMacHebrew added in v0.5.1

type KMacHebrew uint32
const (
	// KMacHebrewFigureSpaceVariant: The Mac OS Hebrew variant in which 0xD4 represents figure space, not left single quotation mark as in the standard variant.
	KMacHebrewFigureSpaceVariant KMacHebrew = 1
	// KMacHebrewStandardVariant: The standard Mac OS Hebrew variant.
	KMacHebrewStandardVariant KMacHebrew = 0
)

func (KMacHebrew) String added in v0.5.1

func (e KMacHebrew) String() string

type KMacIcelandic added in v0.5.1

type KMacIcelandic uint32
const (
	// KMacIcelandicStdCurrSignVariant: In Mac OS versions prior to 8.5, 0xDB is the currency sign; 0xBB/0xBC are fem./masc.
	KMacIcelandicStdCurrSignVariant KMacIcelandic = 2
	// KMacIcelandicStdDefaultVariant: This is a meta value that maps to `kMacIcelandicStdCurrSignVariant` or `kMacIcelandicStdEuroSignVariant`, depending on version of the Mac OS.
	KMacIcelandicStdDefaultVariant KMacIcelandic = 0
	// KMacIcelandicStdEuroSignVariant: In Mac OS version 8.5 and later , 0xDB is the Euro sign ; 0xBB/0xBC are fem./masc.
	KMacIcelandicStdEuroSignVariant KMacIcelandic = 4
	// KMacIcelandicTTCurrSignVariant: In Mac OS versions prior to 8.5, 0xDB is the currency sign; 0xBB/0xBC are fi/fl ligatures
	KMacIcelandicTTCurrSignVariant KMacIcelandic = 3
	// KMacIcelandicTTDefaultVariant: This is a meta value that maps to `kMacIcelandicTTCurrSignVariant` or `kMacIcelandicTTEuroSignVariant`, depending on version of the Mac OS.
	KMacIcelandicTTDefaultVariant KMacIcelandic = 1
	// KMacIcelandicTTEuroSignVariant: In Mac OS versions earlier than 8.5, 0xDB is the Euro sign; 0xBB/0xBC are fi/fl ligatures.
	KMacIcelandicTTEuroSignVariant KMacIcelandic = 5
)

func (KMacIcelandic) String added in v0.5.1

func (e KMacIcelandic) String() string

type KMacJapanese added in v0.5.1

type KMacJapanese uint32
const (
	// KMacJapaneseBasicVariant: An artificial Mac OS Japanese variant without Apple double-byte extensions.
	KMacJapaneseBasicVariant KMacJapanese = 2
	// KMacJapanesePostScriptPrintVariant: The Mac OS Japanese variant for PostScript printing versions of the Sai Mincho and Chu Gothic PostScript fonts.
	KMacJapanesePostScriptPrintVariant KMacJapanese = 4
	// KMacJapanesePostScriptScrnVariant: The Mac OS Japanese variant for the screen bitmap version of the Sai Mincho and Chu Gothic fonts.
	KMacJapanesePostScriptScrnVariant KMacJapanese = 3
	// KMacJapaneseStandardVariant: The standard Mac OS Japanese variant.
	KMacJapaneseStandardVariant KMacJapanese = 0
	// KMacJapaneseStdNoVerticalsVariant: An artificial Mac OS Japanese variant for callers who don’t want to use separately encoded vertical forms (for example, developers using QuickDraw GX).
	KMacJapaneseStdNoVerticalsVariant KMacJapanese = 1
	// KMacJapaneseVertAtKuPlusTenVariant: The Mac OS Japanese variant for the Hon Mincho and Maru Gothic fonts used in the Japanese localized version of System 7.1.
	KMacJapaneseVertAtKuPlusTenVariant KMacJapanese = 5
)

func (KMacJapanese) String added in v0.5.1

func (e KMacJapanese) String() string

type KMacMemoryMaximumMemoryManagerBlock added in v0.5.1

type KMacMemoryMaximumMemoryManagerBlock uint32
const (
	// Deprecated.
	KMacMemoryMaximumMemoryManagerBlockSize KMacMemoryMaximumMemoryManagerBlock = 0x7ffffff0
)

func (KMacMemoryMaximumMemoryManagerBlock) String added in v0.5.1

type KMacRoman added in v0.5.1

type KMacRoman uint32
const (
	// KMacRomanCurrencySignVariant: In Mac OS versions earlier than 8.5 0xDB is the currency sign; still used for some older fonts even in Mac OS 8.5.
	KMacRomanCurrencySignVariant KMacRoman = 1
	// KMacRomanDefaultVariant: This is a meta value that maps to one of the following constants, depending on version of the Mac OS.
	KMacRomanDefaultVariant KMacRoman = 0
	// KMacRomanEuroSignVariant: In Mac OS version 8.5 and later, 0xDB is the Euro sign.
	KMacRomanEuroSignVariant KMacRoman = 2
)

func (KMacRoman) String added in v0.5.1

func (e KMacRoman) String() string

type KMacRomanLatin1 added in v0.5.1

type KMacRomanLatin1 uint32
const (
	// KMacRomanLatin1CroatianVariant: Permuted MacCroatian, Euro sign variant.
	KMacRomanLatin1CroatianVariant KMacRomanLatin1 = 8
	// KMacRomanLatin1DefaultVariant: This is a meta value that maps to one of the following constants, depending on version of the Mac OS.
	KMacRomanLatin1DefaultVariant KMacRomanLatin1 = 0
	// KMacRomanLatin1IcelandicVariant: Permuted MacIcelandic, standard Euro sign variant.
	KMacRomanLatin1IcelandicVariant KMacRomanLatin1 = 11
	// KMacRomanLatin1RomanianVariant: Permuted MacRomanian, Euro sign variant.
	KMacRomanLatin1RomanianVariant KMacRomanLatin1 = 14
	// KMacRomanLatin1StandardVariant: Permuted MacRoman, Euro sign variant.
	KMacRomanLatin1StandardVariant KMacRomanLatin1 = 2
	// KMacRomanLatin1TurkishVariant: Permuted MacTurkish.
	KMacRomanLatin1TurkishVariant KMacRomanLatin1 = 6
)

func (KMacRomanLatin1) String added in v0.5.1

func (e KMacRomanLatin1) String() string

type KMacRomanStandardVariant added in v0.5.1

type KMacRomanStandardVariant uint32
const (
	KHebrewFigureSpaceVariant       KMacRomanStandardVariant = 1
	KHebrewStandardVariant          KMacRomanStandardVariant = 0
	KJapaneseBasicVariant           KMacRomanStandardVariant = 2
	KJapanesePostScriptPrintVariant KMacRomanStandardVariant = 4
	KJapanesePostScriptScrnVariant  KMacRomanStandardVariant = 3
	KJapaneseStandardVariant        KMacRomanStandardVariant = 0
	KJapaneseStdNoVerticalsVariant  KMacRomanStandardVariant = 1
	KJapaneseVertAtKuPlusTenVariant KMacRomanStandardVariant = 5
	// KMacIcelandicStandardVariant: The standard Mac OS Icelandic encoding supported by the bitmap versions of Chicago, Geneva, Monaco, and New York in the Icelandic system.
	KMacIcelandicStandardVariant KMacRomanStandardVariant = 0
	// KMacIcelandicTrueTypeVariant: The Mac OS Icelandic variant used for the bitmap versions of Courier, Helvetica, Palatino, and Times in the Icelandic system, and for the TrueType versions of Chicago, Geneva, Monaco, New York, Courier, Helvetica, Palatino, and Times.
	KMacIcelandicTrueTypeVariant KMacRomanStandardVariant = 1
	// KMacRomanStandardVariantValue: The standard variant of Mac OS Roman for Mac OS 8.5 and later; 0xDB is the Euro sign.
	KMacRomanStandardVariantValue KMacRomanStandardVariant = 0
	// KTextEncodingShiftJIS_X0213_00: Shift-JIS format encoding of JIS X0213 planes 1 and 2
	KTextEncodingShiftJIS_X0213_00 KMacRomanStandardVariant = 0x628
	// KUnicodeCanonicalCompVariant: This is the normal canonical composition according to Unicode 3.2 rules.
	KUnicodeCanonicalCompVariant KMacRomanStandardVariant = 3
	// KUnicodeCanonicalDecompVariant: # Discussion
	KUnicodeCanonicalDecompVariant KMacRomanStandardVariant = 2
	// KUnicodeMaxDecomposedVariant: Replaced by `kUnicodeCanonicalDecompVariant`.
	KUnicodeMaxDecomposedVariant KMacRomanStandardVariant = 2
	// KUnicodeNoComposedVariant: Replaced by `kUnicodeCanonicalCompVariant`.
	KUnicodeNoComposedVariant KMacRomanStandardVariant = 3
)

func (KMacRomanStandardVariant) String added in v0.5.1

func (e KMacRomanStandardVariant) String() string

type KMacRomanian added in v0.5.1

type KMacRomanian uint32
const (
	// KMacRomanianCurrencySignVariant: In Mac OS versions earlier than 8.5, 0xDB is the currency sign.
	KMacRomanianCurrencySignVariant KMacRomanian = 1
	// KMacRomanianDefaultVariant: This is a meta value that maps to one of the following constants, depending on version of the Mac OS.
	KMacRomanianDefaultVariant KMacRomanian = 0
	// KMacRomanianEuroSignVariant: In Mac OS version 8.5 and later, 0xDB is the Euro sign.
	KMacRomanianEuroSignVariant KMacRomanian = 2
)

func (KMacRomanian) String added in v0.5.1

func (e KMacRomanian) String() string

type KMacVT100 added in v0.5.1

type KMacVT100 uint32
const (
	// KMacVT100CurrencySignVariant: In Mac OS versions earlier than 8.5, 0xDB is the currency sign.
	KMacVT100CurrencySignVariant KMacVT100 = 1
	// KMacVT100DefaultVariant: This is a meta value that maps to one of the following constants, depending on version of the Mac OS.
	KMacVT100DefaultVariant KMacVT100 = 0
	// KMacVT100EuroSignVariant: In Mac OS version 8.5 and later, 0xDB is the Euro sign.
	KMacVT100EuroSignVariant KMacVT100 = 2
)

func (KMacVT100) String added in v0.5.1

func (e KMacVT100) String() string

type KMachineNameStrI added in v0.5.1

type KMachineNameStrI int32
const (
	KMachineNameStrID KMachineNameStrI = -16395
)

func (KMachineNameStrI) String added in v0.5.1

func (e KMachineNameStrI) String() string

type KMagicBusyCreation added in v0.5.1

type KMagicBusyCreation uint32
const (
	KMagicBusyCreationDate KMagicBusyCreation = 0x4f3afdb0
)

func (KMagicBusyCreation) String added in v0.5.1

func (e KMagicBusyCreation) String() string

type KMagicTemporaryItemsFolderType added in v0.5.1

type KMagicTemporaryItemsFolderType uint32
const (
	// Deprecated.
	KCurrentUserRemoteFolderLocation KMagicTemporaryItemsFolderType = 'r'<<24 | 'u'<<16 | 's'<<8 | 'f' // 'rusf'
	// Deprecated.
	KCurrentUserRemoteFolderType KMagicTemporaryItemsFolderType = 'r'<<24 | 'u'<<16 | 's'<<8 | 'r' // 'rusr'
	// Deprecated.
	KMagicTemporaryItemsFolderTypeValue KMagicTemporaryItemsFolderType = 'm'<<24 | 't'<<16 | 'm'<<8 | 'p' // 'mtmp'
	// Deprecated.
	KTemporaryItemsInUserDomainFolderType KMagicTemporaryItemsFolderType = 't'<<24 | 'e'<<16 | 'm'<<8 | 'q' // 'temq'
)

func (KMagicTemporaryItemsFolderType) String added in v0.5.1

type KModem

type KModem int32
const (
	KModemOutOfMemory        KModem = -14000
	KModemPreferencesMissing KModem = -14001
	KModemScriptMissing      KModem = -14002
)

func (KModem) String

func (e KModem) String() string

type KNS

type KNS int32
const (
	KNSL68kContextNotSupported     KNS = -4170
	KNSLBadClientInfoPtr           KNS = -4185
	KNSLBadDataTypeErr             KNS = -4193
	KNSLBadNetConnection           KNS = -4192
	KNSLBadProtocolTypeErr         KNS = -4183
	KNSLBadReferenceErr            KNS = -4195
	KNSLBadServiceTypeErr          KNS = -4194
	KNSLBadURLSyntax               KNS = -4172
	KNSLBufferTooSmallForData      KNS = -4187
	KNSLCannotContinueLookup       KNS = -4186
	KNSLErrNullPtrError            KNS = -4176
	KNSLInitializationFailed       KNS = -4200
	KNSLInsufficientOTVer          KNS = -4197
	KNSLInsufficientSysVer         KNS = -4198
	KNSLInvalidPluginSpec          KNS = -4190
	KNSLNoCarbonLib                KNS = -4173
	KNSLNoContextAvailable         KNS = -4188
	KNSLNoElementsInList           KNS = -4196
	KNSLNoPluginsForSearch         KNS = -4179
	KNSLNoPluginsFound             KNS = -4181
	KNSLNoSupportForService        KNS = -4191
	KNSLNotImplementedYet          KNS = -4175
	KNSLNotInitialized             KNS = -4199
	KNSLNullListPtr                KNS = -4184
	KNSLNullNeighborhoodPtr        KNS = -4178
	KNSLPluginLoadFailed           KNS = -4182
	KNSLRequestBufferAlreadyInList KNS = -4189
	KNSLSchedulerError             KNS = -4171
	KNSLSearchAlreadyInProgress    KNS = -4180
	KNSLSomePluginsFailedToLoad    KNS = -4177
	KNSLUILibraryNotAvailable      KNS = -4174
)

func (KNS) String

func (e KNS) String() string

type KNSp

type KNSp int32
const (
	KNSpAddPlayerFailedErr       KNSp = -30389
	KNSpAddressInUseErr          KNSp = -30380
	KNSpAlreadyAdvertisingErr    KNSp = -30374
	KNSpAlreadyInitializedErr    KNSp = -30361
	KNSpCantBlockErr             KNSp = -30398
	KNSpConnectFailedErr         KNSp = -30395
	KNSpCreateGroupFailedErr     KNSp = -30388
	KNSpFeatureNotImplementedErr KNSp = -30381
	KNSpFreeQExhaustedErr        KNSp = -30378
	KNSpGameTerminatedErr        KNSp = -30394
	KNSpHostFailedErr            KNSp = -30365
	KNSpInitializationFailedErr  KNSp = -30360
	KNSpInvalidAddressErr        KNSp = -30377
	KNSpInvalidDefinitionErr     KNSp = -30390
	KNSpInvalidGameRefErr        KNSp = -30367
	KNSpInvalidGroupIDErr        KNSp = -30384
	KNSpInvalidParameterErr      KNSp = -30369
	KNSpInvalidPlayerIDErr       KNSp = -30383
	KNSpInvalidProtocolListErr   KNSp = -30392
	KNSpInvalidProtocolRefErr    KNSp = -30391
	KNSpJoinFailedErr            KNSp = -30399
	KNSpMemAllocationErr         KNSp = -30373
	KNSpMessageTooBigErr         KNSp = -30397
	KNSpNameRequiredErr          KNSp = -30382
	KNSpNoGroupsErr              KNSp = -30386
	KNSpNoHostVolunteersErr      KNSp = -30387
	KNSpNoPlayersErr             KNSp = -30385
	KNSpNotAdvertisingErr        KNSp = -30376
	KNSpOTNotPresentErr          KNSp = -30370
	KNSpOTVersionTooOldErr       KNSp = -30371
	KNSpPipeFullErr              KNSp = -30364
	KNSpProtocolNotAvailableErr  KNSp = -30366
	KNSpRemovePlayerFailedErr    KNSp = -30379
	KNSpSendFailedErr            KNSp = -30396
	KNSpTimeoutErr               KNSp = -30393
	KNSpTopologyNotSupportedErr  KNSp = -30362
)

func (KNSp) String

func (e KNSp) String() string

type KNav

type KNav int32
const (
	KNavCustomControlMessageFailedErr  KNav = -5697
	KNavInvalidCustomControlMessageErr KNav = -5698
	KNavInvalidSystemConfigErr         KNav = -5696
	KNavMissingKindStringErr           KNav = -5699
	KNavWrongDialogClassErr            KNav = -5695
	KNavWrongDialogStateErr            KNav = -5694
)

func (KNav) String

func (e KNav) String() string

type KNewSuspend added in v0.5.1

type KNewSuspend uint32
const (
	// Deprecated.
	KCreateIfNeeded KNewSuspend = 4
	// Deprecated.
	KExactMatchThread KNewSuspend = 16
	// Deprecated.
	KFPUNotNeeded KNewSuspend = 8
	// Deprecated.
	KNewSuspendValue KNewSuspend = 1
	// Deprecated.
	KUsePremadeThread KNewSuspend = 2
)

func (KNewSuspend) String added in v0.5.1

func (e KNewSuspend) String() string

type KNextBody added in v0.5.1

type KNextBody uint32
const (
	KNextBodyValue KNextBody = 1
	KPreviousBody  KNextBody = 2
)

func (KNextBody) String added in v0.5.1

func (e KNextBody) String() string

type KNoByteCode added in v0.5.1

type KNoByteCode uint32
const (
	// Deprecated.
	KFourByteCode KNoByteCode = 3
	// Deprecated.
	KNoByteCodeValue KNoByteCode = 0
	// Deprecated.
	KOneByteCode KNoByteCode = 1
	// Deprecated.
	KTwoByteCode KNoByteCode = 2
)

func (KNoByteCode) String added in v0.5.1

func (e KNoByteCode) String() string

type KNoThreadID added in v0.5.1

type KNoThreadID uint32
const (
	// Deprecated.
	KApplicationThreadID KNoThreadID = 2
	// Deprecated.
	KCurrentThreadID KNoThreadID = 1
	// Deprecated.
	KNoThreadIDValue KNoThreadID = 0
)

func (KNoThreadID) String added in v0.5.1

func (e KNoThreadID) String() string

type KNoUserAuthentication added in v0.5.1

type KNoUserAuthentication uint32
const (
	KEncryptPassword           KNoUserAuthentication = 3
	KNoUserAuthenticationValue KNoUserAuthentication = 1
	KPassword                  KNoUserAuthentication = 2
	KTwoWayEncryptPassword     KNoUserAuthentication = 6
)

func (KNoUserAuthentication) String added in v0.5.1

func (e KNoUserAuthentication) String() string

type KOSI added in v0.5.1

type KOSI uint32
const (
	KOSIZCodeInSharedLibraries  KOSI = 11
	KOSIZDontOpenResourceFile   KOSI = 15
	KOSIZOpenWithReadPermission KOSI = 13
	KOSIZdontAcceptRemoteEvents KOSI = 14
)

func (KOSI) String added in v0.5.1

func (e KOSI) String() string

type KOTNoError

type KOTNoError int32
const (
	KEACCESErr                 KOTNoError = -3212
	KEADDRINUSEErr             KOTNoError = -3247
	KEADDRNOTAVAILErr          KOTNoError = -3248
	KEAGAINErr                 KOTNoError = -3210
	KEALREADYErr               KOTNoError = -3236
	KEBADFErr                  KOTNoError = -3208
	KEBADMSGErr                KOTNoError = -3272
	KEBUSYErr                  KOTNoError = -3215
	KECANCELErr                KOTNoError = -3273
	KECONNABORTEDErr           KOTNoError = -3252
	KECONNREFUSEDErr           KOTNoError = -3260
	KECONNRESETErr             KOTNoError = -3253
	KEDEADLKErr                KOTNoError = -3234
	KEDESTADDRREQErr           KOTNoError = -3238
	KEEXISTErr                 KOTNoError = -3216
	KEFAULTErr                 KOTNoError = -3213
	KEHOSTDOWNErr              KOTNoError = -3263
	KEHOSTUNREACHErr           KOTNoError = -3264
	KEINPROGRESSErr            KOTNoError = -3276
	KEINTRErr                  KOTNoError = -3203
	KEINVALErr                 KOTNoError = -3221
	KEIOErr                    KOTNoError = -3204
	KEISCONNErr                KOTNoError = -3255
	KEMSGSIZEErr               KOTNoError = -3239
	KENETDOWNErr               KOTNoError = -3249
	KENETRESETErr              KOTNoError = -3251
	KENETUNREACHErr            KOTNoError = -3250
	KENOBUFSErr                KOTNoError = -3254
	KENODATAErr                KOTNoError = -3275
	KENODEVErr                 KOTNoError = -3218
	KENOENTErr                 KOTNoError = -3201
	KENOMEMErr                 KOTNoError = -3211
	KENOMSGErr                 KOTNoError = -3278
	KENOPROTOOPTErr            KOTNoError = -3241
	KENORSRCErr                KOTNoError = -3202
	KENOSRErr                  KOTNoError = -3271
	KENOSTRErr                 KOTNoError = -3274
	KENOTCONNErr               KOTNoError = -3256
	KENOTSOCKErr               KOTNoError = -3237
	KENOTTYErr                 KOTNoError = -3224
	KENXIOErr                  KOTNoError = -3205
	KEOPNOTSUPPErr             KOTNoError = -3244
	KEPERMErr                  KOTNoError = -3200
	KEPIPEErr                  KOTNoError = -3231
	KEPROTOErr                 KOTNoError = -3269
	KEPROTONOSUPPORTErr        KOTNoError = -3242
	KEPROTOTYPEErr             KOTNoError = -3240
	KERANGEErr                 KOTNoError = -3233
	KESHUTDOWNErr              KOTNoError = -3257
	KESOCKTNOSUPPORTErr        KOTNoError = -3243
	KESRCHErr                  KOTNoError = -3277
	KETIMEDOUTErr              KOTNoError = -3259
	KETIMEErr                  KOTNoError = -3270
	KETOOMANYREFSErr           KOTNoError = -3258
	KEWOULDBLOCKErr            KOTNoError = -3234
	KOTAccessErr               KOTNoError = -3152
	KOTAddressBusyErr          KOTNoError = -3172
	KOTBadAddressErr           KOTNoError = -3150
	KOTBadConfigurationErr     KOTNoError = -3282
	KOTBadDataErr              KOTNoError = -3159
	KOTBadFlagErr              KOTNoError = -3165
	KOTBadNameErr              KOTNoError = -3170
	KOTBadOptionErr            KOTNoError = -3151
	KOTBadQLenErr              KOTNoError = -3171
	KOTBadReferenceErr         KOTNoError = -3153
	KOTBadSequenceErr          KOTNoError = -3156
	KOTBadSyncErr              KOTNoError = -3179
	KOTBufferOverflowErr       KOTNoError = -3160
	KOTCanceledErr             KOTNoError = -3180
	KOTClientNotInittedErr     KOTNoError = -3279
	KOTConfigurationChangedErr KOTNoError = -3283
	KOTDuplicateFoundErr       KOTNoError = -3216
	KOTFlowErr                 KOTNoError = -3161
	KOTIndOutErr               KOTNoError = -3173
	KOTLookErr                 KOTNoError = -3158
	KOTNoAddressErr            KOTNoError = -3154
	KOTNoDataErr               KOTNoError = -3162
	KOTNoDisconnectErr         KOTNoError = -3163
	KOTNoErrorValue            KOTNoError = 0
	KOTNoReleaseErr            KOTNoError = -3166
	KOTNoStructureTypeErr      KOTNoError = -3169
	KOTNoUDErrErr              KOTNoError = -3164
	KOTNotFoundErr             KOTNoError = -3201
	KOTNotSupportedErr         KOTNoError = -3167
	KOTOutOfMemoryErr          KOTNoError = -3211
	KOTOutStateErr             KOTNoError = -3155
	KOTPortHasDiedErr          KOTNoError = -3280
	KOTPortLostConnection      KOTNoError = -3285
	KOTPortWasEjectedErr       KOTNoError = -3281
	KOTProtocolErr             KOTNoError = -3178
	KOTProviderMismatchErr     KOTNoError = -3174
	KOTQFullErr                KOTNoError = -3177
	KOTResAddressErr           KOTNoError = -3176
	KOTResQLenErr              KOTNoError = -3175
	KOTStateChangeErr          KOTNoError = -3168
	KOTSysErrorErr             KOTNoError = -3157
	KOTUserRequestedErr        KOTNoError = -3284
)

func (KOTNoError) String

func (e KOTNoError) String() string

type KOld68kRTA added in v0.5.1

type KOld68kRTA uint32
const (
	// Deprecated.
	KCFM68kRTA KOld68kRTA = 16
	// Deprecated.
	KOld68kRTAValue KOld68kRTA = 0
	// Deprecated.
	KPowerPCRTA KOld68kRTA = 0
)

func (KOld68kRTA) String added in v0.5.1

func (e KOld68kRTA) String() string

type KOnSystemDisk added in v0.5.1

type KOnSystemDisk int32
const (
	// Deprecated.
	KFolderManagerLastDomain KOnSystemDisk = -32760
	// Deprecated.
	KLocalDomain KOnSystemDisk = -32765
	// Deprecated.
	KNetworkDomain KOnSystemDisk = -32764
	// Deprecated.
	KOnAppropriateDisk KOnSystemDisk = -32767
	// Deprecated.
	KOnSystemDiskValue KOnSystemDisk = -32768
	// Deprecated.
	KSystemDomain KOnSystemDisk = -32766
	// Deprecated.
	KUserDomain KOnSystemDisk = -32763
)

func (KOnSystemDisk) String added in v0.5.1

func (e KOnSystemDisk) String() string

type KOpaque added in v0.5.1

type KOpaque uint32
const (
	// Deprecated.
	KOpaqueAddressSpaceID KOpaque = 8
	// Deprecated.
	KOpaqueAnyID KOpaque = 0
	// Deprecated.
	KOpaqueAreaID KOpaque = 11
	// Deprecated.
	KOpaqueCoherenceID KOpaque = 10
	// Deprecated.
	KOpaqueConsoleID KOpaque = 13
	// Deprecated.
	KOpaqueCpuID KOpaque = 7
	// Deprecated.
	KOpaqueCriticalRegionID KOpaque = 6
	// Deprecated.
	KOpaqueEventID KOpaque = 9
	// Deprecated.
	KOpaqueNotificationID KOpaque = 12
	// Deprecated.
	KOpaqueProcessID KOpaque = 1
	// Deprecated.
	KOpaqueQueueID KOpaque = 4
	// Deprecated.
	KOpaqueSemaphoreID KOpaque = 5
	// Deprecated.
	KOpaqueTaskID KOpaque = 2
	// Deprecated.
	KOpaqueTimerID KOpaque = 3
)

func (KOpaque) String added in v0.5.1

func (e KOpaque) String() string

type KOwnerID2Name added in v0.5.1

type KOwnerID2Name uint32
const (
	KGroupID2Name      KOwnerID2Name = 2
	KGroupName2ID      KOwnerID2Name = 4
	KOwnerID2NameValue KOwnerID2Name = 1
	KOwnerName2ID      KOwnerID2Name = 3
	KReturnNextGroup   KOwnerID2Name = 2
	KReturnNextUG      KOwnerID2Name = 3
	KReturnNextUser    KOwnerID2Name = 1
)

func (KOwnerID2Name) String added in v0.5.1

func (e KOwnerID2Name) String() string

type KPEFAbsoluteExport added in v0.5.1

type KPEFAbsoluteExport int32
const (
	// Deprecated.
	KPEFAbsoluteExportValue KPEFAbsoluteExport = -2
	// Deprecated.
	KPEFReexportedImport KPEFAbsoluteExport = -3
)

func (KPEFAbsoluteExport) String added in v0.6.17

func (e KPEFAbsoluteExport) String() string

type KPEFCodeSection added in v0.5.1

type KPEFCodeSection uint32
const (
	// Deprecated.
	KPEFCodeSectionValue KPEFCodeSection = 0
	// Deprecated.
	KPEFConstantSection KPEFCodeSection = 3
	// Deprecated.
	KPEFDebugSection KPEFCodeSection = 5
	// Deprecated.
	KPEFExceptionSection KPEFCodeSection = 7
	// Deprecated.
	KPEFExecDataSection KPEFCodeSection = 6
	// Deprecated.
	KPEFLoaderSection KPEFCodeSection = 4
	// Deprecated.
	KPEFPackedDataSection KPEFCodeSection = 2
	// Deprecated.
	KPEFTracebackSection KPEFCodeSection = 8
	// Deprecated.
	KPEFUnpackedDataSection KPEFCodeSection = 1
)

func (KPEFCodeSection) String added in v0.6.17

func (e KPEFCodeSection) String() string

type KPEFCodeSymbol added in v0.5.1

type KPEFCodeSymbol uint32
const (
	// Deprecated.
	KPEFCodeSymbolValue KPEFCodeSymbol = 0
	// Deprecated.
	KPEFDataSymbol KPEFCodeSymbol = 0x1
	// Deprecated.
	KPEFGlueSymbol KPEFCodeSymbol = 0x4
	// Deprecated.
	KPEFTOCSymbol KPEFCodeSymbol = 0x3
	// Deprecated.
	KPEFTVectorSymbol KPEFCodeSymbol = 0x2
	// Deprecated.
	KPEFUndefinedSymbol KPEFCodeSymbol = 0xf
	// Deprecated.
	KPEFWeakImportSymMask KPEFCodeSymbol = 0x80
)

func (KPEFCodeSymbol) String added in v0.6.17

func (e KPEFCodeSymbol) String() string

type KPEFExpSym added in v0.5.1

type KPEFExpSym uint32
const (
	// Deprecated.
	KPEFExpSymClassShift KPEFExpSym = 24
	// Deprecated.
	KPEFExpSymMaxNameOffset KPEFExpSym = 0xffffff
	// Deprecated.
	KPEFExpSymNameOffsetMask KPEFExpSym = 0xffffff
)

func (KPEFExpSym) String added in v0.5.1

func (e KPEFExpSym) String() string

type KPEFFirstSectionHeader added in v0.5.1

type KPEFFirstSectionHeader uint32
const (
	// Deprecated.
	KPEFFirstSectionHeaderOffset KPEFFirstSectionHeader = 40
)

func (KPEFFirstSectionHeader) String added in v0.5.1

func (e KPEFFirstSectionHeader) String() string

type KPEFHash added in v0.5.1

type KPEFHash uint32
const (
	// Deprecated.
	KPEFHashLengthShift KPEFHash = 16
	// Deprecated.
	KPEFHashMaxLength KPEFHash = 0xffff
	// Deprecated.
	KPEFHashValueMask KPEFHash = 0xffff
)

func (KPEFHash) String added in v0.5.1

func (e KPEFHash) String() string

type KPEFHashSlot added in v0.5.1

type KPEFHashSlot uint32
const (
	// Deprecated.
	KPEFHashSlotFirstKeyMask KPEFHashSlot = 0x3ffff
	// Deprecated.
	KPEFHashSlotMaxKeyIndex KPEFHashSlot = 0x3ffff
	// Deprecated.
	KPEFHashSlotMaxSymbolCount KPEFHashSlot = 0x3fff
	// Deprecated.
	KPEFHashSlotSymCountShift KPEFHashSlot = 18
)

func (KPEFHashSlot) String added in v0.5.1

func (e KPEFHashSlot) String() string

type KPEFImpSym added in v0.5.1

type KPEFImpSym uint32
const (
	// Deprecated.
	KPEFImpSymClassShift KPEFImpSym = 24
	// Deprecated.
	KPEFImpSymMaxNameOffset KPEFImpSym = 0xffffff
	// Deprecated.
	KPEFImpSymNameOffsetMask KPEFImpSym = 0xffffff
)

func (KPEFImpSym) String added in v0.5.1

func (e KPEFImpSym) String() string

type KPEFPkDataOpcodeShift added in v0.5.1

type KPEFPkDataOpcodeShift uint32
const (
	// Deprecated.
	KPEFPkDataCount5Mask KPEFPkDataOpcodeShift = 0x1f
	// Deprecated.
	KPEFPkDataMaxCount5 KPEFPkDataOpcodeShift = 31
	// Deprecated.
	KPEFPkDataOpcodeShiftValue KPEFPkDataOpcodeShift = 5
	// Deprecated.
	KPEFPkDataVCountEndMask KPEFPkDataOpcodeShift = 0x80
	// Deprecated.
	KPEFPkDataVCountMask KPEFPkDataOpcodeShift = 0x7f
	// Deprecated.
	KPEFPkDataVCountShift KPEFPkDataOpcodeShift = 7
)

func (KPEFPkDataOpcodeShift) String added in v0.6.17

func (e KPEFPkDataOpcodeShift) String() string

type KPEFPkDataZero added in v0.5.1

type KPEFPkDataZero uint32
const (
	// Deprecated.
	KPEFPkDataBlock KPEFPkDataZero = 1
	// Deprecated.
	KPEFPkDataRepeat KPEFPkDataZero = 2
	// Deprecated.
	KPEFPkDataRepeatBlock KPEFPkDataZero = 3
	// Deprecated.
	KPEFPkDataRepeatZero KPEFPkDataZero = 4
	// Deprecated.
	KPEFPkDataZeroValue KPEFPkDataZero = 0
)

func (KPEFPkDataZero) String added in v0.6.17

func (e KPEFPkDataZero) String() string

type KPEFProcessShare added in v0.5.1

type KPEFProcessShare uint32
const (
	// Deprecated.
	KPEFGlobalShare KPEFProcessShare = 4
	// Deprecated.
	KPEFProcessShareValue KPEFProcessShare = 1
	// Deprecated.
	KPEFProtectedShare KPEFProcessShare = 5
)

func (KPEFProcessShare) String added in v0.6.17

func (e KPEFProcessShare) String() string

type KPEFReloc added in v0.5.1

type KPEFReloc uint32
const (
	// Deprecated.
	KPEFRelocBySectC KPEFReloc = 0x20
	// Deprecated.
	KPEFRelocBySectD KPEFReloc = 0x21
	// Deprecated.
	KPEFRelocBySectDWithSkip KPEFReloc = 0
	// Deprecated.
	KPEFRelocImportRun KPEFReloc = 0x25
	// Deprecated.
	KPEFRelocIncrPosition KPEFReloc = 0x40
	// Deprecated.
	KPEFRelocLgByImport KPEFReloc = 0x52
	// Deprecated.
	KPEFRelocLgRepeat KPEFReloc = 0x58
	// Deprecated.
	KPEFRelocLgSetOrBySection KPEFReloc = 0x5a
	// Deprecated.
	KPEFRelocSetPosition KPEFReloc = 0x50
	// Deprecated.
	KPEFRelocSmByImport KPEFReloc = 0x30
	// Deprecated.
	KPEFRelocSmBySection KPEFReloc = 0x33
	// Deprecated.
	KPEFRelocSmRepeat KPEFReloc = 0x48
	// Deprecated.
	KPEFRelocSmSetSectC KPEFReloc = 0x31
	// Deprecated.
	KPEFRelocSmSetSectD KPEFReloc = 0x32
	// Deprecated.
	KPEFRelocTVector12 KPEFReloc = 0x22
	// Deprecated.
	KPEFRelocTVector8 KPEFReloc = 0x23
	// Deprecated.
	KPEFRelocUndefinedOpcode KPEFReloc = 0xff
	// Deprecated.
	KPEFRelocVTable8 KPEFReloc = 0x24
)

func (KPEFReloc) String added in v0.5.1

func (e KPEFReloc) String() string

type KPEFRelocBasicOpcode added in v0.5.1

type KPEFRelocBasicOpcode uint32
const (
	// Deprecated.
	KPEFRelocBasicOpcodeRange KPEFRelocBasicOpcode = 128
)

func (KPEFRelocBasicOpcode) String added in v0.5.1

func (e KPEFRelocBasicOpcode) String() string

type KPEFRelocIncrPositionMax added in v0.5.1

type KPEFRelocIncrPositionMax uint32
const (
	// Deprecated.
	KPEFRelocIncrPositionMaxOffset KPEFRelocIncrPositionMax = 4096
)

func (KPEFRelocIncrPositionMax) String added in v0.5.1

func (e KPEFRelocIncrPositionMax) String() string

type KPEFRelocLg added in v0.5.1

type KPEFRelocLg uint32
const (
	// Deprecated.
	KPEFRelocLgBySectionSubopcode KPEFRelocLg = 0
	// Deprecated.
	KPEFRelocLgSetSectCSubopcode KPEFRelocLg = 0x1
	// Deprecated.
	KPEFRelocLgSetSectDSubopcode KPEFRelocLg = 0x2
)

func (KPEFRelocLg) String added in v0.5.1

func (e KPEFRelocLg) String() string

type KPEFRelocLgByImportMax added in v0.5.1

type KPEFRelocLgByImportMax uint32
const (
	// Deprecated.
	KPEFRelocLgByImportMaxIndex KPEFRelocLgByImportMax = 0x3ffffff
)

func (KPEFRelocLgByImportMax) String added in v0.5.1

func (e KPEFRelocLgByImportMax) String() string

type KPEFRelocLgRepeatMax added in v0.5.1

type KPEFRelocLgRepeatMax uint32
const (
	// Deprecated.
	KPEFRelocLgRepeatMaxChunkCount KPEFRelocLgRepeatMax = 16
	// Deprecated.
	KPEFRelocLgRepeatMaxRepeatCount KPEFRelocLgRepeatMax = 0x3fffff
)

func (KPEFRelocLgRepeatMax) String added in v0.5.1

func (e KPEFRelocLgRepeatMax) String() string

type KPEFRelocLgSetOrBySectionMax added in v0.5.1

type KPEFRelocLgSetOrBySectionMax uint32
const (
	// Deprecated.
	KPEFRelocLgSetOrBySectionMaxIndex KPEFRelocLgSetOrBySectionMax = 0x3fffff
)

func (KPEFRelocLgSetOrBySectionMax) String added in v0.5.1

type KPEFRelocRunMaxRun added in v0.5.1

type KPEFRelocRunMaxRun uint32
const (
	// Deprecated.
	KPEFRelocRunMaxRunLength KPEFRelocRunMaxRun = 512
)

func (KPEFRelocRunMaxRun) String added in v0.5.1

func (e KPEFRelocRunMaxRun) String() string

type KPEFRelocSetPosMax added in v0.5.1

type KPEFRelocSetPosMax uint32
const (
	// Deprecated.
	KPEFRelocSetPosMaxOffset KPEFRelocSetPosMax = 0x3ffffff
)

func (KPEFRelocSetPosMax) String added in v0.5.1

func (e KPEFRelocSetPosMax) String() string

type KPEFRelocSmIndexMax added in v0.5.1

type KPEFRelocSmIndexMax uint32
const (
	// Deprecated.
	KPEFRelocSmIndexMaxIndex KPEFRelocSmIndexMax = 511
)

func (KPEFRelocSmIndexMax) String added in v0.5.1

func (e KPEFRelocSmIndexMax) String() string

type KPEFRelocSmRepeatMax added in v0.5.1

type KPEFRelocSmRepeatMax uint32
const (
	// Deprecated.
	KPEFRelocSmRepeatMaxChunkCount KPEFRelocSmRepeatMax = 16
	// Deprecated.
	KPEFRelocSmRepeatMaxRepeatCount KPEFRelocSmRepeatMax = 256
)

func (KPEFRelocSmRepeatMax) String added in v0.5.1

func (e KPEFRelocSmRepeatMax) String() string

type KPEFRelocWithSkipMax added in v0.5.1

type KPEFRelocWithSkipMax uint32
const (
	// Deprecated.
	KPEFRelocWithSkipMaxRelocCount KPEFRelocWithSkipMax = 63
	// Deprecated.
	KPEFRelocWithSkipMaxSkipCount KPEFRelocWithSkipMax = 255
)

func (KPEFRelocWithSkipMax) String added in v0.5.1

func (e KPEFRelocWithSkipMax) String() string

type KPEFTag1 added in v0.5.1

type KPEFTag1 uint32
const (
	// Deprecated.
	KPEFTag1Value KPEFTag1 = 'J'<<24 | 'o'<<16 | 'y'<<8 | '!' // 'Joy!'
	// Deprecated.
	KPEFTag2 KPEFTag1 = 'p'<<24 | 'e'<<16 | 'f'<<8 | 'f' // 'peff'
	// Deprecated.
	KPEFVersion KPEFTag1 = 0x1
)

func (KPEFTag1) String added in v0.6.17

func (e KPEFTag1) String() string

type KPEFWeakImportLibMask added in v0.5.1

type KPEFWeakImportLibMask uint32
const (
	// Deprecated.
	KPEFInitLibBeforeMask KPEFWeakImportLibMask = 0x80
	// Deprecated.
	KPEFWeakImportLibMaskValue KPEFWeakImportLibMask = 0x40
)

func (KPEFWeakImportLibMask) String added in v0.6.17

func (e KPEFWeakImportLibMask) String() string

type KPOSIXError

type KPOSIXError uint32
const (
	KPOSIXErrorBase            KPOSIXError = 100000
	KPOSIXErrorE2BIG           KPOSIXError = 100007
	KPOSIXErrorEACCES          KPOSIXError = 100013
	KPOSIXErrorEADDRINUSE      KPOSIXError = 100048
	KPOSIXErrorEADDRNOTAVAIL   KPOSIXError = 100049
	KPOSIXErrorEAFNOSUPPORT    KPOSIXError = 100047
	KPOSIXErrorEAGAIN          KPOSIXError = 100035
	KPOSIXErrorEALREADY        KPOSIXError = 100037
	KPOSIXErrorEAUTH           KPOSIXError = 100080
	KPOSIXErrorEBADARCH        KPOSIXError = 100086
	KPOSIXErrorEBADEXEC        KPOSIXError = 100085
	KPOSIXErrorEBADF           KPOSIXError = 100009
	KPOSIXErrorEBADMACHO       KPOSIXError = 100088
	KPOSIXErrorEBADMSG         KPOSIXError = 100094
	KPOSIXErrorEBADRPC         KPOSIXError = 100072
	KPOSIXErrorEBUSY           KPOSIXError = 100016
	KPOSIXErrorECANCELED       KPOSIXError = 100089
	KPOSIXErrorECHILD          KPOSIXError = 100010
	KPOSIXErrorECONNABORTED    KPOSIXError = 100053
	KPOSIXErrorECONNREFUSED    KPOSIXError = 100061
	KPOSIXErrorECONNRESET      KPOSIXError = 100054
	KPOSIXErrorEDEADLK         KPOSIXError = 100011
	KPOSIXErrorEDESTADDRREQ    KPOSIXError = 100039
	KPOSIXErrorEDEVERR         KPOSIXError = 100083
	KPOSIXErrorEDOM            KPOSIXError = 100033
	KPOSIXErrorEDQUOT          KPOSIXError = 100069
	KPOSIXErrorEEXIST          KPOSIXError = 100017
	KPOSIXErrorEFAULT          KPOSIXError = 100014
	KPOSIXErrorEFBIG           KPOSIXError = 100027
	KPOSIXErrorEFTYPE          KPOSIXError = 100079
	KPOSIXErrorEHOSTDOWN       KPOSIXError = 100064
	KPOSIXErrorEHOSTUNREACH    KPOSIXError = 100065
	KPOSIXErrorEIDRM           KPOSIXError = 100090
	KPOSIXErrorEILSEQ          KPOSIXError = 100092
	KPOSIXErrorEINPROGRESS     KPOSIXError = 100036
	KPOSIXErrorEINTR           KPOSIXError = 100004
	KPOSIXErrorEINVAL          KPOSIXError = 100022
	KPOSIXErrorEIO             KPOSIXError = 100005
	KPOSIXErrorEISCONN         KPOSIXError = 100056
	KPOSIXErrorEISDIR          KPOSIXError = 100021
	KPOSIXErrorELOOP           KPOSIXError = 100062
	KPOSIXErrorEMFILE          KPOSIXError = 100024
	KPOSIXErrorEMLINK          KPOSIXError = 100031
	KPOSIXErrorEMSGSIZE        KPOSIXError = 100040
	KPOSIXErrorEMULTIHOP       KPOSIXError = 100095
	KPOSIXErrorENAMETOOLONG    KPOSIXError = 100063
	KPOSIXErrorENEEDAUTH       KPOSIXError = 100081
	KPOSIXErrorENETDOWN        KPOSIXError = 100050
	KPOSIXErrorENETRESET       KPOSIXError = 100052
	KPOSIXErrorENETUNREACH     KPOSIXError = 100051
	KPOSIXErrorENFILE          KPOSIXError = 100023
	KPOSIXErrorENOATTR         KPOSIXError = 100093
	KPOSIXErrorENOBUFS         KPOSIXError = 100055
	KPOSIXErrorENODATA         KPOSIXError = 100096
	KPOSIXErrorENODEV          KPOSIXError = 100019
	KPOSIXErrorENOENT          KPOSIXError = 100002
	KPOSIXErrorENOEXEC         KPOSIXError = 100008
	KPOSIXErrorENOLCK          KPOSIXError = 100077
	KPOSIXErrorENOLINK         KPOSIXError = 100097
	KPOSIXErrorENOMEM          KPOSIXError = 100012
	KPOSIXErrorENOMSG          KPOSIXError = 100091
	KPOSIXErrorENOPROTOOPT     KPOSIXError = 100042
	KPOSIXErrorENOSPC          KPOSIXError = 100028
	KPOSIXErrorENOSR           KPOSIXError = 100098
	KPOSIXErrorENOSTR          KPOSIXError = 100099
	KPOSIXErrorENOSYS          KPOSIXError = 100078
	KPOSIXErrorENOTBLK         KPOSIXError = 100015
	KPOSIXErrorENOTCONN        KPOSIXError = 100057
	KPOSIXErrorENOTDIR         KPOSIXError = 100020
	KPOSIXErrorENOTEMPTY       KPOSIXError = 100066
	KPOSIXErrorENOTSOCK        KPOSIXError = 100038
	KPOSIXErrorENOTSUP         KPOSIXError = 100045
	KPOSIXErrorENOTTY          KPOSIXError = 100025
	KPOSIXErrorENXIO           KPOSIXError = 100006
	KPOSIXErrorEOPNOTSUPP      KPOSIXError = 100102
	KPOSIXErrorEOVERFLOW       KPOSIXError = 100084
	KPOSIXErrorEPERM           KPOSIXError = 100001
	KPOSIXErrorEPFNOSUPPORT    KPOSIXError = 100046
	KPOSIXErrorEPIPE           KPOSIXError = 100032
	KPOSIXErrorEPROCLIM        KPOSIXError = 100067
	KPOSIXErrorEPROCUNAVAIL    KPOSIXError = 100076
	KPOSIXErrorEPROGMISMATCH   KPOSIXError = 100075
	KPOSIXErrorEPROGUNAVAIL    KPOSIXError = 100074
	KPOSIXErrorEPROTO          KPOSIXError = 100100
	KPOSIXErrorEPROTONOSUPPORT KPOSIXError = 100043
	KPOSIXErrorEPROTOTYPE      KPOSIXError = 100041
	KPOSIXErrorEPWROFF         KPOSIXError = 100082
	KPOSIXErrorERANGE          KPOSIXError = 100034
	KPOSIXErrorEREMOTE         KPOSIXError = 100071
	KPOSIXErrorEROFS           KPOSIXError = 100030
	KPOSIXErrorERPCMISMATCH    KPOSIXError = 100073
	KPOSIXErrorESHLIBVERS      KPOSIXError = 100087
	KPOSIXErrorESHUTDOWN       KPOSIXError = 100058
	KPOSIXErrorESOCKTNOSUPPORT KPOSIXError = 100044
	KPOSIXErrorESPIPE          KPOSIXError = 100029
	KPOSIXErrorESRCH           KPOSIXError = 100003
	KPOSIXErrorESTALE          KPOSIXError = 100070
	KPOSIXErrorETIME           KPOSIXError = 100101
	KPOSIXErrorETIMEDOUT       KPOSIXError = 100060
	KPOSIXErrorETOOMANYREFS    KPOSIXError = 100059
	KPOSIXErrorETXTBSY         KPOSIXError = 100026
	KPOSIXErrorEUSERS          KPOSIXError = 100068
	KPOSIXErrorEXDEV           KPOSIXError = 100018
)

func (KPOSIXError) String

func (e KPOSIXError) String() string

type KPageInMemory added in v0.5.1

type KPageInMemory uint32
const (
	// Deprecated.
	KNotPaged KPageInMemory = 2
	// Deprecated.
	KPageInMemoryValue KPageInMemory = 0
	// Deprecated.
	KPageOnDisk KPageInMemory = 1
)

func (KPageInMemory) String added in v0.5.1

func (e KPageInMemory) String() string

type KPascalStackBased added in v0.5.1

type KPascalStackBased uint32
const (
	// Deprecated.
	KCStackBased KPascalStackBased = 1
	// Deprecated.
	KD0DispatchedCStackBased KPascalStackBased = 9
	// Deprecated.
	KD0DispatchedPascalStackBased KPascalStackBased = 8
	// Deprecated.
	KD1DispatchedPascalStackBased KPascalStackBased = 12
	// Deprecated.
	KPascalStackBasedValue KPascalStackBased = 0
	// Deprecated.
	KRegisterBased KPascalStackBased = 2
	// Deprecated.
	KStackDispatchedPascalStackBased KPascalStackBased = 14
	// Deprecated.
	KThinkCStackBased KPascalStackBased = 5
)

func (KPascalStackBased) String added in v0.5.1

func (e KPascalStackBased) String() string

type KPassSelector added in v0.5.1

type KPassSelector uint32
const (
	// Deprecated.
	KDontPassSelector KPassSelector = 0x8
	// Deprecated.
	KPassSelectorValue KPassSelector = 0
)

func (KPassSelector) String added in v0.5.1

func (e KPassSelector) String() string

type KPolicyKCStopOn added in v0.5.1

type KPolicyKCStopOn uint32
const (
	KFirstFailKCStopOn   KPolicyKCStopOn = 3
	KFirstPassKCStopOn   KPolicyKCStopOn = 2
	KNoneKCStopOn        KPolicyKCStopOn = 1
	KPolicyKCStopOnValue KPolicyKCStopOn = 0
)

func (KPolicyKCStopOn) String added in v0.5.1

func (e KPolicyKCStopOn) String() string

type KPowerHandlerExistsForDeviceErr

type KPowerHandlerExistsForDeviceErr int32
const (
	KBridgeSoftwareRunningCantSleep      KPowerHandlerExistsForDeviceErr = -13038
	KCantReportProcessorTemperatureErr   KPowerHandlerExistsForDeviceErr = -13013
	KNoSuchPowerSource                   KPowerHandlerExistsForDeviceErr = -13020
	KPowerHandlerExistsForDeviceErrValue KPowerHandlerExistsForDeviceErr = -13006
	KPowerHandlerNotFoundForDeviceErr    KPowerHandlerExistsForDeviceErr = -13007
	KPowerHandlerNotFoundForProcErr      KPowerHandlerExistsForDeviceErr = -13008
	KPowerMgtMessageNotHandled           KPowerHandlerExistsForDeviceErr = -13009
	KPowerMgtRequestDenied               KPowerHandlerExistsForDeviceErr = -13010
	KProcessorTempRoutineRequiresMPLib2  KPowerHandlerExistsForDeviceErr = -13014
)

func (KPowerHandlerExistsForDeviceErr) String

type KProcDescriptorIsAbsolute added in v0.5.1

type KProcDescriptorIsAbsolute uint32
const (
	// Deprecated.
	KProcDescriptorIsAbsoluteValue KProcDescriptorIsAbsolute = 0
	// Deprecated.
	KProcDescriptorIsRelative KProcDescriptorIsAbsolute = 0x1
)

func (KProcDescriptorIsAbsolute) String added in v0.6.17

func (e KProcDescriptorIsAbsolute) String() string

type KProcDescriptorIsProcPtr added in v0.5.1

type KProcDescriptorIsProcPtr uint32
const (
	// Deprecated.
	KProcDescriptorIsIndex KProcDescriptorIsProcPtr = 0x20
	// Deprecated.
	KProcDescriptorIsProcPtrValue KProcDescriptorIsProcPtr = 0
)

func (KProcDescriptorIsProcPtr) String added in v0.6.17

func (e KProcDescriptorIsProcPtr) String() string

type KQD

type KQD int32
const (
	KQDCorruptPICTDataErr      KQD = -3954
	KQDCursorAlreadyRegistered KQD = -3952
	KQDCursorNotRegistered     KQD = -3953
	KQDNoColorHWCursorSupport  KQD = -3951
	KQDNoPalette               KQD = -3950
)

func (KQD) String

func (e KQD) String() string

type KQTSSUnknown added in v0.5.1

type KQTSSUnknown int32
const (
	KQTSSUnknownErr KQTSSUnknown = -6150
)

func (KQTSSUnknown) String added in v0.5.1

func (e KQTSSUnknown) String() string

type KQuickLookFolder added in v0.5.1

type KQuickLookFolder uint32
const (
	// Deprecated.
	KQuickLookFolderType KQuickLookFolder = 'q'<<24 | 'l'<<16 | 'c'<<8 | 'k' // 'qlck'
)

func (KQuickLookFolder) String added in v0.5.1

func (e KQuickLookFolder) String() string

type KRA

type KRA int32
const (
	KRAATalkInactive           KRA = -7134
	KRACallBackFailed          KRA = -7138
	KRAConfigurationDBInitErr  KRA = -7127
	KRAConnectionCanceled      KRA = -7109
	KRADuplicateIPAddr         KRA = -7137
	KRAExtAuthenticationFailed KRA = -7135
	KRAIncompatiblePrefs       KRA = -7107
	KRAInitOpenTransportFailed KRA = -7122
	KRAInstallationDamaged     KRA = -7113
	KRAInternalError           KRA = -7112
	KRAInvalidParameter        KRA = -7100
	KRAInvalidPassword         KRA = -7111
	KRAInvalidPort             KRA = -7101
	KRAInvalidPortState        KRA = -7116
	KRAInvalidSerialProtocol   KRA = -7117
	KRAMissingResources        KRA = -7106
	KRANCPRejectedbyPeer       KRA = -7136
	KRANotConnected            KRA = -7108
	KRANotEnabled              KRA = -7139
	KRANotPrimaryInterface     KRA = -7126
	KRANotSupported            KRA = -7105
	KRAOutOfMemory             KRA = -7104
	KRAPPPAuthenticationFailed KRA = -7129
	KRAPPPNegotiationFailed    KRA = -7130
	KRAPPPPeerDisconnected     KRA = -7132
	KRAPPPProtocolRejected     KRA = -7128
	KRAPPPUserDisconnected     KRA = -7131
	KRAPeerNotResponding       KRA = -7133
	KRAPortBusy                KRA = -7114
	KRAPortSetupFailed         KRA = -7103
	KRARemoteAccessNotReady    KRA = -7123
	KRAStartupFailed           KRA = -7102
	KRATCPIPInactive           KRA = -7124
	KRATCPIPNotConfigured      KRA = -7125
	KRAUnknownPortState        KRA = -7115
	KRAUnknownUser             KRA = -7110
	KRAUserInteractionRequired KRA = -7121
	KRAUserLoginDisabled       KRA = -7118
	KRAUserPwdChangeRequired   KRA = -7119
	KRAUserPwdEntryRequired    KRA = -7120
)

func (KRA) String

func (e KRA) String() string

type KReadExtensionTerms added in v0.5.1

type KReadExtensionTerms uint32
const (
	KReadExtensionTermsMask KReadExtensionTerms = 32768
)

func (KReadExtensionTerms) String added in v0.5.1

func (e KReadExtensionTerms) String() string

type KReadyThreadState added in v0.5.1

type KReadyThreadState uint32
const (
	// Deprecated.
	KReadyThreadStateValue KReadyThreadState = 0
	// Deprecated.
	KRunningThreadState KReadyThreadState = 2
	// Deprecated.
	KStoppedThreadState KReadyThreadState = 1
)

func (KReadyThreadState) String added in v0.5.1

func (e KReadyThreadState) String() string

type KRegisterD0 added in v0.5.1

type KRegisterD0 uint32
const (
	// Deprecated.
	KCCRegisterCBit KRegisterD0 = 16
	// Deprecated.
	KCCRegisterNBit KRegisterD0 = 19
	// Deprecated.
	KCCRegisterVBit KRegisterD0 = 17
	// Deprecated.
	KCCRegisterXBit KRegisterD0 = 20
	// Deprecated.
	KCCRegisterZBit KRegisterD0 = 18
	// Deprecated.
	KRegisterA0 KRegisterD0 = 4
	// Deprecated.
	KRegisterA1 KRegisterD0 = 5
	// Deprecated.
	KRegisterA2 KRegisterD0 = 6
	// Deprecated.
	KRegisterA3 KRegisterD0 = 7
	// Deprecated.
	KRegisterA4 KRegisterD0 = 12
	// Deprecated.
	KRegisterA5 KRegisterD0 = 13
	// Deprecated.
	KRegisterA6 KRegisterD0 = 14
	// Deprecated.
	KRegisterD0Value KRegisterD0 = 0
	// Deprecated.
	KRegisterD1 KRegisterD0 = 1
	// Deprecated.
	KRegisterD2 KRegisterD0 = 2
	// Deprecated.
	KRegisterD3 KRegisterD0 = 3
	// Deprecated.
	KRegisterD4 KRegisterD0 = 8
	// Deprecated.
	KRegisterD5 KRegisterD0 = 9
	// Deprecated.
	KRegisterD6 KRegisterD0 = 10
	// Deprecated.
	KRegisterD7 KRegisterD0 = 11
)

func (KRegisterD0) String added in v0.5.1

func (e KRegisterD0) String() string

type KRelativeFolder added in v0.5.1

type KRelativeFolder uint32
const (
	KRedirectedRelativeFolder KRelativeFolder = 'r'<<24 | 'r'<<16 | 'e'<<8 | 'l' // 'rrel'
	KRelativeFolderValue      KRelativeFolder = 'r'<<24 | 'e'<<16 | 'l'<<8 | 'f' // 'relf'
	KSpecialFolder            KRelativeFolder = 's'<<24 | 'p'<<16 | 'c'<<8 | 'f' // 'spcf'
)

func (KRelativeFolder) String added in v0.5.1

func (e KRelativeFolder) String() string

type KResFileNotOpened added in v0.5.1

type KResFileNotOpened int32
const (
	// Deprecated.
	KResFileNotOpenedValue KResFileNotOpened = -1
	// Deprecated.
	KSystemResFile KResFileNotOpened = 0
)

func (KResFileNotOpened) String added in v0.5.1

func (e KResFileNotOpened) String() string

type KResolveAlias added in v0.5.1

type KResolveAlias uint32
const (
	// Deprecated.
	KResolveAliasFileNoUI KResolveAlias = 0x1
	// Deprecated.
	KResolveAliasTryFileIDFirst KResolveAlias = 0x2
)

func (KResolveAlias) String added in v0.5.1

func (e KResolveAlias) String() string

type KRoutineDescriptor added in v0.5.1

type KRoutineDescriptor uint32
const (
	// Deprecated.
	KRoutineDescriptorVersion KRoutineDescriptor = 7
)

func (KRoutineDescriptor) String added in v0.5.1

func (e KRoutineDescriptor) String() string

type KRoutineIs added in v0.5.1

type KRoutineIs uint32
const (
	// Deprecated.
	KRoutineIsDispatchedDefaultRoutine KRoutineIs = 0x10
	// Deprecated.
	KRoutineIsNotDispatchedDefaultRoutine KRoutineIs = 0
)

func (KRoutineIs) String added in v0.5.1

func (e KRoutineIs) String() string

type KRoutingResource added in v0.5.1

type KRoutingResource uint32
const (
	KRoutingResourceID   KRoutingResource = 0
	KRoutingResourceType KRoutingResource = 'r'<<24 | 'o'<<16 | 'u'<<8 | 't' // 'rout'
)

func (KRoutingResource) String added in v0.5.1

func (e KRoutingResource) String() string

type KRsrcChain added in v0.5.1

type KRsrcChain uint32
const (
	// Deprecated.
	KRsrcChainAboveAllMaps KRsrcChain = 4
	// Deprecated.
	KRsrcChainAboveApplicationMap KRsrcChain = 2
	// Deprecated.
	KRsrcChainBelowApplicationMap KRsrcChain = 1
	// Deprecated.
	KRsrcChainBelowSystemMap KRsrcChain = 0
)

func (KRsrcChain) String added in v0.5.1

func (e KRsrcChain) String() string

type KSKSearchOption

type KSKSearchOption uint32
const (
	// KSKSearchOptionDefault: # Discussion
	KSKSearchOptionDefault KSKSearchOption = 0
	// KSKSearchOptionFindSimilar: This option alters query behavior so that Search Kit returns references to documents that are similar to an example text string.
	KSKSearchOptionFindSimilar KSKSearchOption = 4
	// KSKSearchOptionNoRelevanceScores: This option saves time during a search by suppressing the computation of relevance scores.
	KSKSearchOptionNoRelevanceScores KSKSearchOption = 1
	// KSKSearchOptionSpaceMeansOR: This option alters query behavior so that spaces are interpreted as Boolean [OR] operators.
	KSKSearchOptionSpaceMeansOR KSKSearchOption = 2
)

func (KSKSearchOption) String

func (e KSKSearchOption) String() string

type KSOA added in v0.5.1

type KSOA uint32
const (
	KSOAP1999Schema KSOA = 's'<<24 | 's'<<16 | '9'<<8 | '9' // 'ss99'
	KSOAP2001Schema KSOA = 's'<<24 | 's'<<16 | '0'<<8 | '1' // 'ss01'
)

func (KSOA) String added in v0.5.1

func (e KSOA) String() string

type KSSp

type KSSp int32
const (
	KSSpCantInstallErr      KSSp = -30342
	KSSpInternalErr         KSSp = -30340
	KSSpParallelUpVectorErr KSSp = -30343
	KSSpScaleToZeroErr      KSSp = -30344
	KSSpVersionErr          KSSp = -30341
)

func (KSSp) String

func (e KSSp) String() string

type KSecOptionReserved added in v0.5.1

type KSecOptionReserved uint32
const (
	KCertUsageAllAdd           KSecOptionReserved = 0x7fffff00
	KCertUsageDecryptAdd       KSecOptionReserved = 16384
	KCertUsageDecryptAskAndAdd KSecOptionReserved = 32768
	KCertUsageEncryptAdd       KSecOptionReserved = 4096
	KCertUsageEncryptAskAndAdd KSecOptionReserved = 8192
	KCertUsageKeyExchAdd       KSecOptionReserved = 65536
	KCertUsageKeyExchAskAndAdd KSecOptionReserved = 131072
	KCertUsageRootAdd          KSecOptionReserved = 262144
	KCertUsageRootAskAndAdd    KSecOptionReserved = 524288
	KCertUsageSSLAdd           KSecOptionReserved = 1048576
	KCertUsageSSLAskAndAdd     KSecOptionReserved = 2097152
	KCertUsageShift            KSecOptionReserved = 8
	KCertUsageSigningAdd       KSecOptionReserved = 256
	KCertUsageSigningAskAndAdd KSecOptionReserved = 512
	KCertUsageVerifyAdd        KSecOptionReserved = 1024
	KCertUsageVerifyAskAndAdd  KSecOptionReserved = 2048
	KSecOptionReservedValue    KSecOptionReserved = 0xff
)

func (KSecOptionReserved) String added in v0.5.1

func (e KSecOptionReserved) String() string

type KSelectorsAre added in v0.5.1

type KSelectorsAre uint32
const (
	// Deprecated.
	KSelectorsAreIndexable KSelectorsAre = 0x1
	// Deprecated.
	KSelectorsAreNotIndexable KSelectorsAre = 0
)

func (KSelectorsAre) String added in v0.5.1

func (e KSelectorsAre) String() string

type KServicesFolder added in v0.5.1

type KServicesFolder uint32
const (
	// Deprecated.
	KServicesFolderType KServicesFolder = 's'<<24 | 'v'<<16 | 'c'<<8 | 's' // 'svcs'
)

func (KServicesFolder) String added in v0.5.1

func (e KServicesFolder) String() string

type KSharedLibrariesFolderType added in v0.5.1

type KSharedLibrariesFolderType uint32
const (
	// Deprecated.
	KFavoritesFolderType KSharedLibrariesFolderType = 'f'<<24 | 'a'<<16 | 'v'<<8 | 's' // 'favs'
	// Deprecated.
	KFolderActionsFolderType KSharedLibrariesFolderType = 'f'<<24 | 'a'<<16 | 's'<<8 | 'f' // 'fasf'
	// Deprecated.
	KInstallerLogsFolderType KSharedLibrariesFolderType = 'i'<<24 | 'l'<<16 | 'g'<<8 | 'f' // 'ilgf'
	// Deprecated.
	KInternetSearchSitesFolderType KSharedLibrariesFolderType = 'i'<<24 | 's'<<16 | 's'<<8 | 'f' // 'issf'
	// Deprecated.
	KKeychainFolderType KSharedLibrariesFolderType = 'k'<<24 | 'c'<<16 | 'h'<<8 | 'n' // 'kchn'
	// Deprecated.
	KScriptsFolderType KSharedLibrariesFolderType = 0x736372c4
	// Deprecated.
	KSharedLibrariesFolderTypeValue KSharedLibrariesFolderType = 0xc46c6962
	// Deprecated.
	KSpeakableItemsFolderType KSharedLibrariesFolderType = 's'<<24 | 'p'<<16 | 'k'<<8 | 'i' // 'spki'
	// Deprecated.
	KThemesFolderType KSharedLibrariesFolderType = 't'<<24 | 'h'<<16 | 'm'<<8 | 'e' // 'thme'
	// Deprecated.
	KUtilitiesFolderType KSharedLibrariesFolderType = 0x757469c4
	// Deprecated.
	KVoicesFolderType KSharedLibrariesFolderType = 'f'<<24 | 'v'<<16 | 'o'<<8 | 'c' // 'fvoc'
)

func (KSharedLibrariesFolderType) String added in v0.5.1

type KSharingPrivs

type KSharingPrivs uint32
const (
	KSharingPrivsNotApplicableIcon KSharingPrivs = 's'<<24 | 'h'<<16 | 'n'<<8 | 'a' // 'shna'
	KSharingPrivsReadOnlyIcon      KSharingPrivs = 's'<<24 | 'h'<<16 | 'r'<<8 | 'o' // 'shro'
	KSharingPrivsReadWriteIcon     KSharingPrivs = 's'<<24 | 'h'<<16 | 'r'<<8 | 'w' // 'shrw'
	KSharingPrivsUnknownIcon       KSharingPrivs = 's'<<24 | 'h'<<16 | 'u'<<8 | 'k' // 'shuk'
	KSharingPrivsWritableIcon      KSharingPrivs = 'w'<<24 | 'r'<<16 | 'i'<<8 | 't' // 'writ'
)

func (KSharingPrivs) String

func (e KSharingPrivs) String() string

type KShiftJIS added in v0.5.1

type KShiftJIS uint32
const (
	KShiftJIS_BasicVariant   KShiftJIS = 0
	KShiftJIS_DOSVariant     KShiftJIS = 1
	KShiftJIS_MusicCDVariant KShiftJIS = 2
)

func (KShiftJIS) String added in v0.5.1

func (e KShiftJIS) String() string

type KSleepRequest added in v0.5.1

type KSleepRequest uint32
const (
	KDeviceInitiatedWake KSleepRequest = 18
	KDozeDemand          KSleepRequest = 7
	KDozeRequest         KSleepRequest = 9
	KDozeToFullWakeUp    KSleepRequest = 20
	KDozeWakeUp          KSleepRequest = 8
	KEnterIdle           KSleepRequest = 24
	KEnterRun            KSleepRequest = 11
	KEnterStandby        KSleepRequest = 10
	KExitIdle            KSleepRequest = 26
	KGetPowerInfo        KSleepRequest = 21
	KGetPowerLevel       KSleepRequest = 16
	KGetWakeOnNetInfo    KSleepRequest = 22
	KSetPowerLevel       KSleepRequest = 17
	KSleepDemand         KSleepRequest = 2
	KSleepDeny           KSleepRequest = 5
	KSleepNow            KSleepRequest = 6
	KSleepRequestValue   KSleepRequest = 1
	KSleepRevoke         KSleepRequest = 4
	KSleepUnlock         KSleepRequest = 4
	KSleepWakeUp         KSleepRequest = 3
	KStillIdle           KSleepRequest = 25
	KSuspendDemand       KSleepRequest = 13
	KSuspendRequest      KSleepRequest = 12
	KSuspendRevoke       KSleepRequest = 14
	KSuspendWakeToDoze   KSleepRequest = 23
	KSuspendWakeUp       KSleepRequest = 15
	KWakeToDoze          KSleepRequest = 19
)

func (KSleepRequest) String added in v0.5.1

func (e KSleepRequest) String() string

type KSpecial added in v0.5.1

type KSpecial uint32
const (
	// Deprecated.
	KSpecialCaseValue KSpecial = 0xf
)

func (KSpecial) String added in v0.5.1

func (e KSpecial) String() string

type KSpecialCase added in v0.5.1

type KSpecialCase uint32
const (
	// Deprecated.
	KSpecialCaseCaretHook KSpecialCase = 0
	// Deprecated.
	KSpecialCaseDrawHook KSpecialCase = 4
	// Deprecated.
	KSpecialCaseEOLHook KSpecialCase = 1
	// Deprecated.
	KSpecialCaseGNEFilterProc KSpecialCase = 11
	// Deprecated.
	KSpecialCaseHighHook KSpecialCase = 0
	// Deprecated.
	KSpecialCaseHitTestHook KSpecialCase = 5
	// Deprecated.
	KSpecialCaseMBarHook KSpecialCase = 12
	// Deprecated.
	KSpecialCaseNWidthHook KSpecialCase = 3
	// Deprecated.
	KSpecialCaseProtocolHandler KSpecialCase = 7
	// Deprecated.
	KSpecialCaseSocketListener KSpecialCase = 8
	// Deprecated.
	KSpecialCaseTEDoText KSpecialCase = 10
	// Deprecated.
	KSpecialCaseTEFindWord KSpecialCase = 6
	// Deprecated.
	KSpecialCaseTERecalc KSpecialCase = 9
	// Deprecated.
	KSpecialCaseTextWidthHook KSpecialCase = 2
	// Deprecated.
	KSpecialCaseWidthHook KSpecialCase = 2
)

func (KSpecialCase) String added in v0.5.1

func (e KSpecialCase) String() string

type KStartupFolderIconResource

type KStartupFolderIconResource int32
const (
	KControlPanelFolderIconResource KStartupFolderIconResource = -3976
	KDropFolderIconResource         KStartupFolderIconResource = -3979
	KExtensionsFolderIconResource   KStartupFolderIconResource = -3973
	KFontsFolderIconResource        KStartupFolderIconResource = -3968
	KFullTrashIconResource          KStartupFolderIconResource = -3984
	KMountedFolderIconResource      KStartupFolderIconResource = -3977
	KOwnedFolderIconResource        KStartupFolderIconResource = -3980
	KPreferencesFolderIconResource  KStartupFolderIconResource = -3974
	KPrintMonitorFolderIconResource KStartupFolderIconResource = -3975
	KSharedFolderIconResource       KStartupFolderIconResource = -3978
	KStartupFolderIconResourceValue KStartupFolderIconResource = -3981
)

func (KStartupFolderIconResource) String

type KSystemFolderAliasType added in v0.5.1

type KSystemFolderAliasType uint32
const (
	KAppleMenuFolderAliasType        KSystemFolderAliasType = 'f'<<24 | 'a'<<16 | 'a'<<8 | 'm' // 'faam'
	KControlPanelFolderAliasType     KSystemFolderAliasType = 'f'<<24 | 'a'<<16 | 'c'<<8 | 't' // 'fact'
	KExtensionFolderAliasType        KSystemFolderAliasType = 'f'<<24 | 'a'<<16 | 'e'<<8 | 'x' // 'faex'
	KPreferencesFolderAliasType      KSystemFolderAliasType = 'f'<<24 | 'a'<<16 | 'p'<<8 | 'f' // 'fapf'
	KPrintMonitorDocsFolderAliasType KSystemFolderAliasType = 'f'<<24 | 'a'<<16 | 'p'<<8 | 'n' // 'fapn'
	KStartupFolderAliasType          KSystemFolderAliasType = 'f'<<24 | 'a'<<16 | 's'<<8 | 't' // 'fast'
	KSystemFolderAliasTypeValue      KSystemFolderAliasType = 'f'<<24 | 'a'<<16 | 's'<<8 | 'y' // 'fasy'
)

func (KSystemFolderAliasType) String added in v0.5.1

func (e KSystemFolderAliasType) String() string

type KSystemFolderType added in v0.5.1

type KSystemFolderType uint32
const (
	// Deprecated.
	KALMLocationsFolderType KSystemFolderType = 'f'<<24 | 'a'<<16 | 'l'<<8 | 'l' // 'fall'
	// Deprecated.
	KALMModulesFolderType KSystemFolderType = 'w'<<24 | 'a'<<16 | 'l'<<8 | 'k' // 'walk'
	// Deprecated.
	KALMPreferencesFolderType KSystemFolderType = 't'<<24 | 'r'<<16 | 'i'<<8 | 'p' // 'trip'
	// Deprecated.
	KAppearanceFolderType KSystemFolderType = 'a'<<24 | 'p'<<16 | 'p'<<8 | 'r' // 'appr'
	// Deprecated.
	KAppleExtrasFolderType KSystemFolderType = 0x616578c4
	// Deprecated.
	KAppleMenuFolderType KSystemFolderType = 'a'<<24 | 'm'<<16 | 'n'<<8 | 'u' // 'amnu'
	// Deprecated.
	KAppleshareAutomountServerAliasesFolderType KSystemFolderType = 0x737276c4
	// Deprecated.
	KAssistantsFolderType KSystemFolderType = 0x617374c4
	// Deprecated.
	KContextualMenuItemsFolderType KSystemFolderType = 'c'<<24 | 'm'<<16 | 'n'<<8 | 'u' // 'cmnu'
	// Deprecated.
	KControlPanelDisabledFolderType KSystemFolderType = 'c'<<24 | 't'<<16 | 'r'<<8 | 'D' // 'ctrD'
	// Deprecated.
	KControlPanelFolderType KSystemFolderType = 'c'<<24 | 't'<<16 | 'r'<<8 | 'l' // 'ctrl'
	// Deprecated.
	KControlStripModulesFolderType KSystemFolderType = 's'<<24 | 'd'<<16 | 'e'<<8 | 'v' // 'sdev'
	// Deprecated.
	KDesktopPicturesFolderType KSystemFolderType = 0x647470c4
	// Deprecated.
	KDisplayExtensionsFolderType KSystemFolderType = 'd'<<24 | 's'<<16 | 'p'<<8 | 'l' // 'dspl'
	// Deprecated.
	KEditorsFolderType KSystemFolderType = 'o'<<24 | 'd'<<16 | 'e'<<8 | 'd' // 'oded'
	// Deprecated.
	KExtensionDisabledFolderType KSystemFolderType = 'e'<<24 | 'x'<<16 | 't'<<8 | 'D' // 'extD'
	// Deprecated.
	KExtensionFolderType KSystemFolderType = 'e'<<24 | 'x'<<16 | 't'<<8 | 'n' // 'extn'
	// Deprecated.
	KFindByContentFolderType KSystemFolderType = 'f'<<24 | 'b'<<16 | 'c'<<8 | 'f' // 'fbcf'
	// Deprecated.
	KFindByContentPluginsFolderType KSystemFolderType = 'f'<<24 | 'b'<<16 | 'c'<<8 | 'p' // 'fbcp'
	// Deprecated.
	KFindSupportFolderType KSystemFolderType = 'f'<<24 | 'n'<<16 | 'd'<<8 | 's' // 'fnds'
	// Deprecated.
	KGenEditorsFolderType KSystemFolderType = 0xc4656469
	// Deprecated.
	KHelpFolderType KSystemFolderType = 0xc4686c70
	// Deprecated.
	KInternetFolderType KSystemFolderType = 0x696e74c4
	// Deprecated.
	KInternetPlugInFolderType KSystemFolderType = 0xc46e6574
	// Deprecated.
	KLauncherItemsFolderType KSystemFolderType = 'l'<<24 | 'a'<<16 | 'u'<<8 | 'n' // 'laun'
	// Deprecated.
	KLocalesFolderType KSystemFolderType = 0xc46c6f63
	// Deprecated.
	KMacOSReadMesFolderType KSystemFolderType = 0x6d6f72c4
	// Deprecated.
	KModemScriptsFolderType KSystemFolderType = 0xc46d6f64
	// Deprecated.
	KMultiprocessingFolderType KSystemFolderType = 'm'<<24 | 'p'<<16 | 'x'<<8 | 'f' // 'mpxf'
	// Deprecated.
	KOpenDocEditorsFolderType KSystemFolderType = 0xc46f6466
	// Deprecated.
	KOpenDocFolderType KSystemFolderType = 'o'<<24 | 'd'<<16 | 'o'<<8 | 'd' // 'odod'
	// Deprecated.
	KOpenDocLibrariesFolderType KSystemFolderType = 'o'<<24 | 'd'<<16 | 'l'<<8 | 'b' // 'odlb'
	// Deprecated.
	KOpenDocShellPlugInsFolderType KSystemFolderType = 'o'<<24 | 'd'<<16 | 's'<<8 | 'p' // 'odsp'
	// Deprecated.
	KPreMacOS91AppleExtrasFolderType KSystemFolderType = 0x8c6578c4
	// Deprecated.
	KPreMacOS91ApplicationsFolderType KSystemFolderType = 0x8c707073
	// Deprecated.
	KPreMacOS91AssistantsFolderType KSystemFolderType = 0x8c7374c4
	// Deprecated.
	KPreMacOS91AutomountedServersFolderType KSystemFolderType = 0xa77276c4
	// Deprecated.
	KPreMacOS91InstallerLogsFolderType KSystemFolderType = 0x946c6766
	// Deprecated.
	KPreMacOS91InternetFolderType KSystemFolderType = 0x946e74c4
	// Deprecated.
	KPreMacOS91MacOSReadMesFolderType KSystemFolderType = 0xb56f72c4
	// Deprecated.
	KPreMacOS91StationeryFolderType KSystemFolderType = 0xbf647374
	// Deprecated.
	KPreMacOS91UtilitiesFolderType KSystemFolderType = 0x9f7469c4
	// Deprecated.
	KPrintMonitorDocsFolderType KSystemFolderType = 'p'<<24 | 'r'<<16 | 'n'<<8 | 't' // 'prnt'
	// Deprecated.
	KPrintingPlugInsFolderType KSystemFolderType = 'p'<<24 | 'p'<<16 | 'l'<<8 | 'g' // 'pplg'
	// Deprecated.
	KQuickTimeExtensionsFolderType KSystemFolderType = 'q'<<24 | 't'<<16 | 'e'<<8 | 'x' // 'qtex'
	// Deprecated.
	KRecentApplicationsFolderType KSystemFolderType = 'r'<<24 | 'a'<<16 | 'p'<<8 | 'p' // 'rapp'
	// Deprecated.
	KRecentDocumentsFolderType KSystemFolderType = 'r'<<24 | 'd'<<16 | 'o'<<8 | 'c' // 'rdoc'
	// Deprecated.
	KRecentServersFolderType KSystemFolderType = 'r'<<24 | 's'<<16 | 'v'<<8 | 'r' // 'rsvr'
	// Deprecated.
	KShutdownFolderType KSystemFolderType = 's'<<24 | 'h'<<16 | 'd'<<8 | 'f' // 'shdf'
	// Deprecated.
	KShutdownItemsDisabledFolderType KSystemFolderType = 's'<<24 | 'h'<<16 | 'd'<<8 | 'D' // 'shdD'
	// Deprecated.
	KSoundSetsFolderType KSystemFolderType = 's'<<24 | 'n'<<16 | 'd'<<8 | 's' // 'snds'
	// Deprecated.
	KStartupFolderType KSystemFolderType = 's'<<24 | 't'<<16 | 'r'<<8 | 't' // 'strt'
	// Deprecated.
	KStartupItemsDisabledFolderType KSystemFolderType = 's'<<24 | 't'<<16 | 'r'<<8 | 'D' // 'strD'
	// Deprecated.
	KStationeryFolderType KSystemFolderType = 'o'<<24 | 'd'<<16 | 's'<<8 | 't' // 'odst'
	// Deprecated.
	KSystemControlPanelFolderType KSystemFolderType = 's'<<24 | 'c'<<16 | 't'<<8 | 'l' // 'sctl'
	// Deprecated.
	KSystemDesktopFolderType KSystemFolderType = 's'<<24 | 'd'<<16 | 's'<<8 | 'k' // 'sdsk'
	// Deprecated.
	KSystemExtensionDisabledFolderType KSystemFolderType = 'm'<<24 | 'a'<<16 | 'c'<<8 | 'D' // 'macD'
	// Deprecated.
	KSystemFolderTypeValue KSystemFolderType = 'm'<<24 | 'a'<<16 | 'c'<<8 | 's' // 'macs'
	// Deprecated.
	KSystemTrashFolderType KSystemFolderType = 's'<<24 | 't'<<16 | 'r'<<8 | 's' // 'strs'
	// Deprecated.
	KVolumeSettingsFolderType KSystemFolderType = 'v'<<24 | 's'<<16 | 'f'<<8 | 'd' // 'vsfd'
)

func (KSystemFolderType) String added in v0.5.1

func (e KSystemFolderType) String() string

type KSystemIcons added in v0.5.1

type KSystemIcons uint32
const (
	KSystemIconsCreator KSystemIcons = 'm'<<24 | 'a'<<16 | 'c'<<8 | 's' // 'macs'
)

func (KSystemIcons) String added in v0.5.1

func (e KSystemIcons) String() string

type KTECAvailableEncodingsResType added in v0.5.1

type KTECAvailableEncodingsResType uint32
const (
	KTECAvailableEncodingsResTypeValue KTECAvailableEncodingsResType = 'c'<<24 | 'v'<<16 | 'e'<<8 | 'n' // 'cven'
	KTECAvailableSniffersResType       KTECAvailableEncodingsResType = 'c'<<24 | 'v'<<16 | 's'<<8 | 'f' // 'cvsf'
	KTECConversionInfoResType          KTECAvailableEncodingsResType = 'c'<<24 | 'v'<<16 | 'i'<<8 | 'f' // 'cvif'
	KTECInternetNamesResType           KTECAvailableEncodingsResType = 'c'<<24 | 'v'<<16 | 'm'<<8 | 'm' // 'cvmm'
	KTECMailEncodingsResType           KTECAvailableEncodingsResType = 'c'<<24 | 'v'<<16 | 'm'<<8 | 'l' // 'cvml'
	KTECSubTextEncodingsResType        KTECAvailableEncodingsResType = 'c'<<24 | 'v'<<16 | 's'<<8 | 'b' // 'cvsb'
	KTECWebEncodingsResType            KTECAvailableEncodingsResType = 'c'<<24 | 'v'<<16 | 'w'<<8 | 'b' // 'cvwb'
)

func (KTECAvailableEncodingsResType) String added in v0.6.17

type KTECDisableFallbacksBit added in v0.5.1

type KTECDisableFallbacksBit uint32
const (
	KTECDisableFallbacksBitValue KTECDisableFallbacksBit = 16
	KTECDisableLooseMappingsBit  KTECDisableFallbacksBit = 17
)

func (KTECDisableFallbacksBit) String added in v0.6.17

func (e KTECDisableFallbacksBit) String() string

type KTECDisableFallbacksMask added in v0.5.1

type KTECDisableFallbacksMask uint32
const (
	KTECDisableFallbacksMaskValue KTECDisableFallbacksMask = 65536
	KTECDisableLooseMappingsMask  KTECDisableFallbacksMask = 131072
)

func (KTECDisableFallbacksMask) String added in v0.6.17

func (e KTECDisableFallbacksMask) String() string

type KTECInfoCurrent added in v0.5.1

type KTECInfoCurrent uint32
const (
	KTECInfoCurrentFormat KTECInfoCurrent = 2
)

func (KTECInfoCurrent) String added in v0.5.1

func (e KTECInfoCurrent) String() string

type KTECInternetName added in v0.5.1

type KTECInternetName uint32
const (
	KTECInternetNameDefaultUsageMask  KTECInternetName = 0
	KTECInternetNameStrictUsageMask   KTECInternetName = 1
	KTECInternetNameTolerantUsageMask KTECInternetName = 2
)

func (KTECInternetName) String added in v0.5.1

func (e KTECInternetName) String() string

type KTECKeepInfoFixBit added in v0.5.1

type KTECKeepInfoFixBit uint32
const (
	KTECAddFallbackInterruptBit KTECKeepInfoFixBit = 7
	// KTECAddForceASCIIChangesBit: This is set if the new control flag bits `kUnicodeForceASCIIRangeBit` and `kUnicodeNoHalfwidthCharsBit` are supported for use with the functions [ConvertFromTextToUnicode], [ConvertFromUnicodeToText], and so forth.
	KTECAddForceASCIIChangesBit KTECKeepInfoFixBit = 4
	KTECAddTextRunHeuristicsBit KTECKeepInfoFixBit = 6
	// KTECFallbackTextLengthFixBit: # Discussion
	KTECFallbackTextLengthFixBit KTECKeepInfoFixBit = 1
	// KTECKeepInfoFixBitValue: This is set if the Unicode Converter has a bug fix to stop ignoring certain control flags
	KTECKeepInfoFixBitValue KTECKeepInfoFixBit = 0
	// KTECPreferredEncodingFixBit: This is set to indicate that if a preferred encoding is specified for [CreateUnicodeToTextRunInfo] and related functions, they handle it correctly even if it does not match the system script.
	KTECPreferredEncodingFixBit KTECKeepInfoFixBit = 5
	// KTECTextRunBitClearFixBit: This is set if [ConvertFromUnicodeToTextRun] and [ConvertFromUnicodeToScriptCodeRun] function correctly if the `kUnicodeTextRunBit` is clear.
	KTECTextRunBitClearFixBit KTECKeepInfoFixBit = 2
	// KTECTextToUnicodeScanFixBit: # Discussion
	KTECTextToUnicodeScanFixBit KTECKeepInfoFixBit = 3
)

func (KTECKeepInfoFixBit) String added in v0.6.17

func (e KTECKeepInfoFixBit) String() string

type KTECKeepInfoFixMask added in v0.5.1

type KTECKeepInfoFixMask uint32
const (
	KTECAddFallbackInterruptMask  KTECKeepInfoFixMask = 128
	KTECAddForceASCIIChangesMask  KTECKeepInfoFixMask = 16
	KTECAddTextRunHeuristicsMask  KTECKeepInfoFixMask = 64
	KTECFallbackTextLengthFixMask KTECKeepInfoFixMask = 2
	KTECKeepInfoFixMaskValue      KTECKeepInfoFixMask = 1
	KTECPreferredEncodingFixMask  KTECKeepInfoFixMask = 32
	KTECTextRunBitClearFixMask    KTECKeepInfoFixMask = 4
	KTECTextToUnicodeScanFixMask  KTECKeepInfoFixMask = 8
)

func (KTECKeepInfoFixMask) String added in v0.6.17

func (e KTECKeepInfoFixMask) String() string

type KTECPlugin added in v0.5.1

type KTECPlugin uint32
const (
	KTECPluginCreator   KTECPlugin = 'e'<<24 | 'n'<<16 | 'c'<<8 | 'v' // 'encv'
	KTECPluginManyToOne KTECPlugin = 'm'<<24 | 't'<<16 | 'o'<<8 | 'o' // 'mtoo'
	KTECPluginOneToMany KTECPlugin = 'o'<<24 | 't'<<16 | 'o'<<8 | 'm' // 'otom'
	KTECPluginOneToOne  KTECPlugin = 'o'<<24 | 't'<<16 | 'o'<<8 | 'o' // 'otoo'
	KTECPluginSniffObj  KTECPlugin = 's'<<24 | 'n'<<16 | 'i'<<8 | 'f' // 'snif'
	KTECPluginType      KTECPlugin = 'e'<<24 | 'c'<<16 | 'p'<<8 | 'g' // 'ecpg'
)

func (KTECPlugin) String added in v0.5.1

func (e KTECPlugin) String() string

type KTECPluginDispatchTable added in v0.5.1

type KTECPluginDispatchTable uint32
const (
	// KTECPluginDispatchTableCurrentVersion: A meta value that specifies the current version.
	KTECPluginDispatchTableCurrentVersion KTECPluginDispatchTable = 65538
	// KTECPluginDispatchTableVersion1: Specifies versions 1.0 through 1.0.3.
	KTECPluginDispatchTableVersion1 KTECPluginDispatchTable = 0x10000
	// KTECPluginDispatchTableVersion1_1: Specifies version 1.1.
	KTECPluginDispatchTableVersion1_1 KTECPluginDispatchTable = 0x10001
	// KTECPluginDispatchTableVersion1_2: Specifies version 1.2.
	KTECPluginDispatchTableVersion1_2 KTECPluginDispatchTable = 0x10002
)

func (KTECPluginDispatchTable) String added in v0.5.1

func (e KTECPluginDispatchTable) String() string

type KTECSignature added in v0.5.1

type KTECSignature uint32
const (
	KTECChinesePluginSignature  KTECSignature = 'p'<<24 | 'z'<<16 | 'h'<<8 | 'o' // 'pzho'
	KTECJapanesePluginSignature KTECSignature = 'p'<<24 | 'j'<<16 | 'p'<<8 | 'n' // 'pjpn'
	KTECKoreanPluginSignature   KTECSignature = 'p'<<24 | 'k'<<16 | 'o'<<8 | 'r' // 'pkor'
	KTECSignatureValue          KTECSignature = 'e'<<24 | 'n'<<16 | 'c'<<8 | 'v' // 'encv'
	KTECUnicodePluginSignature  KTECSignature = 'p'<<24 | 'u'<<16 | 'n'<<8 | 'i' // 'puni'
)

func (KTECSignature) String added in v0.6.17

func (e KTECSignature) String() string

type KTMTask added in v0.5.1

type KTMTask uint32
const (
	// Deprecated.
	KTMTaskActive KTMTask = 32768
)

func (KTMTask) String added in v0.5.1

func (e KTMTask) String() string

type KTSM added in v0.5.1

type KTSM uint32
const (
	KTSMInsideOfActiveInputArea KTSM = 3
	KTSMInsideOfBody            KTSM = 2
	KTSMOutsideOfBody           KTSM = 1
)

func (KTSM) String added in v0.5.1

func (e KTSM) String() string

type KTSMHilite added in v0.5.1

type KTSMHilite uint32
const (
	// KTSMHiliteBlockFillText: Specifies block fill highlight style.
	KTSMHiliteBlockFillText KTSMHilite = 6
	// KTSMHiliteCaretPosition: Specifies caret position.
	KTSMHiliteCaretPosition KTSMHilite = 1
	// KTSMHiliteConvertedText: Specifies range of converted text.
	KTSMHiliteConvertedText KTSMHilite = 4
	// KTSMHiliteNoHilite: Specifies range of non-highlighted text.
	KTSMHiliteNoHilite KTSMHilite = 9
	// KTSMHiliteOutlineText: Specifies outline highlight style.
	KTSMHiliteOutlineText KTSMHilite = 7
	// KTSMHiliteRawText: Specifies range of raw text.
	KTSMHiliteRawText KTSMHilite = 2
	// KTSMHiliteSelectedConvertedText: Specifies range of selected converted text.
	KTSMHiliteSelectedConvertedText KTSMHilite = 5
	// KTSMHiliteSelectedRawText: Specifies range of selected raw text.
	KTSMHiliteSelectedRawText KTSMHilite = 3
	// KTSMHiliteSelectedText: Specifies selected highlight style.
	KTSMHiliteSelectedText KTSMHilite = 8
)

func (KTSMHilite) String added in v0.5.1

func (e KTSMHilite) String() string

type KTXN

type KTXN int32
const (
	KTXNATSUIIsNotInstalledErr              KTXN = -22016
	KTXNAlreadyInitializedErr               KTXN = -22012
	KTXNAttributeTagInvalidForRunErr        KTXN = -22009
	KTXNBadDefaultFileTypeWarning           KTXN = -22005
	KTXNCannotAddFrameErr                   KTXN = -22001
	KTXNCannotSetAutoIndentErr              KTXN = -22006
	KTXNCannotTurnTSMOffWhenUsingUnicodeErr KTXN = -22013
	KTXNCopyNotAllowedInEchoModeErr         KTXN = -22014
	KTXNDataTypeNotAllowedErr               KTXN = -22015
	KTXNEndIterationErr                     KTXN = -22000
	KTXNIllegalToCrossDataBoundariesErr     KTXN = -22003
	KTXNInvalidFrameIDErr                   KTXN = -22002
	KTXNInvalidRunIndex                     KTXN = -22011
	KTXNNoMatchErr                          KTXN = -22008
	KTXNOutsideOfFrameErr                   KTXN = -22018
	KTXNOutsideOfLineErr                    KTXN = -22017
	KTXNRunIndexOutofBoundsErr              KTXN = -22007
	KTXNSomeOrAllTagsInvalidForRunErr       KTXN = -22010
	KTXNUserCanceledOperationErr            KTXN = -22004
)

func (KTXN) String

func (e KTXN) String() string

type KTextEncodingDOSLatinUS added in v0.5.1

type KTextEncodingDOSLatinUS uint32
const (
	// KTextEncodingDOSArabic: Code page 864.
	KTextEncodingDOSArabic KTextEncodingDOSLatinUS = 0x419
	// KTextEncodingDOSBalticRim: Code page 775.
	KTextEncodingDOSBalticRim KTextEncodingDOSLatinUS = 0x406
	// KTextEncodingDOSCanadianFrench: Code page 863.
	KTextEncodingDOSCanadianFrench KTextEncodingDOSLatinUS = 0x418
	// KTextEncodingDOSChineseSimplif: Code page 936, also for Windows.
	KTextEncodingDOSChineseSimplif KTextEncodingDOSLatinUS = 0x421
	// KTextEncodingDOSChineseTrad: Code page 950, also for Windows.
	KTextEncodingDOSChineseTrad KTextEncodingDOSLatinUS = 0x423
	// KTextEncodingDOSCyrillic: Code page 855, IBM Cyrillic.
	KTextEncodingDOSCyrillic KTextEncodingDOSLatinUS = 0x413
	// KTextEncodingDOSGreek: Code page 737, formerly 437G.
	KTextEncodingDOSGreek KTextEncodingDOSLatinUS = 0x405
	// KTextEncodingDOSGreek1: Code page 851.
	KTextEncodingDOSGreek1 KTextEncodingDOSLatinUS = 0x411
	// KTextEncodingDOSGreek2: Code page 869, IBM Modern Green.
	KTextEncodingDOSGreek2 KTextEncodingDOSLatinUS = 0x41c
	// KTextEncodingDOSHebrew: Code page 862.
	KTextEncodingDOSHebrew KTextEncodingDOSLatinUS = 0x417
	// KTextEncodingDOSIcelandic: Code page 861.
	KTextEncodingDOSIcelandic KTextEncodingDOSLatinUS = 0x416
	// KTextEncodingDOSJapanese: Code page 932, also for Windows
	KTextEncodingDOSJapanese KTextEncodingDOSLatinUS = 0x420
	// KTextEncodingDOSKorean: Code page 949, also for Windows; unified Hangul.
	KTextEncodingDOSKorean KTextEncodingDOSLatinUS = 0x422
	// KTextEncodingDOSLatin1: Code page 860.
	KTextEncodingDOSLatin1 KTextEncodingDOSLatinUS = 0x410
	// KTextEncodingDOSLatin2: Code page 852, Slavic.
	KTextEncodingDOSLatin2 KTextEncodingDOSLatinUS = 0x412
	// KTextEncodingDOSLatinUSValue: Code page 437.
	KTextEncodingDOSLatinUSValue KTextEncodingDOSLatinUS = 0x400
	// KTextEncodingDOSNordic: Cde page 865.
	KTextEncodingDOSNordic KTextEncodingDOSLatinUS = 0x41a
	// KTextEncodingDOSPortuguese: Code page 860.
	KTextEncodingDOSPortuguese KTextEncodingDOSLatinUS = 0x415
	// KTextEncodingDOSRussian: Code page 866.
	KTextEncodingDOSRussian KTextEncodingDOSLatinUS = 0x41b
	// KTextEncodingDOSThai: Code page 874, also for Windows.
	KTextEncodingDOSThai KTextEncodingDOSLatinUS = 0x41d
	// KTextEncodingDOSTurkish: Code page 857, IBM Turkish.
	KTextEncodingDOSTurkish KTextEncodingDOSLatinUS = 0x414
	// KTextEncodingWindowsANSI: Code page 1252 (alternate name).
	KTextEncodingWindowsANSI KTextEncodingDOSLatinUS = 0x500
	// KTextEncodingWindowsArabic: Code page 1256.
	KTextEncodingWindowsArabic KTextEncodingDOSLatinUS = 0x506
	// KTextEncodingWindowsBalticRim: Code page 1257.
	KTextEncodingWindowsBalticRim KTextEncodingDOSLatinUS = 0x507
	// KTextEncodingWindowsCyrillic: Code page 1251, Slavic Cyrillic.
	KTextEncodingWindowsCyrillic KTextEncodingDOSLatinUS = 0x502
	// KTextEncodingWindowsGreek: Code page 1253.
	KTextEncodingWindowsGreek KTextEncodingDOSLatinUS = 0x503
	// KTextEncodingWindowsHebrew: Code page 1255.
	KTextEncodingWindowsHebrew KTextEncodingDOSLatinUS = 0x505
	// KTextEncodingWindowsKoreanJohab: Code page 1361, for Window NT.
	KTextEncodingWindowsKoreanJohab KTextEncodingDOSLatinUS = 0x510
	// KTextEncodingWindowsLatin1: Code page 1252.
	KTextEncodingWindowsLatin1 KTextEncodingDOSLatinUS = 0x500
	// KTextEncodingWindowsLatin2: Code page 1250, Central Europe.
	KTextEncodingWindowsLatin2 KTextEncodingDOSLatinUS = 0x501
	// KTextEncodingWindowsLatin5: Code page 1254, Turkish.
	KTextEncodingWindowsLatin5 KTextEncodingDOSLatinUS = 0x504
	// KTextEncodingWindowsVietnamese: Code page 1258.
	KTextEncodingWindowsVietnamese KTextEncodingDOSLatinUS = 0x508
)

func (KTextEncodingDOSLatinUS) String added in v0.6.17

func (e KTextEncodingDOSLatinUS) String() string

type KTextEncodingDefault added in v0.5.1

type KTextEncodingDefault uint32
const (
	// KTextEncodingDefaultVariant: The standard default variant for any base encoding.
	KTextEncodingDefaultVariant KTextEncodingDefault = 0
)

func (KTextEncodingDefault) String added in v0.5.1

func (e KTextEncodingDefault) String() string

type KTextEncodingDefaultFormat added in v0.5.1

type KTextEncodingDefaultFormat uint32
const (
	// KTextEncodingDefaultFormatValue: The standard default format for any base encoding.
	KTextEncodingDefaultFormatValue KTextEncodingDefaultFormat = 0
	// KUnicode16BitFormat: The 16-bit character encoding format specified by the Unicode standard, equivalent to the UCS-2 format for ISO 10646.
	KUnicode16BitFormat KTextEncodingDefaultFormat = 0
	// KUnicode32BitFormat: The UCS-4 32-bit format defined for ISO 10646.
	KUnicode32BitFormat   KTextEncodingDefaultFormat = 3
	KUnicodeSCSUFormat    KTextEncodingDefaultFormat = 8
	KUnicodeUTF16BEFormat KTextEncodingDefaultFormat = 4
	KUnicodeUTF16Format   KTextEncodingDefaultFormat = 0
	KUnicodeUTF16LEFormat KTextEncodingDefaultFormat = 5
	KUnicodeUTF32BEFormat KTextEncodingDefaultFormat = 6
	KUnicodeUTF32Format   KTextEncodingDefaultFormat = 3
	KUnicodeUTF32LEFormat KTextEncodingDefaultFormat = 7
	// KUnicodeUTF7Format: The Unicode transformation format in which characters encodings are represented by a sequence of 7-bit values.
	KUnicodeUTF7Format KTextEncodingDefaultFormat = 1
	// KUnicodeUTF8Format: The Unicode transformation format in which characters are represented by a sequence of 8-bit values.
	KUnicodeUTF8Format KTextEncodingDefaultFormat = 2
)

func (KTextEncodingDefaultFormat) String added in v0.5.1

type KTextEncodingEUC added in v0.5.1

type KTextEncodingEUC uint32
const (
	// KTextEncodingEUC_CN: ISO 646, GB 2312-80.
	KTextEncodingEUC_CN KTextEncodingEUC = 0x930
	// KTextEncodingEUC_JP: ISO 646,1-byte katakana,JIS 208 ,JIS 212.
	KTextEncodingEUC_JP KTextEncodingEUC = 0x920
	// KTextEncodingEUC_KR: ISO 646, KS C 5601-1987.
	KTextEncodingEUC_KR KTextEncodingEUC = 0x940
	// KTextEncodingEUC_TW: ISO 646, CNS 11643-1992 Planes 1-16.
	KTextEncodingEUC_TW KTextEncodingEUC = 0x931
)

func (KTextEncodingEUC) String added in v0.5.1

func (e KTextEncodingEUC) String() string

type KTextEncodingFullName added in v0.5.1

type KTextEncodingFullName uint32
const (
	// KTextEncodingBaseName: Requests the name of the base encoding.
	KTextEncodingBaseName KTextEncodingFullName = 1
	// KTextEncodingFormatName: Requests the name of the encoding format, if available.
	KTextEncodingFormatName KTextEncodingFullName = 3
	// KTextEncodingFullNameValue: Requests the full name of the text encoding.
	KTextEncodingFullNameValue KTextEncodingFullName = 0
	// KTextEncodingVariantName: Requests the name of the encoding variant, if available.
	KTextEncodingVariantName KTextEncodingFullName = 2
)

func (KTextEncodingFullName) String added in v0.6.17

func (e KTextEncodingFullName) String() string

type KTextEncodingISO added in v0.5.1

type KTextEncodingISO uint32
const (
	// KTextEncodingISOLatin1: ISO 8859-1.
	KTextEncodingISOLatin1  KTextEncodingISO = 0x201
	KTextEncodingISOLatin10 KTextEncodingISO = 0x210
	// KTextEncodingISOLatin2: ISO 8859-2.
	KTextEncodingISOLatin2 KTextEncodingISO = 0x202
	// KTextEncodingISOLatin3: ISO 8859-3.
	KTextEncodingISOLatin3 KTextEncodingISO = 0x203
	// KTextEncodingISOLatin4: ISO 8859-4.
	KTextEncodingISOLatin4 KTextEncodingISO = 0x204
	// KTextEncodingISOLatin5: ISO 8859-9.
	KTextEncodingISOLatin5 KTextEncodingISO = 0x209
	// KTextEncodingISOLatin6: ISO 8859-10.
	KTextEncodingISOLatin6 KTextEncodingISO = 0x20a
	// KTextEncodingISOLatin7: ISO 8859-13; Baltic Rim
	KTextEncodingISOLatin7 KTextEncodingISO = 0x20d
	// KTextEncodingISOLatin8: ISO 8859-14; Celtic
	KTextEncodingISOLatin8 KTextEncodingISO = 0x20e
	// KTextEncodingISOLatin9: ISO 8859-15, 8859-1; changed for Euro & CP1252 letters
	KTextEncodingISOLatin9 KTextEncodingISO = 0x20f
	// KTextEncodingISOLatinArabic: ISO 8859-6; equivalent to ASMO 708 and DOS CP 708.
	KTextEncodingISOLatinArabic KTextEncodingISO = 0x206
	// KTextEncodingISOLatinCyrillic: ISO 8859-5.
	KTextEncodingISOLatinCyrillic KTextEncodingISO = 0x205
	// KTextEncodingISOLatinGreek: ISO 8859-7.
	KTextEncodingISOLatinGreek KTextEncodingISO = 0x207
	// KTextEncodingISOLatinHebrew: ISO 8859-8.
	KTextEncodingISOLatinHebrew KTextEncodingISO = 0x208
)

func (KTextEncodingISO) String added in v0.5.1

func (e KTextEncodingISO) String() string

type KTextEncodingMacFarsi added in v0.5.1

type KTextEncodingMacFarsi uint32
const (
	// KTextEncodingMacFarsiValue: Uses script code 4, `smArabic`.
	KTextEncodingMacFarsiValue KTextEncodingMacFarsi = 0x8c
	// KTextEncodingMacInuit: Uses script code 28, `smEthiopic`.]
	KTextEncodingMacInuit KTextEncodingMacFarsi = 0xec
	// KTextEncodingMacUkrainian: Uses script code 7, `smCyrillic`.]
	KTextEncodingMacUkrainian KTextEncodingMacFarsi = 0x98
	// KTextEncodingMacVT100: Uses script code 32, `smUninterp`; VT100/102 font from the common toolbox; Latin-1 characters plus box drawing.]
	KTextEncodingMacVT100 KTextEncodingMacFarsi = 0xfc
)

func (KTextEncodingMacFarsi) String added in v0.6.17

func (e KTextEncodingMacFarsi) String() string

type KTextEncodingMacHF added in v0.5.1

type KTextEncodingMacHF uint32
const (
	// KTextEncodingMacHFS: This is a metavalue for a special Mac OS encoding.
	KTextEncodingMacHFS KTextEncodingMacHF = 0xff
)

func (KTextEncodingMacHF) String added in v0.5.1

func (e KTextEncodingMacHF) String() string

type KTextEncodingMacRoman added in v0.5.1

type KTextEncodingMacRoman uint32
const (
	// KTextEncodingMacArabic: The encoding for Mac OS Arabic.
	KTextEncodingMacArabic KTextEncodingMacRoman = 4
	// KTextEncodingMacArmenian: The encoding for Mac OS Armenian.
	KTextEncodingMacArmenian KTextEncodingMacRoman = 24
	// KTextEncodingMacBengali: The encoding for Mac OS Bengali.
	KTextEncodingMacBengali KTextEncodingMacRoman = 13
	// KTextEncodingMacBurmese: The encoding for Mac OS Burmese.
	KTextEncodingMacBurmese KTextEncodingMacRoman = 19
	// KTextEncodingMacCeltic: This Mac OS encoding uses script code 0, `smRoman`.
	KTextEncodingMacCeltic KTextEncodingMacRoman = 39
	// KTextEncodingMacCentralEurRoman: The encoding for Mac OS Central European Roman.
	KTextEncodingMacCentralEurRoman KTextEncodingMacRoman = 29
	// KTextEncodingMacChineseSimp: The encoding for Mac OS simple Chinese.
	KTextEncodingMacChineseSimp KTextEncodingMacRoman = 25
	// KTextEncodingMacChineseTrad: The encoding for Mac OS traditional Chinese.
	KTextEncodingMacChineseTrad KTextEncodingMacRoman = 2
	// KTextEncodingMacCroatian: This Mac OS encoding uses script code 0, `smRoman`.
	KTextEncodingMacCroatian KTextEncodingMacRoman = 36
	// KTextEncodingMacCyrillic: The encoding for Mac OS Cyrillic.
	KTextEncodingMacCyrillic KTextEncodingMacRoman = 7
	// KTextEncodingMacDevanagari: The encoding for Mac OS Devanagari.
	KTextEncodingMacDevanagari KTextEncodingMacRoman = 9
	// KTextEncodingMacDingbats: This Mac OS encoding uses script code 0, `smRoman`.
	KTextEncodingMacDingbats KTextEncodingMacRoman = 34
	// KTextEncodingMacEthiopic: The encoding for Mac OS Ethiopic.
	KTextEncodingMacEthiopic KTextEncodingMacRoman = 28
	// KTextEncodingMacExtArabic: The encoding for Mac OS ExtArabic.
	KTextEncodingMacExtArabic KTextEncodingMacRoman = 31
	// KTextEncodingMacGaelic: This Mac OS encoding uses script code 0, `smRoman`.
	KTextEncodingMacGaelic KTextEncodingMacRoman = 40
	// KTextEncodingMacGeorgian: The encoding for Mac OS Georgian.
	KTextEncodingMacGeorgian KTextEncodingMacRoman = 23
	// KTextEncodingMacGreek: The encoding for Mac OS Greek.
	KTextEncodingMacGreek KTextEncodingMacRoman = 6
	// KTextEncodingMacGujarati: The encoding for Mac OS Gujurati.
	KTextEncodingMacGujarati KTextEncodingMacRoman = 11
	// KTextEncodingMacGurmukhi: The encoding for Mac OS Gurmukhi.
	KTextEncodingMacGurmukhi KTextEncodingMacRoman = 10
	// KTextEncodingMacHebrew: The encoding for Mac OS Hebrew.
	KTextEncodingMacHebrew KTextEncodingMacRoman = 5
	// KTextEncodingMacIcelandic: This Mac OS encoding uses script code 0, `smRoman`.
	KTextEncodingMacIcelandic KTextEncodingMacRoman = 37
	// KTextEncodingMacJapanese: The encoding for Mac OS Japanese.
	KTextEncodingMacJapanese KTextEncodingMacRoman = 1
	// KTextEncodingMacKannada: The encoding for Mac OS Kannada.
	KTextEncodingMacKannada        KTextEncodingMacRoman = 16
	KTextEncodingMacKeyboardGlyphs KTextEncodingMacRoman = 41
	// KTextEncodingMacKhmer: The encoding for Mac OS Khmer.
	KTextEncodingMacKhmer KTextEncodingMacRoman = 20
	// KTextEncodingMacKorean: The encoding for Mac OS Korean.
	KTextEncodingMacKorean KTextEncodingMacRoman = 3
	// KTextEncodingMacLaotian: The encoding for Mac OS Laotian.
	KTextEncodingMacLaotian KTextEncodingMacRoman = 22
	// KTextEncodingMacMalayalam: The encoding for Mac OS Malayalam.
	KTextEncodingMacMalayalam KTextEncodingMacRoman = 17
	// KTextEncodingMacMongolian: The encoding for Mac OS Mongolian.
	KTextEncodingMacMongolian KTextEncodingMacRoman = 27
	// KTextEncodingMacOriya: The encoding for Mac OS Oriya.
	KTextEncodingMacOriya KTextEncodingMacRoman = 12
	// KTextEncodingMacRomanValue: The encoding for Mac OS Roman.
	KTextEncodingMacRomanValue KTextEncodingMacRoman = 0
	// KTextEncodingMacRomanian: This Mac OS encoding uses script code 0, `smRoman`.
	KTextEncodingMacRomanian KTextEncodingMacRoman = 38
	// KTextEncodingMacSinhalese: The encoding for Mac OS Sinhalese.
	KTextEncodingMacSinhalese KTextEncodingMacRoman = 18
	// KTextEncodingMacSymbol: This Mac OS encoding uses script code 0, `smRoman`.
	KTextEncodingMacSymbol KTextEncodingMacRoman = 33
	// KTextEncodingMacTamil: The encoding for Mac OS Tamil.
	KTextEncodingMacTamil KTextEncodingMacRoman = 14
	// KTextEncodingMacTelugu: The encoding for Mac OS Telugu.
	KTextEncodingMacTelugu KTextEncodingMacRoman = 15
	// KTextEncodingMacThai: The encoding for Mac OS Thai.
	KTextEncodingMacThai KTextEncodingMacRoman = 21
	// KTextEncodingMacTibetan: The encoding for Mac OS Tibetan.
	KTextEncodingMacTibetan KTextEncodingMacRoman = 26
	// KTextEncodingMacTurkish: This Mac OS encoding uses script code 0, `smRoman`.
	KTextEncodingMacTurkish KTextEncodingMacRoman = 35
	// KTextEncodingMacVietnamese: The encoding for Mac OS Vietnamese.
	KTextEncodingMacVietnamese KTextEncodingMacRoman = 30
)

func (KTextEncodingMacRoman) String added in v0.6.17

func (e KTextEncodingMacRoman) String() string

type KTextEncodingMacTradChinese added in v0.5.1

type KTextEncodingMacTradChinese uint32
const (
	KTextEncodingMacEastEurRoman     KTextEncodingMacTradChinese = 29
	KTextEncodingMacGeez             KTextEncodingMacTradChinese = 28
	KTextEncodingMacRSymbol          KTextEncodingMacTradChinese = 8
	KTextEncodingMacSimpChinese      KTextEncodingMacTradChinese = 25
	KTextEncodingMacTradChineseValue KTextEncodingMacTradChinese = 2
	KTextEncodingMacUninterp         KTextEncodingMacTradChinese = 32
)

func (KTextEncodingMacTradChinese) String added in v0.6.17

type KTextEncodingMultiRun added in v0.5.1

type KTextEncodingMultiRun uint32
const (
	// KTextEncodingMultiRunValue: This is a special value for multiple encoded text, external run information.
	KTextEncodingMultiRunValue KTextEncodingMultiRun = 0xfff
	KTextEncodingUnknown       KTextEncodingMultiRun = 0xffff
)

func (KTextEncodingMultiRun) String added in v0.6.17

func (e KTextEncodingMultiRun) String() string

type KTextEncodingNextStep added in v0.5.1

type KTextEncodingNextStep uint32
const (
	KTextEncodingNextStepJapanese KTextEncodingNextStep = 0xb02
	KTextEncodingNextStepLatin    KTextEncodingNextStep = 0xb01
)

func (KTextEncodingNextStep) String added in v0.5.1

func (e KTextEncodingNextStep) String() string

type KTextEncodingShiftJIS added in v0.5.1

type KTextEncodingShiftJIS uint32
const (
	// KTextEncodingBig5: Big-5 encoding.
	KTextEncodingBig5            KTextEncodingShiftJIS = 0xa03
	KTextEncodingBig5_E          KTextEncodingShiftJIS = 0xa09
	KTextEncodingBig5_HKSCS_1999 KTextEncodingShiftJIS = 0xa06
	// KTextEncodingHZ_GB_2312: See RFC 1842; for Chinese mail and news.
	KTextEncodingHZ_GB_2312 KTextEncodingShiftJIS = 0xa05
	// KTextEncodingKOI8_R: Russian Internet standard.
	KTextEncodingKOI8_R KTextEncodingShiftJIS = 0xa02
	KTextEncodingKOI8_U KTextEncodingShiftJIS = 0xa08
	// KTextEncodingMacRomanLatin1: Mac OS Roman permuted to align with 8859-1.
	KTextEncodingMacRomanLatin1 KTextEncodingShiftJIS = 0xa04
	// KTextEncodingShiftJISValue: Plain Shift-JIS.
	KTextEncodingShiftJISValue KTextEncodingShiftJIS = 0xa01
	KTextEncodingVISCII        KTextEncodingShiftJIS = 0xa07
)

func (KTextEncodingShiftJIS) String added in v0.6.17

func (e KTextEncodingShiftJIS) String() string

type KTextEncodingUnicodeDefault added in v0.5.1

type KTextEncodingUnicodeDefault uint32
const (
	// KTextEncodingISO10646_1993: This ISO UCS encoding has code points identical to Unicode 1.1.
	KTextEncodingISO10646_1993 KTextEncodingUnicodeDefault = 0x101
	// KTextEncodingUnicodeDefaultValue: This is a meta value that takes on one of the following values, depending on the system.
	KTextEncodingUnicodeDefaultValue KTextEncodingUnicodeDefault = 0x100
	KTextEncodingUnicodeV10_0        KTextEncodingUnicodeDefault = 0x114
	KTextEncodingUnicodeV11_0        KTextEncodingUnicodeDefault = 0x115
	KTextEncodingUnicodeV12_1        KTextEncodingUnicodeDefault = 0x116
	KTextEncodingUnicodeV13_0        KTextEncodingUnicodeDefault = 0x117
	KTextEncodingUnicodeV14_0        KTextEncodingUnicodeDefault = 0x118
	KTextEncodingUnicodeV15_0        KTextEncodingUnicodeDefault = 0x119
	KTextEncodingUnicodeV15_1        KTextEncodingUnicodeDefault = 0x11a
	// KTextEncodingUnicodeV1_1: This is a Unicode encoding.
	KTextEncodingUnicodeV1_1 KTextEncodingUnicodeDefault = 0x101
	// KTextEncodingUnicodeV2_0: This is the new location for Korean Hangul.
	KTextEncodingUnicodeV2_0 KTextEncodingUnicodeDefault = 0x103
	// KTextEncodingUnicodeV2_1: For the Text Encoding Converter, Unicode 2.0 is equivalent to Unicode 2.1.
	KTextEncodingUnicodeV2_1 KTextEncodingUnicodeDefault = 0x103
	KTextEncodingUnicodeV3_0 KTextEncodingUnicodeDefault = 0x104
	// KTextEncodingUnicodeV3_1: Adds characters requiring surrogate pairs in UTF-16
	KTextEncodingUnicodeV3_1 KTextEncodingUnicodeDefault = 0x105
	KTextEncodingUnicodeV3_2 KTextEncodingUnicodeDefault = 0x106
	KTextEncodingUnicodeV4_0 KTextEncodingUnicodeDefault = 0x108
	KTextEncodingUnicodeV5_0 KTextEncodingUnicodeDefault = 0x10a
	KTextEncodingUnicodeV5_1 KTextEncodingUnicodeDefault = 0x10b
	KTextEncodingUnicodeV6_0 KTextEncodingUnicodeDefault = 0x10d
	KTextEncodingUnicodeV6_1 KTextEncodingUnicodeDefault = 0x10e
	KTextEncodingUnicodeV6_3 KTextEncodingUnicodeDefault = 0x110
	KTextEncodingUnicodeV7_0 KTextEncodingUnicodeDefault = 0x111
	KTextEncodingUnicodeV8_0 KTextEncodingUnicodeDefault = 0x112
	KTextEncodingUnicodeV9_0 KTextEncodingUnicodeDefault = 0x113
)

func (KTextEncodingUnicodeDefault) String added in v0.6.17

type KTextFlushDefault added in v0.5.1

type KTextFlushDefault int32
const (
	KTextCenter            KTextFlushDefault = 1
	KTextFlushDefaultValue KTextFlushDefault = 0
	KTextFlushLeft         KTextFlushDefault = -2
	KTextFlushRight        KTextFlushDefault = -1
)

func (KTextFlushDefault) String added in v0.6.17

func (e KTextFlushDefault) String() string

type KTextScriptDontCare added in v0.5.1

type KTextScriptDontCare int32
const (
	// KTextLanguageDontCare: Indicates that language code is not provided for the derivation.
	KTextLanguageDontCare KTextScriptDontCare = -128
	// KTextRegionDontCare: The region code is not provided for the derivation.
	KTextRegionDontCare KTextScriptDontCare = -128
	// KTextScriptDontCareValue: Indicates that the code is not provided for the derivation.
	KTextScriptDontCareValue KTextScriptDontCare = -128
)

func (KTextScriptDontCare) String added in v0.6.17

func (e KTextScriptDontCare) String() string

type KTextServiceClass added in v0.5.1

type KTextServiceClass uint32
const (
	KGetSelectedText            KTextServiceClass = 'g'<<24 | 't'<<16 | 'x'<<8 | 't' // 'gtxt'
	KOffset2Pos                 KTextServiceClass = 's'<<24 | 't'<<16 | '2'<<8 | 'p' // 'st2p'
	KPos2Offset                 KTextServiceClass = 'p'<<24 | '2'<<16 | 's'<<8 | 't' // 'p2st'
	KShowHideInputWindow        KTextServiceClass = 's'<<24 | 'h'<<16 | 'i'<<8 | 'w' // 'shiw'
	KTextServiceClassValue      KTextServiceClass = 't'<<24 | 's'<<16 | 'v'<<8 | 'c' // 'tsvc'
	KUnicodeNotFromInputMethod  KTextServiceClass = 'u'<<24 | 'n'<<16 | 'i'<<8 | 'm' // 'unim'
	KUpdateActiveInputArea      KTextServiceClass = 'u'<<24 | 'p'<<16 | 'd'<<8 | 't' // 'updt'
	KeyAEBufferSize             KTextServiceClass = 'b'<<24 | 'u'<<16 | 'f'<<8 | 'f' // 'buff'
	KeyAECurrentPoint           KTextServiceClass = 'c'<<24 | 'p'<<16 | 'o'<<8 | 's' // 'cpos'
	KeyAEFixLength              KTextServiceClass = 'f'<<24 | 'i'<<16 | 'x'<<8 | 'l' // 'fixl'
	KeyAEMoveView               KTextServiceClass = 'm'<<24 | 'v'<<16 | 'v'<<8 | 'w' // 'mvvw'
	KeyAENextBody               KTextServiceClass = 'n'<<24 | 'x'<<16 | 'b'<<8 | 'd' // 'nxbd'
	KeyAEServerInstance         KTextServiceClass = 's'<<24 | 'r'<<16 | 'v'<<8 | 'i' // 'srvi'
	KeyAETSMDocumentRefcon      KTextServiceClass = 'r'<<24 | 'e'<<16 | 'f'<<8 | 'c' // 'refc'
	KeyAETSMEventRecord         KTextServiceClass = 't'<<24 | 'e'<<16 | 'v'<<8 | 't' // 'tevt'
	KeyAETSMEventRef            KTextServiceClass = 't'<<24 | 'e'<<16 | 'v'<<8 | 'r' // 'tevr'
	KeyAETSMGlyphInfoArray      KTextServiceClass = 't'<<24 | 'g'<<16 | 'i'<<8 | 'a' // 'tgia'
	KeyAETSMScriptTag           KTextServiceClass = 's'<<24 | 'c'<<16 | 'l'<<8 | 'g' // 'sclg'
	KeyAETSMTextFMFont          KTextServiceClass = 'k'<<24 | 't'<<16 | 'x'<<8 | 'm' // 'ktxm'
	KeyAETSMTextFont            KTextServiceClass = 'k'<<24 | 't'<<16 | 'x'<<8 | 'f' // 'ktxf'
	KeyAETSMTextPointSize       KTextServiceClass = 'k'<<24 | 't'<<16 | 'p'<<8 | 's' // 'ktps'
	KeyAETextServiceEncoding    KTextServiceClass = 't'<<24 | 's'<<16 | 'e'<<8 | 'n' // 'tsen'
	KeyAETextServiceMacEncoding KTextServiceClass = 't'<<24 | 'm'<<16 | 'e'<<8 | 'n' // 'tmen'
	KeyAETheData                KTextServiceClass = 'k'<<24 | 'd'<<16 | 'a'<<8 | 't' // 'kdat'
	KeyAEUpdateRange            KTextServiceClass = 'u'<<24 | 'd'<<16 | 'n'<<8 | 'g' // 'udng'
	TypeComponentInstance       KTextServiceClass = 'c'<<24 | 'm'<<16 | 'p'<<8 | 'i' // 'cmpi'
	TypeEventRef                KTextServiceClass = 'e'<<24 | 'v'<<16 | 'r'<<8 | 'f' // 'evrf'
	TypeGlyphInfoArray          KTextServiceClass = 'g'<<24 | 'l'<<16 | 'i'<<8 | 'a' // 'glia'
	TypeLowLevelEventRecord     KTextServiceClass = 'e'<<24 | 'v'<<16 | 't'<<8 | 'r' // 'evtr'
	TypeOffsetArray             KTextServiceClass = 'o'<<24 | 'f'<<16 | 'a'<<8 | 'y' // 'ofay'
	TypeText                    KTextServiceClass = 'T'<<24 | 'E'<<16 | 'X'<<8 | 'T' // 'TEXT'
	TypeTextRange               KTextServiceClass = 't'<<24 | 'x'<<16 | 'r'<<8 | 'n' // 'txrn'
	TypeTextRangeArray          KTextServiceClass = 't'<<24 | 'r'<<16 | 'a'<<8 | 'y' // 'tray'
)

func (KTextServiceClass) String added in v0.5.1

func (e KTextServiceClass) String() string

type KTextUnsupportedEncodingErr

type KTextUnsupportedEncodingErr int32
const (
	// KTECArrayFullErr: # Discussion
	KTECArrayFullErr  KTextUnsupportedEncodingErr = -8751
	KTECBadTextRunErr KTextUnsupportedEncodingErr = -8752
	// KTECBufferBelowMinimumSizeErr: The output text buffer is too small to accommodatethe result of processing of the first input text element.
	KTECBufferBelowMinimumSizeErr KTextUnsupportedEncodingErr = -8750
	// KTECCorruptConverterErr: The converter object is invalid.
	KTECCorruptConverterErr KTextUnsupportedEncodingErr = -8748
	// KTECDirectionErr: An error, such as a direction stack overflow,occurred in directionality processing.
	KTECDirectionErr KTextUnsupportedEncodingErr = -8756
	// KTECGlobalsUnavailableErr: Global variables have already been deallocated,premature termination.
	KTECGlobalsUnavailableErr KTextUnsupportedEncodingErr = -8770
	// KTECIncompleteElementErr: The input text ends with a text elementthat might be incomplete, or contains a text element that is too longfor the internal buffers.
	KTECIncompleteElementErr KTextUnsupportedEncodingErr = -8755
	// KTECItemUnavailableErr: An item (for example, a name) is not availablefor the specified region (and encoding, if relevant).
	KTECItemUnavailableErr KTextUnsupportedEncodingErr = -8771
	// KTECMissingTableErr: The specified encoding is partially supported,but a specific table required for this function is missing.
	KTECMissingTableErr KTextUnsupportedEncodingErr = -8745
	// KTECNeedFlushStatus: The application disposed of a converterobject by calling TECDisposeConverter, but there is still text containedin internal buffers.
	KTECNeedFlushStatus KTextUnsupportedEncodingErr = -8784
	// KTECNoConversionPathErr: The converter supports both the source andtarget encodings, but cannot convert between them either directlyor indirectly.
	KTECNoConversionPathErr KTextUnsupportedEncodingErr = -8749
	// KTECOutputBufferFullStatus: The converter successfully converted partof the input text, but the output buffer was not large enough toaccommodate the entire input text after conversion.
	KTECOutputBufferFullStatus KTextUnsupportedEncodingErr = -8785
	// KTECPartialCharErr: The input text ends in the middle of a multibytecharacter and conversion stopped.
	KTECPartialCharErr KTextUnsupportedEncodingErr = -8753
	// KTECTableChecksumErr: A specific table required for this functionhas a checksum error, indicating that it has become corrupted.
	KTECTableChecksumErr KTextUnsupportedEncodingErr = -8746
	// KTECTableFormatErr: The table format is either invalid or itcannot be handled by the current version of the code.
	KTECTableFormatErr KTextUnsupportedEncodingErr = -8747
	// KTECUnmappableElementErr: An input text element cannot be mapped tothe specified output encoding(s) using the specified options.
	KTECUnmappableElementErr KTextUnsupportedEncodingErr = -8754
	// KTECUsedFallbacksStatus: The function has completely converted theinput string to the specified target using one or more fallbacks.For the Unicode Converter, this status code can only occur if the `kUnicodeUseFallbacksBit`control flag is set.
	KTECUsedFallbacksStatus KTextUnsupportedEncodingErr = -8783
	// KTextMalformedInputErr: The text input contains a sequence thatis not legal in the specified encoding, such as a DBCS high byte followedby an invalid low byte (0x8120 in Shift-JIS).
	KTextMalformedInputErr KTextUnsupportedEncodingErr = -8739
	// KTextUndefinedElementErr: The text input contains a code point thatis undefined in the specified encoding.
	KTextUndefinedElementErr KTextUnsupportedEncodingErr = -8740
	// KTextUnsupportedEncodingErrValue: The encoding or mapping is not supportedfor this function by the current set of tables or plug-ins.
	KTextUnsupportedEncodingErrValue KTextUnsupportedEncodingErr = -8738
	UnicodeBufErr                    KTextUnsupportedEncodingErr = -8764
	UnicodeCharErr                   KTextUnsupportedEncodingErr = -8763
	UnicodeChecksumErr               KTextUnsupportedEncodingErr = -8769
	UnicodeContextualErr             KTextUnsupportedEncodingErr = -8758
	UnicodeDirectionErr              KTextUnsupportedEncodingErr = -8759
	UnicodeElementErr                KTextUnsupportedEncodingErr = -8762
	UnicodeFallbacksErr              KTextUnsupportedEncodingErr = -8766
	UnicodeNoTableErr                KTextUnsupportedEncodingErr = -8768
	UnicodeNotFoundErr               KTextUnsupportedEncodingErr = -8761
	UnicodePartConvertErr            KTextUnsupportedEncodingErr = -8765
	UnicodeTableFormatErr            KTextUnsupportedEncodingErr = -8760
	UnicodeTextEncodingDataErr       KTextUnsupportedEncodingErr = -8757
	UnicodeVariantErr                KTextUnsupportedEncodingErr = -8767
)

func (KTextUnsupportedEncodingErr) String

type KTileIconVariant added in v0.5.1

type KTileIconVariant uint32
const (
	KDropIconVariant      KTileIconVariant = 'd'<<24 | 'r'<<16 | 'o'<<8 | 'p' // 'drop'
	KOpenDropIconVariant  KTileIconVariant = 'o'<<24 | 'd'<<16 | 'r'<<8 | 'p' // 'odrp'
	KOpenIconVariant      KTileIconVariant = 'o'<<24 | 'p'<<16 | 'e'<<8 | 'n' // 'open'
	KRolloverIconVariant  KTileIconVariant = 'o'<<24 | 'v'<<16 | 'e'<<8 | 'r' // 'over'
	KTileIconVariantValue KTileIconVariant = 't'<<24 | 'i'<<16 | 'l'<<8 | 'e' // 'tile'
)

func (KTileIconVariant) String added in v0.5.1

func (e KTileIconVariant) String() string

type KToolbar

type KToolbar uint32
const (
	KToolbarAdvancedIcon           KToolbar = 't'<<24 | 'b'<<16 | 'a'<<8 | 'v' // 'tbav'
	KToolbarApplicationsFolderIcon KToolbar = 't'<<24 | 'A'<<16 | 'p'<<8 | 's' // 'tAps'
	KToolbarCustomizeIcon          KToolbar = 't'<<24 | 'c'<<16 | 'u'<<8 | 's' // 'tcus'
	KToolbarDeleteIcon             KToolbar = 't'<<24 | 'd'<<16 | 'e'<<8 | 'l' // 'tdel'
	KToolbarDesktopFolderIcon      KToolbar = 't'<<24 | 'D'<<16 | 's'<<8 | 'k' // 'tDsk'
	KToolbarDocumentsFolderIcon    KToolbar = 't'<<24 | 'D'<<16 | 'o'<<8 | 'c' // 'tDoc'
	KToolbarDownloadsFolderIcon    KToolbar = 't'<<24 | 'D'<<16 | 'w'<<8 | 'n' // 'tDwn'
	KToolbarFavoritesIcon          KToolbar = 't'<<24 | 'f'<<16 | 'a'<<8 | 'v' // 'tfav'
	KToolbarHomeIcon               KToolbar = 't'<<24 | 'h'<<16 | 'o'<<8 | 'm' // 'thom'
	KToolbarInfoIcon               KToolbar = 't'<<24 | 'b'<<16 | 'i'<<8 | 'n' // 'tbin'
	KToolbarLabelsIcon             KToolbar = 't'<<24 | 'b'<<16 | 'l'<<8 | 'b' // 'tblb'
	KToolbarLibraryFolderIcon      KToolbar = 't'<<24 | 'L'<<16 | 'i'<<8 | 'b' // 'tLib'
	KToolbarMovieFolderIcon        KToolbar = 't'<<24 | 'M'<<16 | 'o'<<8 | 'v' // 'tMov'
	KToolbarMusicFolderIcon        KToolbar = 't'<<24 | 'M'<<16 | 'u'<<8 | 's' // 'tMus'
	KToolbarPicturesFolderIcon     KToolbar = 't'<<24 | 'P'<<16 | 'i'<<8 | 'c' // 'tPic'
	KToolbarPublicFolderIcon       KToolbar = 't'<<24 | 'P'<<16 | 'u'<<8 | 'b' // 'tPub'
	KToolbarSitesFolderIcon        KToolbar = 't'<<24 | 'S'<<16 | 't'<<8 | 's' // 'tSts'
	KToolbarUtilitiesFolderIcon    KToolbar = 't'<<24 | 'U'<<16 | 't'<<8 | 'l' // 'tUtl'
)

func (KToolbar) String

func (e KToolbar) String() string

type KUCBidiCat added in v0.5.1

type KUCBidiCat uint32
const (
	// KUCBidiCatArabicNumber: Weak types: AN Arabic number.
	KUCBidiCatArabicNumber KUCBidiCat = 6
	// KUCBidiCatBlockSeparator: Separators: B  paragraph separator (was block separator).
	KUCBidiCatBlockSeparator KUCBidiCat = 8
	// KUCBidiCatBoundaryNeutral: Unicode 3.0; BN boundary neutral.
	KUCBidiCatBoundaryNeutral KUCBidiCat = 19
	// KUCBidiCatCommonNumberSeparator: Weak types: CS common number separator.
	KUCBidiCatCommonNumberSeparator KUCBidiCat = 7
	// KUCBidiCatEuroNumber: Weak types: EN European number.
	KUCBidiCatEuroNumber KUCBidiCat = 3
	// KUCBidiCatEuroNumberSeparator: Weak types: ES European number separator.
	KUCBidiCatEuroNumberSeparator KUCBidiCat = 4
	// KUCBidiCatEuroNumberTerminator: Weak types: ET European number terminator.
	KUCBidiCatEuroNumberTerminator KUCBidiCat = 5
	KUCBidiCatFirstStrongIsolate   KUCBidiCat = 22
	// KUCBidiCatLeftRight: Strong types: L  left-to-right.
	KUCBidiCatLeftRight KUCBidiCat = 1
	// KUCBidiCatLeftRightEmbedding: Unicode 3.0; LRE eft-to-right embedding.
	KUCBidiCatLeftRightEmbedding KUCBidiCat = 13
	KUCBidiCatLeftRightIsolate   KUCBidiCat = 20
	// KUCBidiCatLeftRightOverride: Unicode 3.0; LRO left-to-right override.
	KUCBidiCatLeftRightOverride KUCBidiCat = 15
	// KUCBidiCatNonSpacingMark: Unicode 3.0; NSM non-spacing mark.
	KUCBidiCatNonSpacingMark KUCBidiCat = 18
	// KUCBidiCatNotApplicable: Unassigned.
	KUCBidiCatNotApplicable KUCBidiCat = 0
	// KUCBidiCatOtherNeutral: Neutrals: ON other neutrals (unassigned codes could use this).
	KUCBidiCatOtherNeutral KUCBidiCat = 11
	// KUCBidiCatPopDirectionalFormat: Unicode 3.0; PDF pop directional Format.
	KUCBidiCatPopDirectionalFormat  KUCBidiCat = 17
	KUCBidiCatPopDirectionalIsolate KUCBidiCat = 23
	// KUCBidiCatRightLeft: Strong types: R  right-to-left.
	KUCBidiCatRightLeft KUCBidiCat = 2
	// KUCBidiCatRightLeftArabic: Unicode 3.0; AL right-to-left Arabic (was Arabic letter).
	KUCBidiCatRightLeftArabic KUCBidiCat = 12
	// KUCBidiCatRightLeftEmbedding: Unicode 3.0; RLE right-to-left embedding.
	KUCBidiCatRightLeftEmbedding KUCBidiCat = 14
	KUCBidiCatRightLeftIsolate   KUCBidiCat = 21
	// KUCBidiCatRightLeftOverride: Unicode 3.0; RLO right-to-left override.
	KUCBidiCatRightLeftOverride KUCBidiCat = 16
	// KUCBidiCatSegmentSeparator: Separators: S  segment separator.
	KUCBidiCatSegmentSeparator KUCBidiCat = 9
	// KUCBidiCatWhitespace: Neutrals: WS whitespace.
	KUCBidiCatWhitespace KUCBidiCat = 10
)

func (KUCBidiCat) String added in v0.5.1

func (e KUCBidiCat) String() string

type KUCCharPropType added in v0.5.1

type KUCCharPropType uint32
const (
	// KUCCharPropTypeBidiCategory: Requests enumeration value.
	KUCCharPropTypeBidiCategory KUCCharPropType = 3
	// KUCCharPropTypeCombiningClass: Requests numeric value 0 to 255.
	KUCCharPropTypeCombiningClass    KUCCharPropType = 2
	KUCCharPropTypeDecimalDigitValue KUCCharPropType = 4
	// KUCCharPropTypeGenlCategory: Requests enumeration value.
	KUCCharPropTypeGenlCategory KUCCharPropType = 1
)

func (KUCCharPropType) String added in v0.5.1

func (e KUCCharPropType) String() string

type KUCCollate

type KUCCollate uint32
const (
	// KUCCollateCaseInsensitiveMask: If the corresponding bit is set, then uppercase and titlecase characters are treated as equivalent to the corresponding lowercase characters.
	KUCCollateCaseInsensitiveMask KUCCollate = 8
	// KUCCollateComposeInsensitiveMask: # Discussion
	KUCCollateComposeInsensitiveMask KUCCollate = 2
	// KUCCollateDiacritInsensitiveMask: If the corresponding bit is set, then characters with diacritics are treated as equivalent to the corresponding characters without diacritics.
	KUCCollateDiacritInsensitiveMask KUCCollate = 16
	// KUCCollateDigitsAsNumberMask: # Discussion
	KUCCollateDigitsAsNumberMask KUCCollate = 131072
	// KUCCollateDigitsOverrideMask: # Discussion
	KUCCollateDigitsOverrideMask KUCCollate = 65536
	// KUCCollatePunctuationSignificantMask: # Discussion
	KUCCollatePunctuationSignificantMask KUCCollate = 32768
	// KUCCollateWidthInsensitiveMask: # Discussion
	KUCCollateWidthInsensitiveMask KUCCollate = 4
)

func (KUCCollate) String

func (e KUCCollate) String() string

type KUCCollateStandard added in v0.5.1

type KUCCollateStandard uint32
const (
	// KUCCollateStandardOptions: # Discussion
	KUCCollateStandardOptions KUCCollateStandard = 6
)

func (KUCCollateStandard) String added in v0.5.1

func (e KUCCollateStandard) String() string

type KUCCollateTypeHFS added in v0.5.1

type KUCCollateTypeHFS uint32
const (
	// KUCCollateTypeHFSExtended: # Discussion
	KUCCollateTypeHFSExtended KUCCollateTypeHFS = 1
)

func (KUCCollateTypeHFS) String added in v0.5.1

func (e KUCCollateTypeHFS) String() string

type KUCCollateTypeSourceMask

type KUCCollateTypeSourceMask uint32
const (
	// KUCCollateTypeShiftBits: # Discussion
	KUCCollateTypeShiftBits KUCCollateTypeSourceMask = 24
	// KUCCollateTypeSourceMaskValue: You can use this mask, in conjunction with the `kUCCollateTypeShiftBits` constant, to obtain a value identifying a fixed ordering scheme.
	KUCCollateTypeSourceMaskValue KUCCollateTypeSourceMask = 0xff
)

func (KUCCollateTypeSourceMask) String added in v0.6.17

func (e KUCCollateTypeSourceMask) String() string

type KUCGenlCat added in v0.5.1

type KUCGenlCat uint32
const (
	// KUCGenlCatLetterLowercase: Ll Letter; lowercase.
	KUCGenlCatLetterLowercase KUCGenlCat = 15
	// KUCGenlCatLetterModifier: Lm Letter; modifier.
	KUCGenlCatLetterModifier KUCGenlCat = 17
	// KUCGenlCatLetterOther: Lo Letter; other.
	KUCGenlCatLetterOther KUCGenlCat = 18
	// KUCGenlCatLetterTitlecase: Lt Letter; titlecase.
	KUCGenlCatLetterTitlecase KUCGenlCat = 16
	// KUCGenlCatLetterUppercase: Lu Letter; uppercase.
	KUCGenlCatLetterUppercase KUCGenlCat = 14
	// KUCGenlCatMarkEnclosing: Me mark; enclosing.
	KUCGenlCatMarkEnclosing KUCGenlCat = 7
	// KUCGenlCatMarkNonSpacing: Mn mark; non-spacing.
	KUCGenlCatMarkNonSpacing KUCGenlCat = 5
	// KUCGenlCatMarkSpacingCombining: Mc mark; spacing combining.
	KUCGenlCatMarkSpacingCombining KUCGenlCat = 6
	// KUCGenlCatNumberDecimalDigit: Nd number; decimal digit.
	KUCGenlCatNumberDecimalDigit KUCGenlCat = 8
	// KUCGenlCatNumberLetter: Nl number; letter.
	KUCGenlCatNumberLetter KUCGenlCat = 9
	// KUCGenlCatNumberOther: No number; other.
	KUCGenlCatNumberOther KUCGenlCat = 10
	// KUCGenlCatOtherControl: Cc other; control.
	KUCGenlCatOtherControl KUCGenlCat = 1
	// KUCGenlCatOtherFormat: Cf other; format.
	KUCGenlCatOtherFormat KUCGenlCat = 2
	// KUCGenlCatOtherNotAssigned: Cn other; not assigned.
	KUCGenlCatOtherNotAssigned KUCGenlCat = 0
	// KUCGenlCatOtherPrivateUse: Co other; private use.
	KUCGenlCatOtherPrivateUse KUCGenlCat = 4
	// KUCGenlCatOtherSurrogate: Cs other; surrogate.
	KUCGenlCatOtherSurrogate KUCGenlCat = 3
	// KUCGenlCatPunctClose: Pe punctuation; close.
	KUCGenlCatPunctClose KUCGenlCat = 23
	// KUCGenlCatPunctConnector: Pc punctuation; connector.
	KUCGenlCatPunctConnector KUCGenlCat = 20
	// KUCGenlCatPunctDash: Pd punctuation; dash.
	KUCGenlCatPunctDash KUCGenlCat = 21
	// KUCGenlCatPunctFinalQuote: Pf punctuation; final quote.
	KUCGenlCatPunctFinalQuote KUCGenlCat = 25
	// KUCGenlCatPunctInitialQuote: Pi punctuation; initial quote.
	KUCGenlCatPunctInitialQuote KUCGenlCat = 24
	// KUCGenlCatPunctOpen: Ps punctuation; open.
	KUCGenlCatPunctOpen KUCGenlCat = 22
	// KUCGenlCatPunctOther: Po punctuation; other.
	KUCGenlCatPunctOther KUCGenlCat = 26
	// KUCGenlCatSeparatorLine: Zl separator; Line.
	KUCGenlCatSeparatorLine KUCGenlCat = 12
	// KUCGenlCatSeparatorParagraph: Zp separator; paragraph.
	KUCGenlCatSeparatorParagraph KUCGenlCat = 13
	// KUCGenlCatSeparatorSpace: Zs separator; space.
	KUCGenlCatSeparatorSpace KUCGenlCat = 11
	// KUCGenlCatSymbolCurrency: Sc symbol; currency.
	KUCGenlCatSymbolCurrency KUCGenlCat = 29
	// KUCGenlCatSymbolMath: Sm symbol; math.
	KUCGenlCatSymbolMath KUCGenlCat = 28
	// KUCGenlCatSymbolModifier: Sk symbol; modifier.
	KUCGenlCatSymbolModifier KUCGenlCat = 30
	// KUCGenlCatSymbolOther: So symbol; other.
	KUCGenlCatSymbolOther KUCGenlCat = 31
)

func (KUCGenlCat) String added in v0.5.1

func (e KUCGenlCat) String() string

type KUCHighSurrogateRangeStart added in v0.5.1

type KUCHighSurrogateRangeStart uint32
const (
	KUCHighSurrogateRangeEnd        KUCHighSurrogateRangeStart = 0xdbff
	KUCHighSurrogateRangeStartValue KUCHighSurrogateRangeStart = 0xd800
	KUCLowSurrogateRangeEnd         KUCHighSurrogateRangeStart = 0xdfff
	KUCLowSurrogateRangeStart       KUCHighSurrogateRangeStart = 0xdc00
)

func (KUCHighSurrogateRangeStart) String added in v0.6.17

type KUCKey

type KUCKey uint32
const (
	// KUCKeyLayoutFeatureInfoFormat: The format of a structure of type UCKeyLayoutFeatureInfo.
	KUCKeyLayoutFeatureInfoFormat KUCKey = 0x2001
	// KUCKeyLayoutHeaderFormat: The format of a structure of type UCKeyboardLayout.
	KUCKeyLayoutHeaderFormat KUCKey = 0x1002
	// KUCKeyModifiersToTableNumFormat: The format of a structure of type UCKeyModifiersToTableNum.
	KUCKeyModifiersToTableNumFormat KUCKey = 0x3001
	// KUCKeySequenceDataIndexFormat: The format of a structure of type UCKeySequenceDataIndex.
	KUCKeySequenceDataIndexFormat KUCKey = 0x7001
	// KUCKeyStateRecordsIndexFormat: The format of a structure of type UCKeyStateRecordsIndex.
	KUCKeyStateRecordsIndexFormat KUCKey = 0x5001
	// KUCKeyStateTerminatorsFormat: The format of a structure of type UCKeyStateTerminators.
	KUCKeyStateTerminatorsFormat KUCKey = 0x6001
	// KUCKeyToCharTableIndexFormat: The format of a structure of type UCKeyToCharTableIndex.
	KUCKeyToCharTableIndexFormat KUCKey = 0x4001
)

func (KUCKey) String

func (e KUCKey) String() string

type KUCKeyAction

type KUCKeyAction uint32
const (
	// KUCKeyActionAutoKey: The user has the key in an “auto-key” pressed state that is, the user is holding down the key for an extended period of time and is thereby generating multiple key strokes from the single key.
	KUCKeyActionAutoKey KUCKeyAction = 2
	// KUCKeyActionDisplay: The user is requesting information for key display, as in the Key Caps application.
	KUCKeyActionDisplay KUCKeyAction = 3
	// KUCKeyActionDown: The user is pressing the key.
	KUCKeyActionDown KUCKeyAction = 0
	// KUCKeyActionUp: The user is releasing the key.
	KUCKeyActionUp KUCKeyAction = 1
)

func (KUCKeyAction) String

func (e KUCKeyAction) String() string

type KUCKeyOutput

type KUCKeyOutput uint32
const (
	// KUCKeyOutputGetIndexMask: You can use this mask to test the bits (0–13) in a [UCKeyOutput] value that provide the actual index to another structure.
	KUCKeyOutputGetIndexMask KUCKeyOutput = 0x3fff
	// KUCKeyOutputSequenceIndexMask: If the bit specified by this mask is set, the [UCKeyOutput] value contains an index into a structure of type UCKeySequenceDataIndex.
	KUCKeyOutputSequenceIndexMask KUCKeyOutput = 0x8000
	// KUCKeyOutputStateIndexMask: If the bit specified by this mask is set, the UCKeyStateRecordsIndex [UCKeyOutput] value contains an index into a structure of type UCKeyStateRecordsIndex.
	KUCKeyOutputStateIndexMask KUCKeyOutput = 0x4000
	// KUCKeyOutputTestForIndexMask: # Discussion
	KUCKeyOutputTestForIndexMask KUCKeyOutput = 0xc000
)

func (KUCKeyOutput) String

func (e KUCKeyOutput) String() string

type KUCKeyStateEntry

type KUCKeyStateEntry uint32
const (
	// KUCKeyStateEntryRangeFormat: Specifies that the entry format is that of a structure of type UCKeyStateEntryRange.
	KUCKeyStateEntryRangeFormat KUCKeyStateEntry = 0x2
	// KUCKeyStateEntryTerminalFormat: Specifies that the entry format is that of a structure of type UCKeyStateEntryTerminal.
	KUCKeyStateEntryTerminalFormat KUCKeyStateEntry = 0x1
)

func (KUCKeyStateEntry) String

func (e KUCKeyStateEntry) String() string

type KUCOutputBufferTooSmall

type KUCOutputBufferTooSmall int32
const (
	KUCOutputBufferTooSmallValue   KUCOutputBufferTooSmall = -25340
	KUCTextBreakLocatorMissingType KUCOutputBufferTooSmall = -25341
)

func (KUCOutputBufferTooSmall) String added in v0.6.17

func (e KUCOutputBufferTooSmall) String() string

type KUCTS

type KUCTS int32
const (
	KUCTSNoKeysAddedToObjectErr KUCTS = -25342
	KUCTSSearchListErr          KUCTS = -25343
)

func (KUCTS) String

func (e KUCTS) String() string

type KUCTSDirection

type KUCTSDirection uint32
const (
	KUCTSDirectionNext     KUCTSDirection = 0
	KUCTSDirectionPrevious KUCTSDirection = 1
)

func (KUCTSDirection) String

func (e KUCTSDirection) String() string

type KUCTSOptions

type KUCTSOptions uint32
const (
	KUCTSOptionsDataIsOrderedMask KUCTSOptions = 2
	KUCTSOptionsNoneMask          KUCTSOptions = 0
	KUCTSOptionsReleaseStringMask KUCTSOptions = 1
)

func (KUCTSOptions) String

func (e KUCTSOptions) String() string

type KUCTextBreakCharMask

type KUCTextBreakCharMask uint32
const (
	// KUCTextBreakCharMaskValue: If the bit specified by this mask is set, boundaries of characters may be located (with surrogate pairs treated as a single character).
	KUCTextBreakCharMaskValue KUCTextBreakCharMask = 1
	// KUCTextBreakClusterMask: # Discussion
	KUCTextBreakClusterMask KUCTextBreakCharMask = 4
	// KUCTextBreakLineMask: If the bit specified by this mask is set, potential line breaks may be located.
	KUCTextBreakLineMask      KUCTextBreakCharMask = 64
	KUCTextBreakParagraphMask KUCTextBreakCharMask = 256
	// KUCTextBreakWordMask: If the bit specified by this mask is set, boundaries of words may be located.
	KUCTextBreakWordMask KUCTextBreakCharMask = 16
)

func (KUCTextBreakCharMask) String added in v0.6.17

func (e KUCTextBreakCharMask) String() string

type KUCTextBreakLeadingEdgeMask

type KUCTextBreakLeadingEdgeMask uint32
const (
	// KUCTextBreakGoBackwardsMask: # Discussion
	KUCTextBreakGoBackwardsMask KUCTextBreakLeadingEdgeMask = 2
	// KUCTextBreakIterateMask: # Discussion
	KUCTextBreakIterateMask KUCTextBreakLeadingEdgeMask = 4
	// KUCTextBreakLeadingEdgeMaskValue: # Discussion
	KUCTextBreakLeadingEdgeMaskValue KUCTextBreakLeadingEdgeMask = 1
)

func (KUCTextBreakLeadingEdgeMask) String added in v0.6.17

type KUCTokenizerIterationFinished

type KUCTokenizerIterationFinished int32
const (
	KUCTokenNotFound                   KUCTokenizerIterationFinished = -25346
	KUCTokenizerIterationFinishedValue KUCTokenizerIterationFinished = -25344
	KUCTokenizerUnknownLang            KUCTokenizerIterationFinished = -25345
)

func (KUCTokenizerIterationFinished) String added in v0.6.17

type KUCTypeSelectMaxList added in v0.5.1

type KUCTypeSelectMaxList uint32
const (
	KUCTypeSelectMaxListSize KUCTypeSelectMaxList = 0xffffffff
)

func (KUCTypeSelectMaxList) String added in v0.5.1

func (e KUCTypeSelectMaxList) String() string

type KUR

type KUR int32
const (
	KURL68kNotSupportedError          KUR = -30788
	KURLAccessNotAvailableError       KUR = -30787
	KURLAuthenticationError           KUR = -30776
	KURLDestinationExistsError        KUR = -30772
	KURLExtensionFailureError         KUR = -30785
	KURLFileEmptyError                KUR = -30783
	KURLInvalidCallError              KUR = -30781
	KURLInvalidConfigurationError     KUR = -30786
	KURLInvalidURLError               KUR = -30773
	KURLInvalidURLReferenceError      KUR = -30770
	KURLProgressAlreadyDisplayedError KUR = -30771
	KURLPropertyBufferTooSmallError   KUR = -30779
	KURLPropertyNotYetKnownError      KUR = -30777
	KURLServerBusyError               KUR = -30775
	KURLUnknownPropertyError          KUR = -30778
	KURLUnsettablePropertyError       KUR = -30780
	KURLUnsupportedSchemeError        KUR = -30774
)

func (KUR) String

func (e KUR) String() string

type KUSBInternal

type KUSBInternal int32
const (
	KUSBInternalReserved1  KUSBInternal = -6960
	KUSBInternalReserved10 KUSBInternal = -6951
	KUSBInternalReserved2  KUSBInternal = -6959
	KUSBInternalReserved3  KUSBInternal = -6958
	KUSBInternalReserved4  KUSBInternal = -6957
	KUSBInternalReserved5  KUSBInternal = -6956
	KUSBInternalReserved6  KUSBInternal = -6955
	KUSBInternalReserved7  KUSBInternal = -6954
	KUSBInternalReserved8  KUSBInternal = -6953
	KUSBInternalReserved9  KUSBInternal = -6952
)

func (KUSBInternal) String

func (e KUSBInternal) String() string

type KUSBNoErr

type KUSBNoErr uint32
const (
	KUSBNoDelay    KUSBNoErr = 0
	KUSBNoErrValue KUSBNoErr = 0
	KUSBNoTran     KUSBNoErr = 0
	KUSBPending    KUSBNoErr = 1
)

func (KUSBNoErr) String added in v0.6.17

func (e KUSBNoErr) String() string

type KUSBNotSent2Err

type KUSBNotSent2Err int32
const (
	KUSBBitstufErr       KUSBNotSent2Err = -6914
	KUSBBufOvrRunErr     KUSBNotSent2Err = -6904
	KUSBBufUnderRunErr   KUSBNotSent2Err = -6903
	KUSBCRCErr           KUSBNotSent2Err = -6915
	KUSBDataToggleErr    KUSBNotSent2Err = -6913
	KUSBEndpointStallErr KUSBNotSent2Err = -6912
	KUSBLinkErr          KUSBNotSent2Err = -6916
	KUSBNotRespondingErr KUSBNotSent2Err = -6911
	KUSBNotSent1Err      KUSBNotSent2Err = -6902
	KUSBNotSent2ErrValue KUSBNotSent2Err = -6901
	KUSBOverRunErr       KUSBNotSent2Err = -6908
	KUSBPIDCheckErr      KUSBNotSent2Err = -6910
	KUSBRes1Err          KUSBNotSent2Err = -6906
	KUSBRes2Err          KUSBNotSent2Err = -6905
	KUSBUnderRunErr      KUSBNotSent2Err = -6907
	KUSBWrongPIDErr      KUSBNotSent2Err = -6909
)

func (KUSBNotSent2Err) String added in v0.6.17

func (e KUSBNotSent2Err) String() string

type KUSBPortDisabled

type KUSBPortDisabled int32
const (
	KUSBAbortedError           KUSBPortDisabled = -6982
	KUSBAlreadyOpenErr         KUSBPortDisabled = -6991
	KUSBCompletionError        KUSBPortDisabled = -6984
	KUSBDeviceBusy             KUSBPortDisabled = -6977
	KUSBDeviceDisconnected     KUSBPortDisabled = -6972
	KUSBDeviceErr              KUSBPortDisabled = -6989
	KUSBDeviceNotSuspended     KUSBPortDisabled = -6973
	KUSBDevicePowerProblem     KUSBPortDisabled = -6976
	KUSBDeviceSuspended        KUSBPortDisabled = -6974
	KUSBFlagsError             KUSBPortDisabled = -6983
	KUSBIncorrectTypeErr       KUSBPortDisabled = -6995
	KUSBInternalErr            KUSBPortDisabled = -6999
	KUSBInvalidBuffer          KUSBPortDisabled = -6975
	KUSBNoBandwidthError       KUSBPortDisabled = -6981
	KUSBNoDeviceErr            KUSBPortDisabled = -6990
	KUSBNotFound               KUSBPortDisabled = -6987
	KUSBOutOfMemoryErr         KUSBPortDisabled = -6988
	KUSBPBLengthError          KUSBPortDisabled = -6985
	KUSBPBVersionError         KUSBPortDisabled = -6986
	KUSBPipeIdleError          KUSBPortDisabled = -6980
	KUSBPipeStalledError       KUSBPortDisabled = -6979
	KUSBPortDisabledValue      KUSBPortDisabled = -6969
	KUSBQueueAborted           KUSBPortDisabled = -6970
	KUSBRqErr                  KUSBPortDisabled = -6994
	KUSBTimedOut               KUSBPortDisabled = -6971
	KUSBTooManyPipesErr        KUSBPortDisabled = -6996
	KUSBTooManyTransactionsErr KUSBPortDisabled = -6992
	KUSBUnknownDeviceErr       KUSBPortDisabled = -6998
	KUSBUnknownInterfaceErr    KUSBPortDisabled = -6978
	KUSBUnknownPipeErr         KUSBPortDisabled = -6997
	KUSBUnknownRequestErr      KUSBPortDisabled = -6993
)

func (KUSBPortDisabled) String added in v0.6.17

func (e KUSBPortDisabled) String() string

type KUSBQueueFull

type KUSBQueueFull int32
const (
	KUSBBadDispatchTable    KUSBQueueFull = -6950
	KUSBNotHandled          KUSBQueueFull = -6987
	KUSBQueueFullValue      KUSBQueueFull = -6948
	KUSBUnknownNotification KUSBQueueFull = -6949
)

func (KUSBQueueFull) String added in v0.6.17

func (e KUSBQueueFull) String() string

type KUTCDefault added in v0.5.1

type KUTCDefault uint32
const (
	// Deprecated.
	KUTCDefaultOptions KUTCDefault = 0
)

func (KUTCDefault) String added in v0.5.1

func (e KUTCDefault) String() string

type KUTCUnderflowErr

type KUTCUnderflowErr int32
const (
	KIllegalClockValueErr KUTCUnderflowErr = -8852
	KUTCOverflowErr       KUTCUnderflowErr = -8851
	KUTCUnderflowErrValue KUTCUnderflowErr = -8850
)

func (KUTCUnderflowErr) String

func (e KUTCUnderflowErr) String() string

type KUnicodeByteOrderMark added in v0.5.1

type KUnicodeByteOrderMark uint32
const (
	KUnicodeByteOrderMarkValue KUnicodeByteOrderMark = 0xfeff
	// KUnicodeNotAChar: Not a Unicode character; may be used as a terminator.
	KUnicodeNotAChar KUnicodeByteOrderMark = 0xffff
	// KUnicodeObjectReplacement: A placeholder for a non-text object.
	KUnicodeObjectReplacement KUnicodeByteOrderMark = 0xfffc
	// KUnicodeReplacementChar: Unicode replacement for an input character that cannot be converted.
	KUnicodeReplacementChar KUnicodeByteOrderMark = 0xfffd
	// KUnicodeSwappedByteOrderMark: Not a Unicode character; byte-swapped version of FEFF.
	KUnicodeSwappedByteOrderMark KUnicodeByteOrderMark = 0xfffe
)

func (KUnicodeByteOrderMark) String added in v0.6.17

func (e KUnicodeByteOrderMark) String() string

type KUnicodeCollation added in v0.5.1

type KUnicodeCollation uint32
const (
	// KUnicodeCollationClass: Identifies collation as a class of operations.
	KUnicodeCollationClass KUnicodeCollation = 'u'<<24 | 'c'<<16 | 'o'<<8 | 'l' // 'ucol'
)

func (KUnicodeCollation) String added in v0.5.1

func (e KUnicodeCollation) String() string

type KUnicodeDefaultDirection added in v0.5.1

type KUnicodeDefaultDirection uint32
const (
	// KUnicodeDefaultDirectionValue: Use the default direction.
	KUnicodeDefaultDirectionValue KUnicodeDefaultDirection = 0
	// KUnicodeLeftToRight: Indicates left to right direction.
	KUnicodeLeftToRight KUnicodeDefaultDirection = 1
	// KUnicodeRightToLeft: Indicates right to left direction.
	KUnicodeRightToLeft KUnicodeDefaultDirection = 2
)

func (KUnicodeDefaultDirection) String added in v0.6.17

func (e KUnicodeDefaultDirection) String() string

type KUnicodeDefaultDirectionMask added in v0.5.1

type KUnicodeDefaultDirectionMask uint32
const (
	// KUnicodeDefaultDirectionMaskValue: # Discussion
	KUnicodeDefaultDirectionMaskValue KUnicodeDefaultDirectionMask = 0
	// KUnicodeLeftToRightMask: # Discussion
	KUnicodeLeftToRightMask KUnicodeDefaultDirectionMask = 4
	// KUnicodeRightToLeftMask: # Discussion
	KUnicodeRightToLeftMask KUnicodeDefaultDirectionMask = 8
)

func (KUnicodeDefaultDirectionMask) String added in v0.6.17

type KUnicodeFallbackDefaultOnly added in v0.5.1

type KUnicodeFallbackDefaultOnly uint32
const (
	// KUnicodeFallbackCustomFirst: Use the custom fallback handler first, then the default one.
	KUnicodeFallbackCustomFirst KUnicodeFallbackDefaultOnly = 3
	// KUnicodeFallbackCustomOnly: Use the custom fallback handler only.
	KUnicodeFallbackCustomOnly KUnicodeFallbackDefaultOnly = 1
	// KUnicodeFallbackDefaultFirst: Use the default fallback handler first, then the custom one.
	KUnicodeFallbackDefaultFirst KUnicodeFallbackDefaultOnly = 2
	// KUnicodeFallbackDefaultOnlyValue: Use the default fallback handler only.
	KUnicodeFallbackDefaultOnlyValue KUnicodeFallbackDefaultOnly = 0
)

func (KUnicodeFallbackDefaultOnly) String added in v0.6.17

type KUnicodeFallbackSequencing added in v0.5.1

type KUnicodeFallbackSequencing uint32
const (
	KUnicodeFallbackSequencingBits KUnicodeFallbackSequencing = 0
)

func (KUnicodeFallbackSequencing) String added in v0.5.1

type KUnicodeFallbackSequencingMask added in v0.5.1

type KUnicodeFallbackSequencingMask uint32
const (
	// KUnicodeFallbackInterruptSafeMask: Indicate that the caller’s fallback routine doesn’t move memory.
	KUnicodeFallbackInterruptSafeMask   KUnicodeFallbackSequencingMask = 4
	KUnicodeFallbackSequencingMaskValue KUnicodeFallbackSequencingMask = 3
)

func (KUnicodeFallbackSequencingMask) String added in v0.6.17

type KUnicodeMatchUnicodeBaseBit added in v0.5.1

type KUnicodeMatchUnicodeBaseBit uint32
const (
	// KUnicodeMatchOtherBaseBit: Excludes mappings that do not match the text encoding base of the `otherEncoding` field of the structure UnicodeMapping.
	KUnicodeMatchOtherBaseBit KUnicodeMatchUnicodeBaseBit = 3
	// KUnicodeMatchOtherFormatBit: Excludes mappings that do not match the text encoding format of the `otherEncoding` field of the specified Unicode mapping structure.
	KUnicodeMatchOtherFormatBit KUnicodeMatchUnicodeBaseBit = 5
	// KUnicodeMatchOtherVariantBit: Excludes mappings that do not match the text encoding variant of the `otherEncoding` field of the specified Unicode mapping structure.
	KUnicodeMatchOtherVariantBit KUnicodeMatchUnicodeBaseBit = 4
	// KUnicodeMatchUnicodeBaseBitValue: Excludes mappings that do not match the text encoding base of the `unicodeEncoding` field of the structure UnicodeMapping.
	KUnicodeMatchUnicodeBaseBitValue KUnicodeMatchUnicodeBaseBit = 0
	// KUnicodeMatchUnicodeFormatBit: Excludes mappings that do not match the text encoding format of the `unicodeEncoding` field of the specified Unicode mapping structure.
	KUnicodeMatchUnicodeFormatBit KUnicodeMatchUnicodeBaseBit = 2
	// KUnicodeMatchUnicodeVariantBit: Excludes mappings that do not match the text encoding variant of the `unicodeEncoding` field of the specified Unicode mapping structure.
	KUnicodeMatchUnicodeVariantBit KUnicodeMatchUnicodeBaseBit = 1
)

func (KUnicodeMatchUnicodeBaseBit) String added in v0.6.17

type KUnicodeMatchUnicodeBaseMask added in v0.5.1

type KUnicodeMatchUnicodeBaseMask uint32
const (
	// KUnicodeMatchOtherBaseMask: If set, excludes mappings that do not match the text encoding base of the `otherEncoding` field of the structure UnicodeMapping.
	KUnicodeMatchOtherBaseMask KUnicodeMatchUnicodeBaseMask = 8
	// KUnicodeMatchOtherFormatMask: If set, excludes mappings that do not match the text encoding format of the `otherEncoding` field of the specified Unicode mapping structure.
	KUnicodeMatchOtherFormatMask KUnicodeMatchUnicodeBaseMask = 32
	// KUnicodeMatchOtherVariantMask: If set, excludes mappings that do not match the text encoding variant of the `otherEncoding` field of the specified Unicode mapping structure.
	KUnicodeMatchOtherVariantMask KUnicodeMatchUnicodeBaseMask = 16
	// KUnicodeMatchUnicodeBaseMaskValue: If set, excludes mappings that do not match the text encoding base of the `unicodeEncoding` field of the structure UnicodeMapping.
	KUnicodeMatchUnicodeBaseMaskValue KUnicodeMatchUnicodeBaseMask = 1
	// KUnicodeMatchUnicodeFormatMask: If set, excludes mappings that do not match the text encoding format of the `unicodeEncoding` field of the specified Unicode mapping structure.
	KUnicodeMatchUnicodeFormatMask KUnicodeMatchUnicodeBaseMask = 4
	// KUnicodeMatchUnicodeVariantMask: If set, excludes mappings that do not match the text encoding variant of the `unicodeEncoding` field of the specified Unicode mapping structure.
	KUnicodeMatchUnicodeVariantMask KUnicodeMatchUnicodeBaseMask = 2
)

func (KUnicodeMatchUnicodeBaseMask) String added in v0.6.17

type KUnicodeNo added in v0.5.1

type KUnicodeNo uint32
const (
	KUnicodeNoCompatibilityVariant KUnicodeNo = 1
	KUnicodeNoCorporateVariant     KUnicodeNo = 4
)

func (KUnicodeNo) String added in v0.5.1

func (e KUnicodeNo) String() string

type KUnicodeNoSubset added in v0.5.1

type KUnicodeNoSubset uint32
const (
	// KUnicodeHFSPlusCompVariant: # Discussion
	KUnicodeHFSPlusCompVariant KUnicodeNoSubset = 9
	// KUnicodeHFSPlusDecompVariant: Specifies canonical decomposition according to Unicode 3.2 rules, with HFS+ exclusions ("HFS+ decomposition 3.2").
	KUnicodeHFSPlusDecompVariant KUnicodeNoSubset = 8
	// KUnicodeNoSubsetValue: The standard Unicode encoded character set in which the full set of Unicode characters are supported.
	KUnicodeNoSubsetValue      KUnicodeNoSubset = 0
	KUnicodeNormalizationFormC KUnicodeNoSubset = 3
	KUnicodeNormalizationFormD KUnicodeNoSubset = 5
)

func (KUnicodeNoSubset) String added in v0.6.17

func (e KUnicodeNoSubset) String() string

type KUnicodeTextBreak added in v0.5.1

type KUnicodeTextBreak uint32
const (
	// KUnicodeTextBreakClass: Identifies the class of Unicode utility operations that find text boundaries.
	KUnicodeTextBreakClass KUnicodeTextBreak = 'u'<<24 | 'b'<<16 | 'r'<<8 | 'k' // 'ubrk'
)

func (KUnicodeTextBreak) String added in v0.5.1

func (e KUnicodeTextBreak) String() string

type KUnicodeUse added in v0.5.1

type KUnicodeUse int32
const (
	// KUnicodeUseHFSPlusMapping: Indicates the mapping version used by HFS Plus to convert filenames between Mac OS encodings and Unicode.
	KUnicodeUseHFSPlusMapping KUnicodeUse = 4
	// KUnicodeUseLatestMapping: Instead of explicitly specifying the mapping version of the Unicode mapping table to be used for conversion of a text string, you can use this constant to specify that the latest version be used.
	KUnicodeUseLatestMapping KUnicodeUse = -1
)

func (KUnicodeUse) String added in v0.5.1

func (e KUnicodeUse) String() string

type KUnicodeUseFallbacksBit added in v0.5.1

type KUnicodeUseFallbacksBit uint32
const (
	// KUnicodeDirectionalityBits: Sets directionality.
	KUnicodeDirectionalityBits KUnicodeUseFallbacksBit = 2
	// KUnicodeForceASCIIRangeBit: Sets the force ASCII range control flag.
	KUnicodeForceASCIIRangeBit KUnicodeUseFallbacksBit = 9
	// KUnicodeKeepInfoBit: Sets the keep-information control flag.
	KUnicodeKeepInfoBit KUnicodeUseFallbacksBit = 1
	// KUnicodeKeepSameEncodingBit: Sets the keep-same-encoding control flag.
	KUnicodeKeepSameEncodingBit KUnicodeUseFallbacksBit = 8
	// KUnicodeLooseMappingsBit: Enables use of the loose-mapping portion of a character mapping table.
	KUnicodeLooseMappingsBit       KUnicodeUseFallbacksBit = 5
	KUnicodeMapLineFeedToReturnBit KUnicodeUseFallbacksBit = 12
	KUnicodeNoHalfwidthCharsBit    KUnicodeUseFallbacksBit = 10
	// KUnicodeStringUnterminatedBit: Sets the string-unterminated control flag.
	KUnicodeStringUnterminatedBit KUnicodeUseFallbacksBit = 6
	// KUnicodeTextRunBit: Sets the text-run control flag.
	KUnicodeTextRunBit                 KUnicodeUseFallbacksBit = 7
	KUnicodeTextRunHeuristicsBit       KUnicodeUseFallbacksBit = 11
	KUnicodeUseExternalEncodingFormBit KUnicodeUseFallbacksBit = 13
	// KUnicodeUseFallbacksBitValue: Enables use of fallback mappings.
	KUnicodeUseFallbacksBitValue KUnicodeUseFallbacksBit = 0
	// KUnicodeVerticalFormBit: Sets the vertical form control flag.
	KUnicodeVerticalFormBit KUnicodeUseFallbacksBit = 4
)

func (KUnicodeUseFallbacksBit) String added in v0.6.17

func (e KUnicodeUseFallbacksBit) String() string

type KUnicodeUseFallbacksMask added in v0.5.1

type KUnicodeUseFallbacksMask uint32
const (
	// KUnicodeDirectionalityMask: A mask for setting the directionality control flag
	KUnicodeDirectionalityMask KUnicodeUseFallbacksMask = 12
	// KUnicodeForceASCIIRangeMask: # Discussion
	KUnicodeForceASCIIRangeMask KUnicodeUseFallbacksMask = 512
	// KUnicodeKeepInfoMask: # Discussion
	KUnicodeKeepInfoMask KUnicodeUseFallbacksMask = 2
	// KUnicodeKeepSameEncodingMask: # Discussion
	KUnicodeKeepSameEncodingMask KUnicodeUseFallbacksMask = 256
	// KUnicodeLooseMappingsMask: # Discussion
	KUnicodeLooseMappingsMask KUnicodeUseFallbacksMask = 32
	// KUnicodeMapLineFeedToReturnMask: # Discussion
	KUnicodeMapLineFeedToReturnMask KUnicodeUseFallbacksMask = 4096
	// KUnicodeNoHalfwidthCharsMask: Sets the no halfwidth characters control flag.
	KUnicodeNoHalfwidthCharsMask KUnicodeUseFallbacksMask = 1024
	// KUnicodeStringUnterminatedMask: # Discussion
	KUnicodeStringUnterminatedMask KUnicodeUseFallbacksMask = 64
	KUnicodeTextRunHeuristicsMask  KUnicodeUseFallbacksMask = 2048
	// KUnicodeTextRunMask: # Discussion
	KUnicodeTextRunMask                 KUnicodeUseFallbacksMask = 128
	KUnicodeUseExternalEncodingFormMask KUnicodeUseFallbacksMask = 8192
	// KUnicodeUseFallbacksMaskValue: # Discussion
	KUnicodeUseFallbacksMaskValue KUnicodeUseFallbacksMask = 1
	// KUnicodeVerticalFormMask: # Discussion
	KUnicodeVerticalFormMask KUnicodeUseFallbacksMask = 16
)

func (KUnicodeUseFallbacksMask) String added in v0.6.17

func (e KUnicodeUseFallbacksMask) String() string

type KUnknownException added in v0.5.1

type KUnknownException uint32
const (
	// Deprecated.
	KAccessException KUnknownException = 3
	// Deprecated.
	KDataAlignmentException KUnknownException = 17
	// Deprecated.
	KDataBreakpointException KUnknownException = 11
	// Deprecated.
	KExcludedMemoryException KUnknownException = 5
	// Deprecated.
	KFloatingPointException KUnknownException = 13
	// Deprecated.
	KIllegalInstructionException KUnknownException = 1
	// Deprecated.
	KInstructionBreakpointException KUnknownException = 10
	// Deprecated.
	KIntegerException KUnknownException = 12
	// Deprecated.
	KPrivilegeViolationException KUnknownException = 8
	// Deprecated.
	KReadOnlyMemoryException KUnknownException = 6
	// Deprecated.
	KStackOverflowException KUnknownException = 14
	// Deprecated.
	KTaskCreationException KUnknownException = 16
	// Deprecated.
	KTaskTerminationException KUnknownException = 15
	// Deprecated.
	KTraceException KUnknownException = 9
	// Deprecated.
	KTrapException KUnknownException = 2
	// Deprecated.
	KUnknownExceptionValue KUnknownException = 0
	// Deprecated.
	KUnmappedMemoryException KUnknownException = 4
	// Deprecated.
	KUnresolvablePageFaultException KUnknownException = 7
)

func (KUnknownException) String added in v0.5.1

func (e KUnknownException) String() string

type KUnlockStateKCStatus added in v0.5.1

type KUnlockStateKCStatus uint32
const (
	KRdPermKCStatus           KUnlockStateKCStatus = 2
	KUnlockStateKCStatusValue KUnlockStateKCStatus = 1
	KWrPermKCStatus           KUnlockStateKCStatus = 4
)

func (KUnlockStateKCStatus) String added in v0.5.1

func (e KUnlockStateKCStatus) String() string

type KUse added in v0.5.1

type KUse uint32
const (
	// Deprecated.
	KUseCurrentISA KUse = 0
	// Deprecated.
	KUseNativeISA KUse = 0x4
)

func (KUse) String added in v0.5.1

func (e KUse) String() string

type KUserFolderIcon

type KUserFolderIcon uint32
const (
	KGroupIcon           KUserFolderIcon = 'g'<<24 | 'r'<<16 | 'u'<<8 | 'p' // 'grup'
	KGuestUserIcon       KUserFolderIcon = 'g'<<24 | 'u'<<16 | 's'<<8 | 'r' // 'gusr'
	KOwnerIcon           KUserFolderIcon = 's'<<24 | 'u'<<16 | 's'<<8 | 'r' // 'susr'
	KUserFolderIconValue KUserFolderIcon = 'u'<<24 | 'f'<<16 | 'l'<<8 | 'd' // 'ufld'
	KUserIcon            KUserFolderIcon = 'u'<<24 | 's'<<16 | 'e'<<8 | 'r' // 'user'
	KWorkgroupFolderIcon KUserFolderIcon = 'w'<<24 | 'f'<<16 | 'l'<<8 | 'd' // 'wfld'
)

func (KUserFolderIcon) String

func (e KUserFolderIcon) String() string

type KVCBFlags added in v0.5.1

type KVCBFlags uint32
const (
	KVCBFlagsHFSPlusAPIsBit   KVCBFlags = 4
	KVCBFlagsHFSPlusAPIsMask  KVCBFlags = 0x10
	KVCBFlagsHardwareGoneBit  KVCBFlags = 5
	KVCBFlagsHardwareGoneMask KVCBFlags = 0x20
	KVCBFlagsIdleFlushBit     KVCBFlags = 3
	KVCBFlagsIdleFlushMask    KVCBFlags = 0x8
	KVCBFlagsVolumeDirtyBit   KVCBFlags = 15
	KVCBFlagsVolumeDirtyMask  KVCBFlags = 0x8000
)

func (KVCBFlags) String added in v0.5.1

func (e KVCBFlags) String() string

type KWidePosOffsetBit added in v0.5.1

type KWidePosOffsetBit uint32
const (
	KMaximumBlocksIn4GB    KWidePosOffsetBit = 0x7fffff
	KUseWidePositioning    KWidePosOffsetBit = 256
	KWidePosOffsetBitValue KWidePosOffsetBit = 8
)

func (KWidePosOffsetBit) String added in v0.5.1

func (e KWidePosOffsetBit) String() string

type KWidgetsFolderType added in v0.5.1

type KWidgetsFolderType uint32
const (
	KScreenSaversFolderType KWidgetsFolderType = 's'<<24 | 'c'<<16 | 'r'<<8 | 'n' // 'scrn'
	KWidgetsFolderTypeValue KWidgetsFolderType = 'w'<<24 | 'd'<<16 | 'g'<<8 | 't' // 'wdgt'
)

func (KWidgetsFolderType) String added in v0.5.1

func (e KWidgetsFolderType) String() string

type KWindowsLatin1 added in v0.5.1

type KWindowsLatin1 uint32
const (
	KWindowsLatin1PalmVariant     KWindowsLatin1 = 1
	KWindowsLatin1StandardVariant KWindowsLatin1 = 0
)

func (KWindowsLatin1) String added in v0.5.1

func (e KWindowsLatin1) String() string

type KWriteReference added in v0.5.1

type KWriteReference uint32
const (
	// Deprecated.
	FetchReference KWriteReference = 2
	// Deprecated.
	KFetchReference KWriteReference = 2
	// Deprecated.
	KReadReference KWriteReference = 1
	// Deprecated.
	KWriteReferenceValue KWriteReference = 0
	// Deprecated.
	ReadReference KWriteReference = 1
	// Deprecated.
	WriteReference KWriteReference = 0
)

func (KWriteReference) String added in v0.5.1

func (e KWriteReference) String() string

type KX86IS added in v0.5.1

type KX86IS uint32
const (
	// Deprecated.
	KX86ISA KX86IS = 2
)

func (KX86IS) String added in v0.5.1

func (e KX86IS) String() string

type KX86RT added in v0.5.1

type KX86RT uint32
const (
	// Deprecated.
	KX86RTA KX86RT = 32
)

func (KX86RT) String added in v0.5.1

func (e KX86RT) String() string

type KXLibTag1 added in v0.5.1

type KXLibTag1 int32
const (
	// Deprecated.
	KBLibTag2 KXLibTag1 = 'B'<<24 | 'L'<<16 | 'i'<<8 | 'b' // 'BLib'
	// Deprecated.
	KVLibTag2 KXLibTag1 = 'V'<<24 | 'L'<<16 | 'i'<<8 | 'b' // 'VLib'
	// Deprecated.
	KXLibTag1Value KXLibTag1 = -263364253
	// Deprecated.
	KXLibVersion KXLibTag1 = 0x1
)

func (KXLibTag1) String added in v0.5.1

func (e KXLibTag1) String() string

type Kernel

type Kernel int32
const (
	KernelAlreadyFreeErr       Kernel = -2421
	KernelAsyncReceiveLimitErr Kernel = -2414
	KernelAsyncSendLimitErr    Kernel = -2413
	KernelAttributeErr         Kernel = -2412
	KernelCanceledErr          Kernel = -2402
	KernelDeletePermissionErr  Kernel = -2410
	KernelExceptionErr         Kernel = -2418
	KernelExecutePermissionErr Kernel = -2409
	KernelExecutionLevelErr    Kernel = -2411
	KernelIDErr                Kernel = -2419
	KernelInUseErr             Kernel = -2416
	KernelIncompleteErr        Kernel = -2401
	KernelObjectExistsErr      Kernel = -2406
	KernelOptionsErr           Kernel = -2403
	KernelPrivilegeErr         Kernel = -2404
	KernelReadPermissionErr    Kernel = -2408
	KernelReturnValueErr       Kernel = -2422
	KernelTerminatedErr        Kernel = -2417
	KernelTimeoutErr           Kernel = -2415
	KernelUnrecoverableErr     Kernel = -2499
	KernelUnsupportedErr       Kernel = -2405
	KernelWritePermissionErr   Kernel = -2407
)

func (Kernel) String

func (e Kernel) String() string

type KeucCn added in v0.5.1

type KeucCn uint32
const (
	KEUC_CN_BasicVariant KeucCn = 0
	KEUC_CN_DOSVariant   KeucCn = 1
)

func (KeucCn) String added in v0.5.1

func (e KeucCn) String() string

type KeucKr added in v0.5.1

type KeucKr uint32
const (
	KEUC_KR_BasicVariant KeucKr = 0
	KEUC_KR_DOSVariant   KeucKr = 1
)

func (KeucKr) String added in v0.5.1

func (e KeucKr) String() string

type KeyAEAngle

type KeyAEAngle uint32
const (
	KeyAEAngleValue KeyAEAngle = 'k'<<24 | 'a'<<16 | 'n'<<8 | 'g' // 'kang'
	KeyAEArcAngle   KeyAEAngle = 'p'<<24 | 'a'<<16 | 'r'<<8 | 'c' // 'parc'
)

func (KeyAEAngle) String added in v0.6.17

func (e KeyAEAngle) String() string

type KeyAEBaseAddr

type KeyAEBaseAddr uint32
const (
	KeyAEBaseAddrValue  KeyAEBaseAddr = 'b'<<24 | 'a'<<16 | 'd'<<8 | 'd' // 'badd'
	KeyAEBestType       KeyAEBaseAddr = 'p'<<24 | 'b'<<16 | 's'<<8 | 't' // 'pbst'
	KeyAEBgndColor      KeyAEBaseAddr = 'k'<<24 | 'b'<<16 | 'c'<<8 | 'l' // 'kbcl'
	KeyAEBgndPattern    KeyAEBaseAddr = 'k'<<24 | 'b'<<16 | 'p'<<8 | 't' // 'kbpt'
	KeyAEBounds         KeyAEBaseAddr = 'p'<<24 | 'b'<<16 | 'n'<<8 | 'd' // 'pbnd'
	KeyAECellList       KeyAEBaseAddr = 'k'<<24 | 'c'<<16 | 'l'<<8 | 't' // 'kclt'
	KeyAEClassID        KeyAEBaseAddr = 'c'<<24 | 'l'<<16 | 'I'<<8 | 'D' // 'clID'
	KeyAEColor          KeyAEBaseAddr = 'c'<<24 | 'o'<<16 | 'l'<<8 | 'r' // 'colr'
	KeyAEColorTable     KeyAEBaseAddr = 'c'<<24 | 'l'<<16 | 't'<<8 | 'b' // 'cltb'
	KeyAECurveHeight    KeyAEBaseAddr = 'k'<<24 | 'c'<<16 | 'h'<<8 | 'd' // 'kchd'
	KeyAECurveWidth     KeyAEBaseAddr = 'k'<<24 | 'c'<<16 | 'w'<<8 | 'd' // 'kcwd'
	KeyAEDashStyle      KeyAEBaseAddr = 'p'<<24 | 'd'<<16 | 's'<<8 | 't' // 'pdst'
	KeyAEData           KeyAEBaseAddr = 'd'<<24 | 'a'<<16 | 't'<<8 | 'a' // 'data'
	KeyAEDefaultType    KeyAEBaseAddr = 'd'<<24 | 'e'<<16 | 'f'<<8 | 't' // 'deft'
	KeyAEDefinitionRect KeyAEBaseAddr = 'p'<<24 | 'd'<<16 | 'r'<<8 | 't' // 'pdrt'
	KeyAEDescType       KeyAEBaseAddr = 'd'<<24 | 's'<<16 | 't'<<8 | 'p' // 'dstp'
	KeyAEDestination    KeyAEBaseAddr = 'd'<<24 | 'e'<<16 | 's'<<8 | 't' // 'dest'
	KeyAEDoAntiAlias    KeyAEBaseAddr = 'a'<<24 | 'n'<<16 | 't'<<8 | 'a' // 'anta'
	KeyAEDoDithered     KeyAEBaseAddr = 'g'<<24 | 'd'<<16 | 'i'<<8 | 't' // 'gdit'
	KeyAEDoRotate       KeyAEBaseAddr = 'k'<<24 | 'd'<<16 | 'r'<<8 | 't' // 'kdrt'
)

func (KeyAEBaseAddr) String added in v0.6.17

func (e KeyAEBaseAddr) String() string

type KeyAEDoScale

type KeyAEDoScale uint32
const (
	KeyAEDoScaleValue   KeyAEDoScale = 'k'<<24 | 's'<<16 | 'c'<<8 | 'a' // 'ksca'
	KeyAEDoTranslate    KeyAEDoScale = 'k'<<24 | 't'<<16 | 'r'<<8 | 'a' // 'ktra'
	KeyAEEditionFileLoc KeyAEDoScale = 'e'<<24 | 'l'<<16 | 'o'<<8 | 'c' // 'eloc'
	KeyAEElements       KeyAEDoScale = 'e'<<24 | 'l'<<16 | 'm'<<8 | 's' // 'elms'
	KeyAEEndPoint       KeyAEDoScale = 'p'<<24 | 'e'<<16 | 'n'<<8 | 'd' // 'pend'
	KeyAEEventClass     KeyAEDoScale = 'e'<<24 | 'v'<<16 | 'c'<<8 | 'l' // 'evcl'
	KeyAEEventID        KeyAEDoScale = 'e'<<24 | 'v'<<16 | 't'<<8 | 'i' // 'evti'
	KeyAEFile           KeyAEDoScale = 'k'<<24 | 'f'<<16 | 'i'<<8 | 'l' // 'kfil'
	KeyAEFileType       KeyAEDoScale = 'f'<<24 | 'l'<<16 | 't'<<8 | 'p' // 'fltp'
	KeyAEFillColor      KeyAEDoScale = 'f'<<24 | 'l'<<16 | 'c'<<8 | 'l' // 'flcl'
	KeyAEFillPattern    KeyAEDoScale = 'f'<<24 | 'l'<<16 | 'p'<<8 | 't' // 'flpt'
	KeyAEFlipHorizontal KeyAEDoScale = 'k'<<24 | 'f'<<16 | 'h'<<8 | 'o' // 'kfho'
	KeyAEFlipVertical   KeyAEDoScale = 'k'<<24 | 'f'<<16 | 'v'<<8 | 't' // 'kfvt'
	KeyAEFont           KeyAEDoScale = 'f'<<24 | 'o'<<16 | 'n'<<8 | 't' // 'font'
	KeyAEFormula        KeyAEDoScale = 'p'<<24 | 'f'<<16 | 'o'<<8 | 'r' // 'pfor'
	KeyAEGraphicObjects KeyAEDoScale = 'g'<<24 | 'o'<<16 | 'b'<<8 | 's' // 'gobs'
	KeyAEID             KeyAEDoScale = 'I'<<24 | 'D'<<16 | ' '<<8 | ' ' // 'ID  '
	KeyAEImageQuality   KeyAEDoScale = 'g'<<24 | 'q'<<16 | 'u'<<8 | 'a' // 'gqua'
	KeyAEInsertHere     KeyAEDoScale = 'i'<<24 | 'n'<<16 | 's'<<8 | 'h' // 'insh'
	KeyAEKeyForms       KeyAEDoScale = 'k'<<24 | 'e'<<16 | 'y'<<8 | 'f' // 'keyf'
)

func (KeyAEDoScale) String added in v0.6.17

func (e KeyAEDoScale) String() string

type KeyAEHiliteRange

type KeyAEHiliteRange uint32
const (
	KeyAEClauseOffsets    KeyAEHiliteRange = 'c'<<24 | 'l'<<16 | 'a'<<8 | 'u' // 'clau'
	KeyAEDragging         KeyAEHiliteRange = 'b'<<24 | 'o'<<16 | 'o'<<8 | 'l' // 'bool'
	KeyAEHiliteRangeValue KeyAEHiliteRange = 'h'<<24 | 'r'<<16 | 'n'<<8 | 'g' // 'hrng'
	KeyAELeftSide         KeyAEHiliteRange = 'k'<<24 | 'l'<<16 | 'e'<<8 | 'f' // 'klef'
	KeyAEOffset           KeyAEHiliteRange = 'o'<<24 | 'f'<<16 | 's'<<8 | 't' // 'ofst'
	KeyAEPinRange         KeyAEHiliteRange = 'p'<<24 | 'n'<<16 | 'r'<<8 | 'g' // 'pnrg'
	KeyAEPoint            KeyAEHiliteRange = 'g'<<24 | 'p'<<16 | 'o'<<8 | 's' // 'gpos'
	KeyAERegionClass      KeyAEHiliteRange = 'r'<<24 | 'g'<<16 | 'n'<<8 | 'c' // 'rgnc'
)

func (KeyAEHiliteRange) String added in v0.6.17

func (e KeyAEHiliteRange) String() string

type KeyAEKeyword

type KeyAEKeyword uint32
const (
	KeyAEKeywordValue  KeyAEKeyword = 'k'<<24 | 'y'<<16 | 'w'<<8 | 'd' // 'kywd'
	KeyAELevel         KeyAEKeyword = 'l'<<24 | 'e'<<16 | 'v'<<8 | 'l' // 'levl'
	KeyAELineArrow     KeyAEKeyword = 'a'<<24 | 'r'<<16 | 'r'<<8 | 'o' // 'arro'
	KeyAEName          KeyAEKeyword = 'p'<<24 | 'n'<<16 | 'a'<<8 | 'm' // 'pnam'
	KeyAENewElementLoc KeyAEKeyword = 'p'<<24 | 'n'<<16 | 'e'<<8 | 'l' // 'pnel'
	KeyAEObject        KeyAEKeyword = 'k'<<24 | 'o'<<16 | 'b'<<8 | 'j' // 'kobj'
	KeyAEObjectClass   KeyAEKeyword = 'k'<<24 | 'o'<<16 | 'c'<<8 | 'l' // 'kocl'
	KeyAEOffStyles     KeyAEKeyword = 'o'<<24 | 'f'<<16 | 's'<<8 | 't' // 'ofst'
	KeyAEOnStyles      KeyAEKeyword = 'o'<<24 | 'n'<<16 | 's'<<8 | 't' // 'onst'
	KeyAEPMTable       KeyAEKeyword = 'k'<<24 | 'p'<<16 | 'm'<<8 | 't' // 'kpmt'
	KeyAEParamFlags    KeyAEKeyword = 'p'<<24 | 'm'<<16 | 'f'<<8 | 'g' // 'pmfg'
	KeyAEParameters    KeyAEKeyword = 'p'<<24 | 'r'<<16 | 'm'<<8 | 's' // 'prms'
	KeyAEPenColor      KeyAEKeyword = 'p'<<24 | 'p'<<16 | 'c'<<8 | 'l' // 'ppcl'
	KeyAEPenPattern    KeyAEKeyword = 'p'<<24 | 'p'<<16 | 'p'<<8 | 'a' // 'pppa'
	KeyAEPenWidth      KeyAEKeyword = 'p'<<24 | 'p'<<16 | 'w'<<8 | 'd' // 'ppwd'
	KeyAEPixMapMinus   KeyAEKeyword = 'k'<<24 | 'p'<<16 | 'm'<<8 | 'm' // 'kpmm'
	KeyAEPixelDepth    KeyAEKeyword = 'p'<<24 | 'd'<<16 | 'p'<<8 | 't' // 'pdpt'
	KeyAEPointList     KeyAEKeyword = 'p'<<24 | 't'<<16 | 'l'<<8 | 't' // 'ptlt'
	KeyAEPointSize     KeyAEKeyword = 'p'<<24 | 't'<<16 | 's'<<8 | 'z' // 'ptsz'
	KeyAEPosition      KeyAEKeyword = 'k'<<24 | 'p'<<16 | 'o'<<8 | 's' // 'kpos'
)

func (KeyAEKeyword) String added in v0.6.17

func (e KeyAEKeyword) String() string

type KeyAELaunchedAs

type KeyAELaunchedAs uint32
const (
	// KeyAELaunchedAsLogInItem: If present in a `kAEOpenApplication` event, the receiving application was launched as a login item and should only perform actions suitable to that environment—for example, it probably shouldn't open an untitled document.
	KeyAELaunchedAsLogInItem KeyAELaunchedAs = 'l'<<24 | 'g'<<16 | 'i'<<8 | 't' // 'lgit'
	// KeyAELaunchedAsServiceItem: # Discussion
	KeyAELaunchedAsServiceItem KeyAELaunchedAs = 's'<<24 | 'v'<<16 | 'i'<<8 | 't' // 'svit'
)

func (KeyAELaunchedAs) String

func (e KeyAELaunchedAs) String() string

type KeyAEPropData

type KeyAEPropData uint32
const (
	KeyAEPropDataValue KeyAEPropData = 'p'<<24 | 'r'<<16 | 'd'<<8 | 't' // 'prdt'
	KeyAEPropFlags     KeyAEPropData = 'p'<<24 | 'r'<<16 | 'f'<<8 | 'g' // 'prfg'
	KeyAEPropID        KeyAEPropData = 'p'<<24 | 'r'<<16 | 'o'<<8 | 'p' // 'prop'
	KeyAEProperties    KeyAEPropData = 'q'<<24 | 'p'<<16 | 'r'<<8 | 'o' // 'qpro'
	KeyAEProperty      KeyAEPropData = 'k'<<24 | 'p'<<16 | 'r'<<8 | 'p' // 'kprp'
	KeyAEProtection    KeyAEPropData = 'p'<<24 | 'p'<<16 | 'r'<<8 | 'o' // 'ppro'
	KeyAERenderAs      KeyAEPropData = 'k'<<24 | 'r'<<16 | 'e'<<8 | 'n' // 'kren'
	KeyAERequestedType KeyAEPropData = 'r'<<24 | 't'<<16 | 'y'<<8 | 'p' // 'rtyp'
	KeyAEResult        KeyAEPropData = '-'<<24 | '-'<<16 | '-'<<8 | '-' // '----'
	KeyAEResultInfo    KeyAEPropData = 'r'<<24 | 's'<<16 | 'i'<<8 | 'n' // 'rsin'
	KeyAERotPoint      KeyAEPropData = 'k'<<24 | 'r'<<16 | 't'<<8 | 'p' // 'krtp'
	KeyAERotation      KeyAEPropData = 'p'<<24 | 'r'<<16 | 'o'<<8 | 't' // 'prot'
	KeyAERowList       KeyAEPropData = 'k'<<24 | 'r'<<16 | 'l'<<8 | 's' // 'krls'
	KeyAESaveOptions   KeyAEPropData = 's'<<24 | 'a'<<16 | 'v'<<8 | 'o' // 'savo'
	KeyAEScale         KeyAEPropData = 'p'<<24 | 's'<<16 | 'c'<<8 | 'l' // 'pscl'
	KeyAEScriptTag     KeyAEPropData = 'p'<<24 | 's'<<16 | 'c'<<8 | 't' // 'psct'
	// KeyAESearchText: # Discussion
	KeyAESearchText KeyAEPropData = 's'<<24 | 't'<<16 | 'x'<<8 | 't' // 'stxt'
	KeyAEShowWhere  KeyAEPropData = 's'<<24 | 'h'<<16 | 'o'<<8 | 'w' // 'show'
	KeyAEStartAngle KeyAEPropData = 'p'<<24 | 'a'<<16 | 'n'<<8 | 'g' // 'pang'
	KeyAEStartPoint KeyAEPropData = 'p'<<24 | 's'<<16 | 't'<<8 | 'p' // 'pstp'
	KeyAEStyles     KeyAEPropData = 'k'<<24 | 's'<<16 | 't'<<8 | 'y' // 'ksty'
)

func (KeyAEPropData) String added in v0.6.17

func (e KeyAEPropData) String() string

type KeyAERangeStart

type KeyAERangeStart uint32
const (
	// KeyAEAdjustMarksProc: Mark-adjusting function.
	KeyAEAdjustMarksProc KeyAERangeStart = 'a'<<24 | 'd'<<16 | 'j'<<8 | 'm' // 'adjm'
	// KeyAECompareProc: Object-comparison function.
	KeyAECompareProc KeyAERangeStart = 'c'<<24 | 'm'<<16 | 'p'<<8 | 'r' // 'cmpr'
	// KeyAECountProc: Object-counting function.
	KeyAECountProc KeyAERangeStart = 'c'<<24 | 'o'<<16 | 'n'<<8 | 't' // 'cont'
	// KeyAEGetErrDescProc: Get error descriptor callback function.
	KeyAEGetErrDescProc KeyAERangeStart = 'i'<<24 | 'n'<<16 | 'd'<<8 | 'c' // 'indc'
	// KeyAEMarkProc: Object-marking function.
	KeyAEMarkProc KeyAERangeStart = 'm'<<24 | 'a'<<16 | 'r'<<8 | 'k' // 'mark'
	// KeyAEMarkTokenProc: Mark token function.
	KeyAEMarkTokenProc KeyAERangeStart = 'm'<<24 | 'k'<<16 | 'i'<<8 | 'd' // 'mkid'
	// KeyAERangeStartValue: Specifies the first Apple event object in a desired range.
	KeyAERangeStartValue KeyAERangeStart = 's'<<24 | 't'<<16 | 'a'<<8 | 'r' // 'star'
	// KeyAERangeStop: Specifies the last Apple event object in the desired range.
	KeyAERangeStop KeyAERangeStart = 's'<<24 | 't'<<16 | 'o'<<8 | 'p' // 'stop'
	// KeyDisposeTokenProc: Token disposal function.
	KeyDisposeTokenProc KeyAERangeStart = 'x'<<24 | 't'<<16 | 'o'<<8 | 'k' // 'xtok'
)

func (KeyAERangeStart) String added in v0.6.17

func (e KeyAERangeStart) String() string

type KeyAERestoreApp added in v0.5.1

type KeyAERestoreApp uint32
const (
	KeyAERestoreAppState KeyAERestoreApp = 'r'<<24 | 's'<<16 | 't'<<8 | 'o' // 'rsto'
)

func (KeyAERestoreApp) String added in v0.5.1

func (e KeyAERestoreApp) String() string

type KeyAESuiteID

type KeyAESuiteID uint32
const (
	KeyAESuiteIDValue    KeyAESuiteID = 's'<<24 | 'u'<<16 | 'i'<<8 | 't' // 'suit'
	KeyAEText            KeyAESuiteID = 'k'<<24 | 't'<<16 | 'x'<<8 | 't' // 'ktxt'
	KeyAETextColor       KeyAESuiteID = 'p'<<24 | 't'<<16 | 'x'<<8 | 'c' // 'ptxc'
	KeyAETextFont        KeyAESuiteID = 'p'<<24 | 't'<<16 | 'x'<<8 | 'f' // 'ptxf'
	KeyAETextLineAscent  KeyAESuiteID = 'k'<<24 | 't'<<16 | 'a'<<8 | 's' // 'ktas'
	KeyAETextLineHeight  KeyAESuiteID = 'k'<<24 | 't'<<16 | 'l'<<8 | 'h' // 'ktlh'
	KeyAETextPointSize   KeyAESuiteID = 'p'<<24 | 't'<<16 | 'p'<<8 | 's' // 'ptps'
	KeyAETextStyles      KeyAESuiteID = 't'<<24 | 'x'<<16 | 's'<<8 | 't' // 'txst'
	KeyAETheText         KeyAESuiteID = 't'<<24 | 'h'<<16 | 't'<<8 | 'x' // 'thtx'
	KeyAETransferMode    KeyAESuiteID = 'p'<<24 | 'p'<<16 | 't'<<8 | 'm' // 'pptm'
	KeyAETranslation     KeyAESuiteID = 'p'<<24 | 't'<<16 | 'r'<<8 | 's' // 'ptrs'
	KeyAETryAsStructGraf KeyAESuiteID = 't'<<24 | 'o'<<16 | 'o'<<8 | 'g' // 'toog'
	KeyAEUniformStyles   KeyAESuiteID = 'u'<<24 | 's'<<16 | 't'<<8 | 'l' // 'ustl'
	KeyAEUpdateOn        KeyAESuiteID = 'p'<<24 | 'u'<<16 | 'p'<<8 | 'd' // 'pupd'
	KeyAEUserTerm        KeyAESuiteID = 'u'<<24 | 't'<<16 | 'r'<<8 | 'm' // 'utrm'
	KeyAEWindow          KeyAESuiteID = 'w'<<24 | 'n'<<16 | 'd'<<8 | 'w' // 'wndw'
	KeyAEWritingCode     KeyAESuiteID = 'w'<<24 | 'r'<<16 | 'c'<<8 | 'd' // 'wrcd'
)

func (KeyAESuiteID) String added in v0.6.17

func (e KeyAESuiteID) String() string

type KeyDirectObject

type KeyDirectObject uint32
const (
	// KeyAERecorderCount: Used with the `keyword` parameter of the AEManagerInfo function.
	KeyAERecorderCount KeyDirectObject = 'r'<<24 | 'e'<<16 | 'c'<<8 | 'r' // 'recr'
	// KeyAEVersion: Used with the `keyword` parameter of the AEManagerInfo function.
	KeyAEVersion KeyDirectObject = 'v'<<24 | 'e'<<16 | 'r'<<8 | 's' // 'vers'
	// KeyDirectObjectValue: Direct parameter.
	KeyDirectObjectValue KeyDirectObject = '-'<<24 | '-'<<16 | '-'<<8 | '-' // '----'
	// KeyErrorNumber: Error number.
	KeyErrorNumber KeyDirectObject = 'e'<<24 | 'r'<<16 | 'r'<<8 | 'n' // 'errn'
	// KeyErrorString: Error string.
	KeyErrorString KeyDirectObject = 'e'<<24 | 'r'<<16 | 'r'<<8 | 's' // 'errs'
	// KeyPreDispatch: A predispatch handler (an Apple event handler that the Apple Event Manager calls immediately before it dispatches an Apple event).
	KeyPreDispatch KeyDirectObject = 'p'<<24 | 'h'<<16 | 'a'<<8 | 'c' // 'phac'
	// KeyProcessSerialNumber: Process serial number.
	KeyProcessSerialNumber KeyDirectObject = 'p'<<24 | 's'<<16 | 'n'<<8 | ' ' // 'psn '
	// KeySelectProc: You pass this value in the `functionClass` parameter of the AEManagerInfo function to disable the Object Support Library.
	KeySelectProc KeyDirectObject = 's'<<24 | 'e'<<16 | 'l'<<8 | 'h' // 'selh'
)

func (KeyDirectObject) String added in v0.6.17

func (e KeyDirectObject) String() string

type KeyMenuID

type KeyMenuID uint32
const (
	KeyCloseAllWindows KeyMenuID = 'c'<<24 | 'a'<<16 | 'w'<<8 | ' ' // 'caw '
	KeyLocalWhere      KeyMenuID = 'l'<<24 | 'w'<<16 | 'h'<<8 | 'r' // 'lwhr'
	KeyMenuIDValue     KeyMenuID = 'm'<<24 | 'i'<<16 | 'd'<<8 | ' ' // 'mid '
	KeyMenuItem        KeyMenuID = 'm'<<24 | 'i'<<16 | 't'<<8 | 'm' // 'mitm'
	KeyNewBounds       KeyMenuID = 'n'<<24 | 'b'<<16 | 'n'<<8 | 'd' // 'nbnd'
	KeyOriginalBounds  KeyMenuID = 'o'<<24 | 'b'<<16 | 'n'<<8 | 'd' // 'obnd'
)

func (KeyMenuID) String added in v0.6.17

func (e KeyMenuID) String() string

type KeyMiscellaneous

type KeyMiscellaneous uint32
const (
	KeyDriveNumber        KeyMiscellaneous = 'd'<<24 | 'r'<<16 | 'v'<<8 | '#' // 'drv#'
	KeyErrorCode          KeyMiscellaneous = 'e'<<24 | 'r'<<16 | 'r'<<8 | '#' // 'err#'
	KeyHighLevelClass     KeyMiscellaneous = 'h'<<24 | 'c'<<16 | 'l'<<8 | 's' // 'hcls'
	KeyHighLevelID        KeyMiscellaneous = 'h'<<24 | 'i'<<16 | 'd'<<8 | ' ' // 'hid '
	KeyKey                KeyMiscellaneous = 'k'<<24 | 'e'<<16 | 'y'<<8 | ' ' // 'key '
	KeyKeyCode            KeyMiscellaneous = 'c'<<24 | 'o'<<16 | 'd'<<8 | 'e' // 'code'
	KeyKeyboard           KeyMiscellaneous = 'k'<<24 | 'e'<<16 | 'y'<<8 | 'b' // 'keyb'
	KeyMiscellaneousValue KeyMiscellaneous = 'f'<<24 | 'm'<<16 | 's'<<8 | 'c' // 'fmsc'
	KeyModifiers          KeyMiscellaneous = 'm'<<24 | 'o'<<16 | 'd'<<8 | 's' // 'mods'
	KeySelection          KeyMiscellaneous = 'f'<<24 | 's'<<16 | 'e'<<8 | 'l' // 'fsel'
	KeyWhen               KeyMiscellaneous = 'w'<<24 | 'h'<<16 | 'e'<<8 | 'n' // 'when'
	KeyWhere              KeyMiscellaneous = 'w'<<24 | 'h'<<16 | 'e'<<8 | 'r' // 'wher'
	KeyWindow             KeyMiscellaneous = 'k'<<24 | 'w'<<16 | 'n'<<8 | 'd' // 'kwnd'
)

func (KeyMiscellaneous) String added in v0.6.17

func (e KeyMiscellaneous) String() string

type KeyReplyPort added in v0.5.1

type KeyReplyPort uint32
const (
	KeyReplyPortAttr KeyReplyPort = 'r'<<24 | 'e'<<16 | 'p'<<8 | 'p' // 'repp'
)

func (KeyReplyPort) String added in v0.5.1

func (e KeyReplyPort) String() string

type KeySOAP

type KeySOAP uint32
const (
	KeySOAPSMDNamespace      KeySOAP = 's'<<24 | 's'<<16 | 'n'<<8 | 's' // 'ssns'
	KeySOAPSMDNamespaceURI   KeySOAP = 's'<<24 | 's'<<16 | 'n'<<8 | 'u' // 'ssnu'
	KeySOAPSMDType           KeySOAP = 's'<<24 | 's'<<16 | 't'<<8 | 'p' // 'sstp'
	KeySOAPStructureMetaData KeySOAP = '/'<<24 | 's'<<16 | 'm'<<8 | 'd' // '/smd'
)

func (KeySOAP) String

func (e KeySOAP) String() string

type KeyTransactionIDAttr

type KeyTransactionIDAttr uint32
const (
	KeyAcceptTimeoutAttr      KeyTransactionIDAttr = 'a'<<24 | 'c'<<16 | 't'<<8 | 'm' // 'actm'
	KeyActualSenderAuditToken KeyTransactionIDAttr = 'a'<<24 | 'c'<<16 | 'a'<<8 | 't' // 'acat'
	// KeyAddressAttr: Address of a target or client application.
	KeyAddressAttr              KeyTransactionIDAttr = 'a'<<24 | 'd'<<16 | 'd'<<8 | 'r' // 'addr'
	KeyAppleEventAttributesAttr KeyTransactionIDAttr = 'a'<<24 | 't'<<16 | 't'<<8 | 'r' // 'attr'
	// KeyEventClassAttr: Event class of an Apple event.
	KeyEventClassAttr KeyTransactionIDAttr = 'e'<<24 | 'v'<<16 | 'c'<<8 | 'l' // 'evcl'
	// KeyEventIDAttr: Event ID of an Apple event.
	KeyEventIDAttr KeyTransactionIDAttr = 'e'<<24 | 'v'<<16 | 'i'<<8 | 'd' // 'evid'
	// KeyEventSourceAttr: Nature of the source application.
	KeyEventSourceAttr KeyTransactionIDAttr = 'e'<<24 | 's'<<16 | 'r'<<8 | 'c' // 'esrc'
	// KeyInteractLevelAttr: Settings for when to allow the Apple Event Manager to bring a server application to the foreground, if necessary, to interact with the user.
	KeyInteractLevelAttr KeyTransactionIDAttr = 'i'<<24 | 'n'<<16 | 't'<<8 | 'e' // 'inte'
	// KeyMissedKeywordAttr: # Discussion
	KeyMissedKeywordAttr KeyTransactionIDAttr = 'm'<<24 | 'i'<<16 | 's'<<8 | 's' // 'miss'
	// KeyOptionalKeywordAttr: List of keywords for parameters of an Apple event that should be treated as optional by the target application.
	KeyOptionalKeywordAttr KeyTransactionIDAttr = 'o'<<24 | 'p'<<16 | 't'<<8 | 'k' // 'optk'
	// KeyOriginalAddressAttr: Address of original source of Apple event if the event has been forwarded (available only in version 1.01 or later versions of the Apple Event Manager).
	KeyOriginalAddressAttr KeyTransactionIDAttr = 'f'<<24 | 'r'<<16 | 'o'<<8 | 'm' // 'from'
	// KeyReplyRequestedAttr: A Boolean value indicating whether the Apple event expects to be replied to.
	KeyReplyRequestedAttr KeyTransactionIDAttr = 'r'<<24 | 'e'<<16 | 'p'<<8 | 'q' // 'repq'
	// KeyReturnIDAttr: Return ID for a reply Apple event.
	KeyReturnIDAttr                               KeyTransactionIDAttr = 'r'<<24 | 't'<<16 | 'i'<<8 | 'd' // 'rtid'
	KeySenderApplescriptEntitlementsAttr          KeyTransactionIDAttr = 'e'<<24 | 'n'<<16 | 't'<<8 | 'l' // 'entl'
	KeySenderApplicationIdentifierEntitlementAttr KeyTransactionIDAttr = 'a'<<24 | 'i'<<16 | 'e'<<8 | 'a' // 'aiea'
	KeySenderApplicationSandboxed                 KeyTransactionIDAttr = 's'<<24 | 's'<<16 | 's'<<8 | 'b' // 'sssb'
	KeySenderAuditTokenAttr                       KeyTransactionIDAttr = 't'<<24 | 'o'<<16 | 'k'<<8 | 'n' // 'tokn'
	KeySenderEGIDAttr                             KeyTransactionIDAttr = 's'<<24 | 'g'<<16 | 'i'<<8 | 'd' // 'sgid'
	KeySenderEUIDAttr                             KeyTransactionIDAttr = 's'<<24 | 'e'<<16 | 'i'<<8 | 'd' // 'seid'
	KeySenderGIDAttr                              KeyTransactionIDAttr = 'g'<<24 | 'i'<<16 | 'd'<<8 | 's' // 'gids'
	KeySenderPIDAttr                              KeyTransactionIDAttr = 's'<<24 | 'p'<<16 | 'i'<<8 | 'd' // 'spid'
	KeySenderUIDAttr                              KeyTransactionIDAttr = 'u'<<24 | 'i'<<16 | 'd'<<8 | 's' // 'uids'
	// KeyTimeoutAttr: Length of time, in ticks, that the client will wait for a reply or a result from the server.
	KeyTimeoutAttr KeyTransactionIDAttr = 't'<<24 | 'i'<<16 | 'm'<<8 | 'o' // 'timo'
	// KeyTransactionIDAttrValue: Transaction ID identifying a series of Apple events that are part of one transaction.
	KeyTransactionIDAttrValue KeyTransactionIDAttr = 't'<<24 | 'r'<<16 | 'a'<<8 | 'n' // 'tran'
)

func (KeyTransactionIDAttr) String added in v0.6.17

func (e KeyTransactionIDAttr) String() string

type KeyUserNameAttr

type KeyUserNameAttr uint32
const (
	KAERPCClass                  KeyUserNameAttr = 'r'<<24 | 'p'<<16 | 'c'<<8 | ' ' // 'rpc '
	KAESOAPScheme                KeyUserNameAttr = 'S'<<24 | 'O'<<16 | 'A'<<8 | 'P' // 'SOAP'
	KAESharedScriptHandler       KeyUserNameAttr = 'w'<<24 | 's'<<16 | 'c'<<8 | 'p' // 'wscp'
	KAEXMLRPCScheme              KeyUserNameAttr = 'R'<<24 | 'P'<<16 | 'C'<<8 | '2' // 'RPC2'
	KeyAEPOSTHeaderData          KeyUserNameAttr = 'p'<<24 | 'h'<<16 | 'e'<<8 | 'd' // 'phed'
	KeyAEReplyHeaderData         KeyUserNameAttr = 'r'<<24 | 'h'<<16 | 'e'<<8 | 'd' // 'rhed'
	KeyAEXMLReplyData            KeyUserNameAttr = 'x'<<24 | 'r'<<16 | 'e'<<8 | 'p' // 'xrep'
	KeyAEXMLRequestData          KeyUserNameAttr = 'x'<<24 | 'r'<<16 | 'e'<<8 | 'q' // 'xreq'
	KeyAdditionalHTTPHeaders     KeyUserNameAttr = 'a'<<24 | 'h'<<16 | 'e'<<8 | 'd' // 'ahed'
	KeyDisableAuthenticationAttr KeyUserNameAttr = 'a'<<24 | 'u'<<16 | 't'<<8 | 'h' // 'auth'
	KeyRPCMethodName             KeyUserNameAttr = 'm'<<24 | 'e'<<16 | 't'<<8 | 'h' // 'meth'
	KeyRPCMethodParam            KeyUserNameAttr = 'p'<<24 | 'a'<<16 | 'r'<<8 | 'm' // 'parm'
	KeyRPCMethodParamOrder       KeyUserNameAttr = '/'<<24 | 'o'<<16 | 'r'<<8 | 'd' // '/ord'
	KeySOAPAction                KeyUserNameAttr = 's'<<24 | 'a'<<16 | 'c'<<8 | 't' // 'sact'
	KeySOAPMethodNameSpace       KeyUserNameAttr = 'm'<<24 | 's'<<16 | 'p'<<8 | 'c' // 'mspc'
	KeySOAPMethodNameSpaceURI    KeyUserNameAttr = 'm'<<24 | 's'<<16 | 'p'<<8 | 'u' // 'mspu'
	KeySOAPSchemaVersion         KeyUserNameAttr = 's'<<24 | 's'<<16 | 'c'<<8 | 'h' // 'ssch'
	KeyUserNameAttrValue         KeyUserNameAttr = 'u'<<24 | 'n'<<16 | 'a'<<8 | 'm' // 'unam'
	KeyUserPasswordAttr          KeyUserNameAttr = 'p'<<24 | 'a'<<16 | 's'<<8 | 's' // 'pass'
	KeyXMLDebuggingAttr          KeyUserNameAttr = 'x'<<24 | 'd'<<16 | 'b'<<8 | 'g' // 'xdbg'
)

func (KeyUserNameAttr) String

func (e KeyUserNameAttr) String() string

type KioACAccessOwnerBit added in v0.5.1

type KioACAccessOwnerBit int32
const (
	KfullPrivileges               KioACAccessOwnerBit = 0x70007
	KioACAccessBlankAccessBit     KioACAccessOwnerBit = 28
	KioACAccessBlankAccessMask    KioACAccessOwnerBit = 0x10000000
	KioACAccessEveryoneReadBit    KioACAccessOwnerBit = 17
	KioACAccessEveryoneReadMask   KioACAccessOwnerBit = 0x20000
	KioACAccessEveryoneSearchBit  KioACAccessOwnerBit = 16
	KioACAccessEveryoneSearchMask KioACAccessOwnerBit = 0x10000
	KioACAccessEveryoneWriteBit   KioACAccessOwnerBit = 18
	KioACAccessEveryoneWriteMask  KioACAccessOwnerBit = 0x40000
	KioACAccessGroupReadBit       KioACAccessOwnerBit = 9
	KioACAccessGroupReadMask      KioACAccessOwnerBit = 0x200
	KioACAccessGroupSearchBit     KioACAccessOwnerBit = 8
	KioACAccessGroupSearchMask    KioACAccessOwnerBit = 0x100
	KioACAccessGroupWriteBit      KioACAccessOwnerBit = 10
	KioACAccessGroupWriteMask     KioACAccessOwnerBit = 0x400
	KioACAccessOwnerBitValue      KioACAccessOwnerBit = 31
	KioACAccessOwnerMask          KioACAccessOwnerBit = -2147483648
	KioACAccessOwnerReadBit       KioACAccessOwnerBit = 1
	KioACAccessOwnerReadMask      KioACAccessOwnerBit = 0x2
	KioACAccessOwnerSearchBit     KioACAccessOwnerBit = 0
	KioACAccessOwnerSearchMask    KioACAccessOwnerBit = 0x1
	KioACAccessOwnerWriteBit      KioACAccessOwnerBit = 2
	KioACAccessOwnerWriteMask     KioACAccessOwnerBit = 0x4
	KioACAccessUserReadBit        KioACAccessOwnerBit = 25
	KioACAccessUserReadMask       KioACAccessOwnerBit = 0x2000000
	KioACAccessUserSearchBit      KioACAccessOwnerBit = 24
	KioACAccessUserSearchMask     KioACAccessOwnerBit = 0x1000000
	KioACAccessUserWriteBit       KioACAccessOwnerBit = 26
	KioACAccessUserWriteMask      KioACAccessOwnerBit = 0x4000000
	KownerPrivileges              KioACAccessOwnerBit = 0x7
)

func (KioACAccessOwnerBit) String added in v0.5.1

func (e KioACAccessOwnerBit) String() string

type KioACUser added in v0.5.1

type KioACUser uint32
const (
	KioACUserNoMakeChangesBit  KioACUser = 2
	KioACUserNoMakeChangesMask KioACUser = 0x4
	KioACUserNoSeeFilesBit     KioACUser = 1
	KioACUserNoSeeFilesMask    KioACUser = 0x2
	KioACUserNoSeeFolderBit    KioACUser = 0
	KioACUserNoSeeFolderMask   KioACUser = 0x1
	KioACUserNotOwnerBit       KioACUser = 7
	KioACUserNotOwnerMask      KioACUser = 0x80
)

func (KioACUser) String added in v0.5.1

func (e KioACUser) String() string

type KioFCB added in v0.5.1

type KioFCB uint32
const (
	KioFCBFileLockedBit   KioFCB = 13
	KioFCBFileLockedMask  KioFCB = 0x2000
	KioFCBLargeFileBit    KioFCB = 11
	KioFCBLargeFileMask   KioFCB = 0x800
	KioFCBModifiedBit     KioFCB = 15
	KioFCBModifiedMask    KioFCB = 0x8000
	KioFCBOwnClumpBit     KioFCB = 14
	KioFCBOwnClumpMask    KioFCB = 0x4000
	KioFCBResourceBit     KioFCB = 9
	KioFCBResourceMask    KioFCB = 0x200
	KioFCBSharedWriteBit  KioFCB = 12
	KioFCBSharedWriteMask KioFCB = 0x1000
	KioFCBWriteBit        KioFCB = 8
	KioFCBWriteLockedBit  KioFCB = 10
	KioFCBWriteLockedMask KioFCB = 0x400
	KioFCBWriteMask       KioFCB = 0x100
)

func (KioFCB) String added in v0.5.1

func (e KioFCB) String() string

type KioFlAttribLockedBit added in v0.5.1

type KioFlAttribLockedBit uint32
const (
	IoDirFlg                  KioFlAttribLockedBit = 4
	IoDirMask                 KioFlAttribLockedBit = 0x10
	KioFlAttribCopyProtBit    KioFlAttribLockedBit = 6
	KioFlAttribCopyProtMask   KioFlAttribLockedBit = 0x40
	KioFlAttribDataOpenBit    KioFlAttribLockedBit = 3
	KioFlAttribDataOpenMask   KioFlAttribLockedBit = 0x8
	KioFlAttribDirBit         KioFlAttribLockedBit = 4
	KioFlAttribDirMask        KioFlAttribLockedBit = 0x10
	KioFlAttribFileOpenBit    KioFlAttribLockedBit = 7
	KioFlAttribFileOpenMask   KioFlAttribLockedBit = 0x80
	KioFlAttribInSharedBit    KioFlAttribLockedBit = 2
	KioFlAttribInSharedMask   KioFlAttribLockedBit = 0x4
	KioFlAttribLockedBitValue KioFlAttribLockedBit = 0
	KioFlAttribLockedMask     KioFlAttribLockedBit = 0x1
	KioFlAttribMountedBit     KioFlAttribLockedBit = 3
	KioFlAttribMountedMask    KioFlAttribLockedBit = 0x8
	KioFlAttribResOpenBit     KioFlAttribLockedBit = 2
	KioFlAttribResOpenMask    KioFlAttribLockedBit = 0x4
	KioFlAttribSharePointBit  KioFlAttribLockedBit = 5
	KioFlAttribSharePointMask KioFlAttribLockedBit = 0x20
)

func (KioFlAttribLockedBit) String added in v0.5.1

func (e KioFlAttribLockedBit) String() string

type KioVAtrb added in v0.5.1

type KioVAtrb uint32
const (
	KioVAtrbDefaultVolumeBit   KioVAtrb = 5
	KioVAtrbDefaultVolumeMask  KioVAtrb = 0x20
	KioVAtrbFilesOpenBit       KioVAtrb = 6
	KioVAtrbFilesOpenMask      KioVAtrb = 0x40
	KioVAtrbHardwareLockedBit  KioVAtrb = 7
	KioVAtrbHardwareLockedMask KioVAtrb = 0x80
	KioVAtrbSoftwareLockedBit  KioVAtrb = 15
	KioVAtrbSoftwareLockedMask KioVAtrb = 0x8000
)

func (KioVAtrb) String added in v0.5.1

func (e KioVAtrb) String() string

type Kno added in v0.5.1

type Kno uint32
const (
	KnoGroup Kno = 0
)

func (Kno) String added in v0.5.1

func (e Kno) String() string

type KnoUser added in v0.5.1

type KnoUser uint32
const (
	KadministratorUser KnoUser = 1
	KnoUserValue       KnoUser = 0
)

func (KnoUser) String added in v0.5.1

func (e KnoUser) String() string

type KtecMibenumdontcare added in v0.6.17

type KtecMibenumdontcare int32
const (
	KTEC_MIBEnumDontCare KtecMibenumdontcare = -1
)

func (KtecMibenumdontcare) String added in v0.6.17

func (e KtecMibenumdontcare) String() string

type KtextencodingebcdicLatincore added in v0.6.17

type KtextencodingebcdicLatincore uint32
const (
	// KTextEncodingEBCDIC_CP037: Code page 037, extended EBCDIC-US Latin1.
	KTextEncodingEBCDIC_CP037     KtextencodingebcdicLatincore = 0xc02
	KTextEncodingEBCDIC_LatinCore KtextencodingebcdicLatincore = 0xc01
)

func (KtextencodingebcdicLatincore) String added in v0.6.17

type KtextencodingebcdicUs added in v0.6.17

type KtextencodingebcdicUs uint32
const (
	// KTextEncodingEBCDIC_US: Basic EBCDIC-US encoding.
	KTextEncodingEBCDIC_US KtextencodingebcdicUs = 0xc01
)

func (KtextencodingebcdicUs) String added in v0.6.17

func (e KtextencodingebcdicUs) String() string

type Ktextencodingiso2022 added in v0.5.1

type Ktextencodingiso2022 uint32
const (
	KTextEncodingISO_2022_CN     Ktextencodingiso2022 = 0x830
	KTextEncodingISO_2022_CN_EXT Ktextencodingiso2022 = 0x831
	// KTextEncodingISO_2022_JP: See RFC 1468.
	KTextEncodingISO_2022_JP Ktextencodingiso2022 = 0x820
	// KTextEncodingISO_2022_JP_1: See RFC 2237.
	KTextEncodingISO_2022_JP_1 Ktextencodingiso2022 = 0x822
	// KTextEncodingISO_2022_JP_2: See RFC 1554.
	KTextEncodingISO_2022_JP_2 Ktextencodingiso2022 = 0x821
	// KTextEncodingISO_2022_JP_3: JIS X0213
	KTextEncodingISO_2022_JP_3 Ktextencodingiso2022 = 0x823
	KTextEncodingISO_2022_KR   Ktextencodingiso2022 = 0x840
)

func (Ktextencodingiso2022) String added in v0.5.1

func (e Ktextencodingiso2022) String() string

type KtextencodingusAscii added in v0.6.17

type KtextencodingusAscii uint32
const (
	KTextEncodingANSEL KtextencodingusAscii = 0x601
	// KTextEncodingCNS_11643_92_P1: CNS 11643-1992 plane 1.
	KTextEncodingCNS_11643_92_P1 KtextencodingusAscii = 0x651
	// KTextEncodingCNS_11643_92_P2: CNS 11643-1992 plane 2.
	KTextEncodingCNS_11643_92_P2 KtextencodingusAscii = 0x652
	// KTextEncodingCNS_11643_92_P3: CNS 11643-1992 plane 3 (11643-1986 plane 14).
	KTextEncodingCNS_11643_92_P3 KtextencodingusAscii = 0x653
	// KTextEncodingGBK_95: Annex to GB13000-93, for Windows 95; EUC-CN extended.
	KTextEncodingGBK_95        KtextencodingusAscii = 0x631
	KTextEncodingGB_18030_2000 KtextencodingusAscii = 0x632
	KTextEncodingGB_18030_2005 KtextencodingusAscii = 0x632
	KTextEncodingGB_2312_80    KtextencodingusAscii = 0x630
	KTextEncodingJIS_C6226_78  KtextencodingusAscii = 0x624
	// KTextEncodingJIS_X0201_76: JIS Roman and 1-byte katakana (halfwidth).
	KTextEncodingJIS_X0201_76       KtextencodingusAscii = 0x620
	KTextEncodingJIS_X0208_83       KtextencodingusAscii = 0x621
	KTextEncodingJIS_X0208_90       KtextencodingusAscii = 0x622
	KTextEncodingJIS_X0212_90       KtextencodingusAscii = 0x623
	KTextEncodingJIS_X0213_MenKuTen KtextencodingusAscii = 0x629
	// KTextEncodingKSC_5601_87: This is the same as KSC 5601-92 without Johab annex.
	KTextEncodingKSC_5601_87 KtextencodingusAscii = 0x640
	// KTextEncodingKSC_5601_92_Johab: KSC 5601-92 Johab annex.
	KTextEncodingKSC_5601_92_Johab KtextencodingusAscii = 0x641
	KTextEncodingShiftJIS_X0213    KtextencodingusAscii = 0x628
	KTextEncodingUS_ASCII          KtextencodingusAscii = 0x600
)

func (KtextencodingusAscii) String added in v0.6.17

func (e KtextencodingusAscii) String() string

type LSAcceptanceFlags

type LSAcceptanceFlags uint32

See: https://developer.apple.com/documentation/coreservices/lsacceptanceflags

const (
	// AcceptAllowLoginUI: Requests that the user interface to log in be presented.
	AcceptAllowLoginUI LSAcceptanceFlags = 0x2
	// AcceptDefault: Requests the default behavior that does not require the user interface to log in be presented.
	AcceptDefault LSAcceptanceFlags = 0x1
)

func (LSAcceptanceFlags) String

func (e LSAcceptanceFlags) String() string

type LSApplicationParameters

type LSApplicationParameters struct {
	// contains filtered or unexported fields
}

LSApplicationParameters - The specification that defines the app, launch flags, and additional parameters that control how an app launches.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/lsapplicationparameters

func (*LSApplicationParameters) Application

func (s *LSApplicationParameters) Application() *FSRef

Application returns the Application field from the record's packed storage.

func (*LSApplicationParameters) Argv

Argv returns the Argv field from the record's packed storage.

func (*LSApplicationParameters) AsyncLaunchRefCon

func (s *LSApplicationParameters) AsyncLaunchRefCon() uintptr

AsyncLaunchRefCon returns the AsyncLaunchRefCon field from the record's packed storage.

func (*LSApplicationParameters) Environment

Environment returns the Environment field from the record's packed storage.

func (*LSApplicationParameters) Flags

Flags returns the Flags field from the record's packed storage.

func (*LSApplicationParameters) InitialEvent

func (s *LSApplicationParameters) InitialEvent() *AEDesc

InitialEvent returns the InitialEvent field from the record's packed storage.

func (*LSApplicationParameters) SetApplication added in v0.6.17

func (s *LSApplicationParameters) SetApplication(v *FSRef)

SetApplication updates the Application field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*LSApplicationParameters) SetArgv added in v0.6.17

SetArgv updates the Argv field in the record's packed storage.

func (*LSApplicationParameters) SetAsyncLaunchRefCon added in v0.6.17

func (s *LSApplicationParameters) SetAsyncLaunchRefCon(v uintptr)

SetAsyncLaunchRefCon updates the AsyncLaunchRefCon field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*LSApplicationParameters) SetEnvironment added in v0.6.17

SetEnvironment updates the Environment field in the record's packed storage.

func (*LSApplicationParameters) SetFlags added in v0.6.17

func (s *LSApplicationParameters) SetFlags(v LSLaunchFlags)

SetFlags updates the Flags field in the record's packed storage.

func (*LSApplicationParameters) SetInitialEvent added in v0.6.17

func (s *LSApplicationParameters) SetInitialEvent(v *AEDesc)

SetInitialEvent updates the InitialEvent field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*LSApplicationParameters) SetVersion added in v0.6.17

func (s *LSApplicationParameters) SetVersion(v int)

SetVersion updates the Version field in the record's packed storage.

func (*LSApplicationParameters) Version

func (s *LSApplicationParameters) Version() int

Version returns the Version field from the record's packed storage.

type LSHandlerOptions

type LSHandlerOptions uint32

See: https://developer.apple.com/documentation/coreservices/lshandleroptions

const (
	// Deprecated.
	IgnoreCreator LSHandlerOptions = 1
)

func LSGetHandlerOptionsForContentType deprecated

func LSGetHandlerOptionsForContentType(inContentType corefoundation.CFStringRef) LSHandlerOptions

LSGetHandlerOptionsForContentType gets the handler options for the specified content type.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1445296-lsgethandleroptionsforcontenttyp

func (LSHandlerOptions) String

func (e LSHandlerOptions) String() string

type LSItemInfoFlags

type LSItemInfoFlags uint32

See: https://developer.apple.com/documentation/coreservices/lsiteminfoflags

const (
	// Deprecated.
	AppIsScriptable LSItemInfoFlags = 0x800
	// Deprecated.
	AppPrefersClassic LSItemInfoFlags = 0x400
	// Deprecated.
	AppPrefersNative LSItemInfoFlags = 0x200
	// Deprecated.
	ExtensionIsHidden LSItemInfoFlags = 0x100000
	// Deprecated.
	IsAliasFile LSItemInfoFlags = 0x10
	// Deprecated.
	IsApplication LSItemInfoFlags = 4
	// Deprecated.
	IsClassicApp LSItemInfoFlags = 0x100
	// Deprecated.
	IsContainer LSItemInfoFlags = 0x8
	// Deprecated.
	IsInvisible LSItemInfoFlags = 0x40
	// Deprecated.
	IsNativeApp LSItemInfoFlags = 0x80
	// Deprecated.
	IsPackage LSItemInfoFlags = 0x2
	// Deprecated.
	IsPlainFile LSItemInfoFlags = 0x1
	// Deprecated.
	IsSymlink LSItemInfoFlags = 0x20
	// Deprecated.
	IsVolume LSItemInfoFlags = 0x1000
	// Deprecated.
	KLSItemInfoIsApplication LSItemInfoFlags = 0x4
)

func (LSItemInfoFlags) String

func (e LSItemInfoFlags) String() string

type LSItemInfoRecord

type LSItemInfoRecord struct {
	// contains filtered or unexported fields
}

LSItemInfoRecord - The specification that contains requested information about an item.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/lsiteminforecord

func (*LSItemInfoRecord) Creator

func (s *LSItemInfoRecord) Creator() uint32

Creator returns the Creator field from the record's packed storage.

func (*LSItemInfoRecord) Extension

Extension returns the Extension field from the record's packed storage.

func (*LSItemInfoRecord) Filetype

func (s *LSItemInfoRecord) Filetype() uint32

Filetype returns the Filetype field from the record's packed storage.

func (*LSItemInfoRecord) Flags

func (s *LSItemInfoRecord) Flags() LSItemInfoFlags

Flags returns the Flags field from the record's packed storage.

func (*LSItemInfoRecord) SetCreator added in v0.6.17

func (s *LSItemInfoRecord) SetCreator(v uint32)

SetCreator updates the Creator field in the record's packed storage.

func (*LSItemInfoRecord) SetExtension added in v0.6.17

func (s *LSItemInfoRecord) SetExtension(v corefoundation.CFStringRef)

SetExtension updates the Extension field in the record's packed storage.

func (*LSItemInfoRecord) SetFiletype added in v0.6.17

func (s *LSItemInfoRecord) SetFiletype(v uint32)

SetFiletype updates the Filetype field in the record's packed storage.

func (*LSItemInfoRecord) SetFlags added in v0.6.17

func (s *LSItemInfoRecord) SetFlags(v LSItemInfoFlags)

SetFlags updates the Flags field in the record's packed storage.

type LSLaunchFSRefSpec

type LSLaunchFSRefSpec struct {
	// contains filtered or unexported fields
}

LSLaunchFSRefSpec - The specification that defines, by file-system reference, an app to launch, items to open, or both, along with related information.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/lslaunchfsrefspec

func (*LSLaunchFSRefSpec) AppRef

func (s *LSLaunchFSRefSpec) AppRef() *FSRef

AppRef returns the AppRef field from the record's packed storage.

func (*LSLaunchFSRefSpec) AsyncRefCon

func (s *LSLaunchFSRefSpec) AsyncRefCon() uintptr

AsyncRefCon returns the AsyncRefCon field from the record's packed storage.

func (*LSLaunchFSRefSpec) ItemRefs

func (s *LSLaunchFSRefSpec) ItemRefs() *FSRef

ItemRefs returns the ItemRefs field from the record's packed storage.

func (*LSLaunchFSRefSpec) LaunchFlags

func (s *LSLaunchFSRefSpec) LaunchFlags() LSLaunchFlags

LaunchFlags returns the LaunchFlags field from the record's packed storage.

func (*LSLaunchFSRefSpec) NumDocs

func (s *LSLaunchFSRefSpec) NumDocs() uint

NumDocs returns the NumDocs field from the record's packed storage.

func (*LSLaunchFSRefSpec) PassThruParams

func (s *LSLaunchFSRefSpec) PassThruParams() *AEDesc

PassThruParams returns the PassThruParams field from the record's packed storage.

func (*LSLaunchFSRefSpec) SetAppRef added in v0.6.17

func (s *LSLaunchFSRefSpec) SetAppRef(v *FSRef)

SetAppRef updates the AppRef field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*LSLaunchFSRefSpec) SetAsyncRefCon added in v0.6.17

func (s *LSLaunchFSRefSpec) SetAsyncRefCon(v uintptr)

SetAsyncRefCon updates the AsyncRefCon field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*LSLaunchFSRefSpec) SetItemRefs added in v0.6.17

func (s *LSLaunchFSRefSpec) SetItemRefs(v *FSRef)

SetItemRefs updates the ItemRefs field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*LSLaunchFSRefSpec) SetLaunchFlags added in v0.6.17

func (s *LSLaunchFSRefSpec) SetLaunchFlags(v LSLaunchFlags)

SetLaunchFlags updates the LaunchFlags field in the record's packed storage.

func (*LSLaunchFSRefSpec) SetNumDocs added in v0.6.17

func (s *LSLaunchFSRefSpec) SetNumDocs(v uint)

SetNumDocs updates the NumDocs field in the record's packed storage.

func (*LSLaunchFSRefSpec) SetPassThruParams added in v0.6.17

func (s *LSLaunchFSRefSpec) SetPassThruParams(v *AEDesc)

SetPassThruParams updates the PassThruParams field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

type LSLaunchFlags

type LSLaunchFlags uint32

See: https://developer.apple.com/documentation/coreservices/lslaunchflags

const (
	// AndDisplayErrors: Requests that launch and open failures be displayed in the UI.
	AndDisplayErrors LSLaunchFlags = 0x40
	// AndHide: Requests that the application be hidden as soon as it completes its launch sequence.
	AndHide LSLaunchFlags = 0x100000
	// AndHideOthers: Requests that other applications be hidden as soon as the opened application completes its launch sequence.
	AndHideOthers LSLaunchFlags = 0x200000
	// AndPrint: Requests that documents opened in the application be printed.
	AndPrint LSLaunchFlags = 0x2
	// Async: Requests that the application be launched asynchronously.
	Async LSLaunchFlags = 0x10000
	// Defaults: Requests launching in the default manner (as if the only flags set were `kLSLaunchNoParams`, `kLSLaunchAsync`, and `kLSLaunchStartClassic`).
	Defaults LSLaunchFlags = 0x1
	// DontAddToRecents: Requests that the application or documents not be added to the Finder’s Recent Items menu.
	DontAddToRecents LSLaunchFlags = 0x100
	// DontSwitch: Requests that the application be launched without being brought to the foreground.
	DontSwitch LSLaunchFlags = 0x200
	// NewInstance: Requests that a new instance of the application be started, even if one is already running.
	NewInstance LSLaunchFlags = 0x80000
)

func (LSLaunchFlags) String

func (e LSLaunchFlags) String() string

type LSLaunchURLSpec

type LSLaunchURLSpec struct {
	// contains filtered or unexported fields
}

LSLaunchURLSpec - The specification for launching an app, opening items, or both, along with related information.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/lslaunchurlspec

func (*LSLaunchURLSpec) AppURL

AppURL returns the AppURL field from the record's packed storage.

func (*LSLaunchURLSpec) AsyncRefCon

func (s *LSLaunchURLSpec) AsyncRefCon() uintptr

AsyncRefCon returns the AsyncRefCon field from the record's packed storage.

func (*LSLaunchURLSpec) ItemURLs

ItemURLs returns the ItemURLs field from the record's packed storage.

func (*LSLaunchURLSpec) LaunchFlags

func (s *LSLaunchURLSpec) LaunchFlags() LSLaunchFlags

LaunchFlags returns the LaunchFlags field from the record's packed storage.

func (*LSLaunchURLSpec) PassThruParams

func (s *LSLaunchURLSpec) PassThruParams() *AEDesc

PassThruParams returns the PassThruParams field from the record's packed storage.

func (*LSLaunchURLSpec) SetAppURL added in v0.6.17

func (s *LSLaunchURLSpec) SetAppURL(v corefoundation.CFURLRef)

SetAppURL updates the AppURL field in the record's packed storage.

func (*LSLaunchURLSpec) SetAsyncRefCon added in v0.6.17

func (s *LSLaunchURLSpec) SetAsyncRefCon(v uintptr)

SetAsyncRefCon updates the AsyncRefCon field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

func (*LSLaunchURLSpec) SetItemURLs added in v0.6.17

func (s *LSLaunchURLSpec) SetItemURLs(v corefoundation.CFArrayRef)

SetItemURLs updates the ItemURLs field in the record's packed storage.

func (*LSLaunchURLSpec) SetLaunchFlags added in v0.6.17

func (s *LSLaunchURLSpec) SetLaunchFlags(v LSLaunchFlags)

SetLaunchFlags updates the LaunchFlags field in the record's packed storage.

func (*LSLaunchURLSpec) SetPassThruParams added in v0.6.17

func (s *LSLaunchURLSpec) SetPassThruParams(v *AEDesc)

SetPassThruParams updates the PassThruParams field in the record's packed storage.

v is stored as a raw address. The storage is a byte array, so the garbage collector scans it as integers and an address written here keeps nothing alive. v must name C-owned memory, or Go memory the caller pins with runtime.Pinner for as long as C reads the record.

type LSRequestedInfo

type LSRequestedInfo uint32

See: https://developer.apple.com/documentation/coreservices/lsrequestedinfo

const (
	// Deprecated.
	RequestAllFlags LSRequestedInfo = 0x10
	// Deprecated.
	RequestAllInfo LSRequestedInfo = 0xffffffff
	// Deprecated.
	RequestAppTypeFlags LSRequestedInfo = 0x8
	// Deprecated.
	RequestBasicFlagsOnly LSRequestedInfo = 0x4
	// Deprecated.
	RequestExtension LSRequestedInfo = 1
	// Deprecated.
	RequestExtensionFlagsOnly LSRequestedInfo = 0x40
	// Deprecated.
	RequestIconAndKind LSRequestedInfo = 0x20
	// Deprecated.
	RequestTypeCreator LSRequestedInfo = 0x2
)

func (LSRequestedInfo) String

func (e LSRequestedInfo) String() string

type LSRolesMask

type LSRolesMask uint32

See: https://developer.apple.com/documentation/coreservices/lsrolesmask

const (
	// All: Accepts any role with respect to the item.
	All LSRolesMask = 0xffffffff
	// Editor: Requests the role [Editor] (theapplication can read, present, manipulate, and save the item).
	Editor LSRolesMask = 0x4
	// None: Requests the role [None] (theapplication cannot open the item, but provides an icon and a kindstring for it).
	None LSRolesMask = 0x1
	// Shell: Requests the role [Shell] (theapplication can execute the item).
	Shell LSRolesMask = 0x8
	// Viewer: Requests the role [Viewer] (theapplication can read and present the item, but cannot manipulateor save it).
	Viewer LSRolesMask = 0x2
)

func (LSRolesMask) String

func (e LSRolesMask) String() string

type LSSharedFileListItemRef

type LSSharedFileListItemRef uintptr

LSSharedFileListItemRef is a file-system object in the shared file list.

See: https://developer.apple.com/documentation/coreservices/lssharedfilelistitemref

func LSSharedFileListInsertItemFSRef deprecated

func LSSharedFileListInsertItemFSRef(inList LSSharedFileListRef, insertAfterThisItem LSSharedFileListItemRef, inDisplayName corefoundation.CFStringRef, inIconRef IconRef, inFSRef unsafe.Pointer, inPropertiesToSet corefoundation.CFDictionaryRef, inPropertiesToClear corefoundation.CFArrayRef) LSSharedFileListItemRef

LSSharedFileListInsertItemFSRef.

Deprecated: Deprecated since macOS 10.10.

See: https://developer.apple.com/documentation/coreservices/1449884-lssharedfilelistinsertitemfsref

func LSSharedFileListInsertItemURL deprecated

func LSSharedFileListInsertItemURL(inList LSSharedFileListRef, insertAfterThisItem LSSharedFileListItemRef, inDisplayName corefoundation.CFStringRef, inIconRef IconRef, inURL corefoundation.CFURLRef, inPropertiesToSet corefoundation.CFDictionaryRef, inPropertiesToClear corefoundation.CFArrayRef) LSSharedFileListItemRef

LSSharedFileListInsertItemURL.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1444471-lssharedfilelistinsertitemurl

type LSSharedFileListRef

type LSSharedFileListRef uintptr

LSSharedFileListRef is a persistent list of file-system objects.

See: https://developer.apple.com/documentation/coreservices/lssharedfilelistref

func LSSharedFileListCreate deprecated

func LSSharedFileListCreate(inAllocator corefoundation.CFAllocatorRef, inListType corefoundation.CFStringRef, listOptions corefoundation.CFTypeRef) LSSharedFileListRef

LSSharedFileListCreate.

Deprecated: Deprecated since macOS 10.11.

See: https://developer.apple.com/documentation/coreservices/1443926-lssharedfilelistcreate

type La

type La int32
const (
	LaDictionaryNotOpenedErr La = -6992
	LaDictionaryTooManyErr   La = -6994
	LaDictionaryUnknownErr   La = -6993
	LaEngineNotFoundErr      La = -7000
	LaEnvironmentBusyErr     La = -6985
	LaEnvironmentExistErr    La = -6987
	LaEnvironmentNotFoundErr La = -6986
	LaFailAnalysisErr        La = -6990
	LaInvalidPathErr         La = -6988
	LaNoMoreMorphemeErr      La = -6989
	LaPropertyErr            La = -6999
	LaPropertyIsReadOnlyErr  La = -6997
	LaPropertyNotFoundErr    La = -6998
	LaPropertyUnknownErr     La = -6996
	LaPropertyValueErr       La = -6995
	LaTextOverFlowErr        La = -6991
	LaTooSmallBufferErr      La = -6984
)

func (La) String

func (e La) String() string

type LangBreton added in v0.5.1

type LangBreton uint32
const (
	// Deprecated.
	LangAzerbaijanRoman LangBreton = 150
	// Deprecated.
	LangBretonValue LangBreton = 142
	// Deprecated.
	LangGreekAncient LangBreton = 148
	// Deprecated.
	LangGreenlandic LangBreton = 149
	// Deprecated.
	LangInuktitut LangBreton = 143
	// Deprecated.
	LangIrishGaelicScript LangBreton = 146
	// Deprecated.
	LangManxGaelic LangBreton = 145
	// Deprecated.
	LangNynorsk LangBreton = 151
	// Deprecated.
	LangScottishGaelic LangBreton = 144
	// Deprecated.
	LangTongan LangBreton = 147
)

func (LangBreton) String added in v0.6.17

func (e LangBreton) String() string

type LangEnglish added in v0.5.1

type LangEnglish uint32
const (
	// Deprecated.
	LangArabic LangEnglish = 12
	// Deprecated.
	LangCroatian LangEnglish = 18
	// Deprecated.
	LangDanish LangEnglish = 7
	// Deprecated.
	LangDutch LangEnglish = 4
	// Deprecated.
	LangEnglishValue LangEnglish = 0
	// Deprecated.
	LangFinnish LangEnglish = 13
	// Deprecated.
	LangFrench LangEnglish = 1
	// Deprecated.
	LangGerman LangEnglish = 2
	// Deprecated.
	LangGreek LangEnglish = 14
	// Deprecated.
	LangHebrew LangEnglish = 10
	// Deprecated.
	LangHindi LangEnglish = 21
	// Deprecated.
	LangIcelandic LangEnglish = 15
	// Deprecated.
	LangItalian LangEnglish = 3
	// Deprecated.
	LangJapanese LangEnglish = 11
	// Deprecated.
	LangKorean LangEnglish = 23
	// Deprecated.
	LangMaltese LangEnglish = 16
	// Deprecated.
	LangNorwegian LangEnglish = 9
	// Deprecated.
	LangPortuguese LangEnglish = 8
	// Deprecated.
	LangSpanish LangEnglish = 6
	// Deprecated.
	LangSwedish LangEnglish = 5
	// Deprecated.
	LangThai LangEnglish = 22
	// Deprecated.
	LangTradChinese LangEnglish = 19
	// Deprecated.
	LangTurkish LangEnglish = 17
	// Deprecated.
	LangUrdu LangEnglish = 20
)

func (LangEnglish) String added in v0.6.17

func (e LangEnglish) String() string

type LangLithuanian added in v0.5.1

type LangLithuanian uint32
const (
	// Deprecated.
	LangAlbanian LangLithuanian = 36
	// Deprecated.
	LangBelorussian LangLithuanian = 46
	// Deprecated.
	LangBulgarian LangLithuanian = 44
	// Deprecated.
	LangByelorussian LangLithuanian = 46
	// Deprecated.
	LangCzech LangLithuanian = 38
	// Deprecated.
	LangEstonian LangLithuanian = 27
	// Deprecated.
	LangFaroese LangLithuanian = 30
	// Deprecated.
	LangFarsi LangLithuanian = 31
	// Deprecated.
	LangFlemish LangLithuanian = 34
	// Deprecated.
	LangHungarian LangLithuanian = 26
	// Deprecated.
	LangIrishGaelic LangLithuanian = 35
	// Deprecated.
	LangLatvian LangLithuanian = 28
	// Deprecated.
	LangLithuanianValue LangLithuanian = 24
	// Deprecated.
	LangMacedonian LangLithuanian = 43
	// Deprecated.
	LangPersian LangLithuanian = 31
	// Deprecated.
	LangPolish LangLithuanian = 25
	// Deprecated.
	LangRomanian LangLithuanian = 37
	// Deprecated.
	LangRussian LangLithuanian = 32
	// Deprecated.
	LangSami LangLithuanian = 29
	// Deprecated.
	LangSerbian LangLithuanian = 42
	// Deprecated.
	LangSimpChinese LangLithuanian = 33
	// Deprecated.
	LangSlovak LangLithuanian = 39
	// Deprecated.
	LangSlovenian LangLithuanian = 40
	// Deprecated.
	LangUkrainian LangLithuanian = 45
	// Deprecated.
	LangYiddish LangLithuanian = 41
)

func (LangLithuanian) String added in v0.6.17

func (e LangLithuanian) String() string

type LangOriya added in v0.5.1

type LangOriya uint32
const (
	// Deprecated.
	LangAmharic LangOriya = 85
	// Deprecated.
	LangBurmese LangOriya = 77
	// Deprecated.
	LangChewa LangOriya = 92
	// Deprecated.
	LangEsperanto LangOriya = 94
	// Deprecated.
	LangIndonesian LangOriya = 81
	// Deprecated.
	LangKannada LangOriya = 73
	// Deprecated.
	LangKhmer LangOriya = 78
	// Deprecated.
	LangKinyarwanda LangOriya = 90
	// Deprecated.
	LangLao LangOriya = 79
	// Deprecated.
	LangMalagasy LangOriya = 93
	// Deprecated.
	LangMalayArabic LangOriya = 84
	// Deprecated.
	LangMalayRoman LangOriya = 83
	// Deprecated.
	LangMalayalam LangOriya = 72
	// Deprecated.
	LangNyanja LangOriya = 92
	// Deprecated.
	LangOriyaValue LangOriya = 71
	// Deprecated.
	LangOromo LangOriya = 87
	// Deprecated.
	LangRuanda LangOriya = 90
	// Deprecated.
	LangRundi LangOriya = 91
	// Deprecated.
	LangSinhalese LangOriya = 76
	// Deprecated.
	LangSomali LangOriya = 88
	// Deprecated.
	LangSwahili LangOriya = 89
	// Deprecated.
	LangTagalog LangOriya = 82
	// Deprecated.
	LangTamil LangOriya = 74
	// Deprecated.
	LangTelugu LangOriya = 75
	// Deprecated.
	LangTigrinya LangOriya = 86
	// Deprecated.
	LangVietnamese LangOriya = 80
)

func (LangOriya) String added in v0.6.17

func (e LangOriya) String() string

type LangPortugese added in v0.5.1

type LangPortugese uint32
const (
	// Deprecated.
	LangAfricaans LangPortugese = 141
	// Deprecated.
	LangChinese LangPortugese = 19
	// Deprecated.
	LangFaeroese LangPortugese = 30
	// Deprecated.
	LangGalla LangPortugese = 87
	// Deprecated.
	LangGreekPoly LangPortugese = 148
	// Deprecated.
	LangIrish LangPortugese = 35
	// Deprecated.
	LangLappish LangPortugese = 29
	// Deprecated.
	LangLapponian LangPortugese = 29
	// Deprecated.
	LangLettish LangPortugese = 28
	// Deprecated.
	LangMalta LangPortugese = 16
	// Deprecated.
	LangPortugeseValue LangPortugese = 8
	// Deprecated.
	LangSaamisk LangPortugese = 29
	// Deprecated.
	LangYugoslavian LangPortugese = 18
)

func (LangPortugese) String added in v0.6.17

func (e LangPortugese) String() string

type LangUzbek added in v0.5.1

type LangUzbek uint32
const (
	// Deprecated.
	LangArmenian LangUzbek = 51
	// Deprecated.
	LangAssamese LangUzbek = 68
	// Deprecated.
	LangAzerbaijanAr LangUzbek = 50
	// Deprecated.
	LangAzerbaijani LangUzbek = 49
	// Deprecated.
	LangBengali LangUzbek = 67
	// Deprecated.
	LangGeorgian LangUzbek = 52
	// Deprecated.
	LangGujarati LangUzbek = 69
	// Deprecated.
	LangKashmiri LangUzbek = 61
	// Deprecated.
	LangKazakh LangUzbek = 48
	// Deprecated.
	LangKirghiz LangUzbek = 54
	// Deprecated.
	LangKurdish LangUzbek = 60
	// Deprecated.
	LangMarathi LangUzbek = 66
	// Deprecated.
	LangMoldavian LangUzbek = 53
	// Deprecated.
	LangMongolian LangUzbek = 57
	// Deprecated.
	LangMongolianCyr LangUzbek = 58
	// Deprecated.
	LangNepali LangUzbek = 64
	// Deprecated.
	LangPashto LangUzbek = 59
	// Deprecated.
	LangPunjabi LangUzbek = 70
	// Deprecated.
	LangSanskrit LangUzbek = 65
	// Deprecated.
	LangSindhi LangUzbek = 62
	// Deprecated.
	LangTajiki LangUzbek = 55
	// Deprecated.
	LangTibetan LangUzbek = 63
	// Deprecated.
	LangTurkmen LangUzbek = 56
	// Deprecated.
	LangUzbekValue LangUzbek = 47
)

func (LangUzbek) String added in v0.6.17

func (e LangUzbek) String() string

type LangWelsh added in v0.5.1

type LangWelsh uint32
const (
	// Deprecated.
	LangAfrikaans LangWelsh = 141
	// Deprecated.
	LangAymara LangWelsh = 134
	// Deprecated.
	LangBasque LangWelsh = 129
	// Deprecated.
	LangCatalan LangWelsh = 130
	// Deprecated.
	LangDzongkha LangWelsh = 137
	// Deprecated.
	LangGalician LangWelsh = 140
	// Deprecated.
	LangGuarani LangWelsh = 133
	// Deprecated.
	LangJavaneseRom LangWelsh = 138
	// Deprecated.
	LangLatin LangWelsh = 131
	// Deprecated.
	LangQuechua LangWelsh = 132
	// Deprecated.
	LangSundaneseRom LangWelsh = 139
	// Deprecated.
	LangTatar LangWelsh = 135
	// Deprecated.
	LangUighur LangWelsh = 136
	// Deprecated.
	LangWelshValue LangWelsh = 128
)

func (LangWelsh) String added in v0.6.17

func (e LangWelsh) String() string

type Large1BitMask added in v0.5.1

type Large1BitMask uint32
const (
	Large1BitMaskValue Large1BitMask = 'I'<<24 | 'C'<<16 | 'N'<<8 | '#' // 'ICN#'
	Large4BitData      Large1BitMask = 'i'<<24 | 'c'<<16 | 'l'<<8 | '4' // 'icl4'
	Large8BitData      Large1BitMask = 'i'<<24 | 'c'<<16 | 'l'<<8 | '8' // 'icl8'
	Mini1BitMask       Large1BitMask = 'i'<<24 | 'c'<<16 | 'm'<<8 | '#' // 'icm#'
	Mini4BitData       Large1BitMask = 'i'<<24 | 'c'<<16 | 'm'<<8 | '4' // 'icm4'
	Mini8BitData       Large1BitMask = 'i'<<24 | 'c'<<16 | 'm'<<8 | '8' // 'icm8'
	Small1BitMask      Large1BitMask = 'i'<<24 | 'c'<<16 | 's'<<8 | '#' // 'ics#'
	Small4BitData      Large1BitMask = 'i'<<24 | 'c'<<16 | 's'<<8 | '4' // 'ics4'
	Small8BitData      Large1BitMask = 'i'<<24 | 'c'<<16 | 's'<<8 | '8' // 'ics8'
)

func (Large1BitMask) String added in v0.5.1

func (e Large1BitMask) String() string

type LocalDateTime

type LocalDateTime [4]uint16

See: https://developer.apple.com/documentation/coreservices/localdatetime LocalDateTime is opaque storage with the size and alignment C gives LocalDateTime: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type LocaleAndVariant

type LocaleAndVariant [6]uint16

See: https://developer.apple.com/documentation/coreservices/localeandvariant LocaleAndVariant is opaque storage with the size and alignment C gives LocaleAndVariant: 12 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 12 into.

type MDExporterInterfaceStruct

type MDExporterInterfaceStruct struct {
	QueryInterface     unsafe.Pointer
	AddRef             unsafe.Pointer
	Release            unsafe.Pointer
	ImporterExportData unsafe.Pointer
	// contains filtered or unexported fields
}

MDExporterInterfaceStruct

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/mdexporterinterfacestruct

type MDImporterBundleWrapperURLInterfaceStruct

type MDImporterBundleWrapperURLInterfaceStruct struct {
	QueryInterface                     unsafe.Pointer
	AddRef                             unsafe.Pointer
	Release                            unsafe.Pointer
	ImporterImportBundleWrapperURLData unsafe.Pointer
	// contains filtered or unexported fields
}

MDImporterBundleWrapperURLInterfaceStruct

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/mdimporterbundlewrapperurlinterfacestruct

type MDImporterInterfaceStruct

type MDImporterInterfaceStruct struct {
	QueryInterface     unsafe.Pointer
	AddRef             unsafe.Pointer
	Release            unsafe.Pointer
	ImporterImportData unsafe.Pointer
	// contains filtered or unexported fields
}

MDImporterInterfaceStruct

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/mdimporterinterfacestruct

type MDImporterURLInterfaceStruct

type MDImporterURLInterfaceStruct struct {
	QueryInterface        unsafe.Pointer
	AddRef                unsafe.Pointer
	Release               unsafe.Pointer
	ImporterImportURLData unsafe.Pointer
	// contains filtered or unexported fields
}

MDImporterURLInterfaceStruct

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/mdimporterurlinterfacestruct

type MDItemRef

type MDItemRef uintptr

MDItemRef is a reference to a MDItem object.

See: https://developer.apple.com/documentation/coreservices/mditemref

func MDItemCreate

MDItemCreate creates an MDItem object for a file at the specified path.

See: https://developer.apple.com/documentation/coreservices/1426917-mditemcreate

func MDItemCreateWithURL

func MDItemCreateWithURL(allocator corefoundation.CFAllocatorRef, url corefoundation.CFURLRef) MDItemRef

MDItemCreateWithURL creates an MDItem object for a file at the specified file URL.

See: https://developer.apple.com/documentation/coreservices/1427034-mditemcreatewithurl

type MDLabelDomain added in v0.5.1

type MDLabelDomain uint32

See: https://developer.apple.com/documentation/coreservices/mdlabeldomain

const (
	KMDLabelLocalDomain MDLabelDomain = 1
	KMDLabelUserDomain  MDLabelDomain = 0
)

func (MDLabelDomain) String added in v0.5.1

func (e MDLabelDomain) String() string

type MDQueryBatchingParams

type MDQueryBatchingParams struct {
	First_max_num    uintptr // The maximum number of results that can accumulatebefore the first progress notification is sent. This value is usedonly during the initial result-gathering phase of a query.
	First_max_ms     uintptr // The maximum number of milliseconds that can passbefore the first progress notification is sent. This value is advisory,in that the notification will be triggered at some point after `first_max_ms` millisecondshave passed since the query began accumulating results. This valueis used only during the initial result-gathering phase of a query.
	Progress_max_num uintptr // The maximum number of results that can accumulatebefore additional progress notifications are sent. This value isused only during the initial result-gathering phase of a query.
	Progress_max_ms  uintptr // The maximum number of milliseconds that can passbefore additional progress notifications are sent. This value isadvisory, in that the notification will be triggered at some pointafter `progress_max_ms` millisecondshave passed since the query began accumulating results. This valueis used only during the initial result-gathering phase of a query.
	Update_max_num   uintptr // The maximum number of results that can accumulatebefore an update notification is sent. This value is used only duringthe live-update phase of a query.
	Update_max_ms    uintptr // The maximum number of milliseconds that can passbefore an update notification is sent. This value is advisory, inthat the notification will be triggered at some point after `update_max_ms` millisecondshave passed since the query began accumulating results. This valueis used only during the live-update phase of a query.

}

MDQueryBatchingParams - Structure containing the progress notification batchingparameters of a MDQuery.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/mdquerybatchingparams

func MDQueryGetBatchingParameters

func MDQueryGetBatchingParameters(query MDQueryRef) MDQueryBatchingParams

MDQueryGetBatchingParameters returns the current parameters that control the batching of progress notifications.

See: https://developer.apple.com/documentation/coreservices/1413006-mdquerygetbatchingparameters

type MDQueryCreateResultFunction

type MDQueryCreateResultFunction = func(query MDQueryRef, item MDItemRef, context unsafe.Pointer) unsafe.Pointer

MDQueryCreateResultFunction is callback function used to create the result objects stored and returned by a query.

See: https://developer.apple.com/documentation/coreservices/mdquerycreateresultfunction

type MDQueryCreateValueFunction

type MDQueryCreateValueFunction = func(query MDQueryRef, attrName corefoundation.CFStringRef, attrValue corefoundation.CFTypeRef, context unsafe.Pointer) unsafe.Pointer

MDQueryCreateValueFunction is callback function usedto create the value objects stored and returned by a query.

See: https://developer.apple.com/documentation/coreservices/mdquerycreatevaluefunction

type MDQueryOptionFlags added in v0.5.1

type MDQueryOptionFlags uint32

See: https://developer.apple.com/documentation/coreservices/mdqueryoptionflags

const (
	KMDQueryAllowFSTranslation MDQueryOptionFlags = 8
	// KMDQuerySynchronous: Specifies that a query should block during the initial gather phase.
	KMDQuerySynchronous MDQueryOptionFlags = 1
	// KMDQueryWantsUpdates: # Discussion
	KMDQueryWantsUpdates MDQueryOptionFlags = 4
)

func (MDQueryOptionFlags) String added in v0.5.1

func (e MDQueryOptionFlags) String() string

type MDQueryRef

type MDQueryRef uintptr

MDQueryRef is a reference to a MDQuery object.

See: https://developer.apple.com/documentation/coreservices/mdqueryref

func MDQueryCreate

func MDQueryCreate(allocator corefoundation.CFAllocatorRef, queryString corefoundation.CFStringRef, valueListAttrs corefoundation.CFArrayRef, sortingAttrs corefoundation.CFArrayRef) MDQueryRef

MDQueryCreate creates a new query instance.

See: https://developer.apple.com/documentation/coreservices/1413029-mdquerycreate

func MDQueryCreateSubset

func MDQueryCreateSubset(allocator corefoundation.CFAllocatorRef, query MDQueryRef, queryString corefoundation.CFStringRef, valueListAttrs corefoundation.CFArrayRef, sortingAttrs corefoundation.CFArrayRef) MDQueryRef

MDQueryCreateSubset creates a new query that is a subset of the specified parentquery.

See: https://developer.apple.com/documentation/coreservices/1413027-mdquerycreatesubset

type MDQuerySortComparatorFunction

type MDQuerySortComparatorFunction = func(unsafe.Pointer, unsafe.Pointer, unsafe.Pointer) corefoundation.CFComparisonResult

MDQuerySortComparatorFunction is callback function used to sort the results of a query.

See: https://developer.apple.com/documentation/coreservices/mdquerysortcomparatorfunction

type MDQuerySortOptionFlags added in v0.5.1

type MDQuerySortOptionFlags uint32

See: https://developer.apple.com/documentation/coreservices/mdquerysortoptionflags

const (
	KMDQueryReverseSortOrderFlag MDQuerySortOptionFlags = 1
)

func (MDQuerySortOptionFlags) String added in v0.5.1

func (e MDQuerySortOptionFlags) String() string

type MIDIDataChunk

type MIDIDataChunk [5]uint16

See: https://developer.apple.com/documentation/coreservices/mididatachunk MIDIDataChunk is opaque storage with the size and alignment C gives MIDIDataChunk: 10 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 10 into.

type MPAddressSpaceInfo

type MPAddressSpaceInfo [12]uint64

See: https://developer.apple.com/documentation/coreservices/mpaddressspaceinfo MPAddressSpaceInfo is opaque storage with the size and alignment C gives MPAddressSpaceInfo: 96 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 96 into.

type MPCoherenceID

type MPCoherenceID = uintptr

MPCoherenceID is represents a memory coherence group.

See: https://developer.apple.com/documentation/coreservices/mpcoherenceid

type MPCpuID

type MPCpuID = uintptr

MPCpuID is represents a CPU ID.

See: https://developer.apple.com/documentation/coreservices/mpcpuid

type MPCriticalRegionID

type MPCriticalRegionID = uintptr

MPCriticalRegionID is represents a critical region ID, which Multiprocessing Services uses to manipulate critical regions.

See: https://developer.apple.com/documentation/coreservices/mpcriticalregionid

type MPCriticalRegionInfo

type MPCriticalRegionInfo [7]uint64

See: https://developer.apple.com/documentation/coreservices/mpcriticalregioninfo MPCriticalRegionInfo is opaque storage with the size and alignment C gives MPCriticalRegionInfo: 56 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 56 into.

type MPDebuggerLevel

type MPDebuggerLevel = uint32

MPDebuggerLevel is indicates the debugger level.

See: https://developer.apple.com/documentation/coreservices/mpdebuggerlevel

type MPEventFlags

type MPEventFlags = uint32

MPEventFlags is represents event information for an event group.

See: https://developer.apple.com/documentation/coreservices/mpeventflags

type MPEventID

type MPEventID = uintptr

MPEventID is represents an event group ID, which Multiprocessing Services uses to manipulate event groups.

See: https://developer.apple.com/documentation/coreservices/mpeventid

type MPEventInfo

type MPEventInfo [6]uint64

See: https://developer.apple.com/documentation/coreservices/mpeventinfo MPEventInfo is opaque storage with the size and alignment C gives MPEventInfo: 48 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 48 into.

type MPExceptionKind added in v0.6.17

type MPExceptionKind = uint32

MPExceptionKind is represents the kind of exception thrown.

See: https://developer.apple.com/documentation/coreservices/mpexceptionkind

type MPLibrary added in v0.5.1

type MPLibrary uint32
const (
	// Deprecated.
	MPLibrary_DevelopmentRevision MPLibrary = 1
	// Deprecated.
	MPLibrary_MajorVersion MPLibrary = 2
	// Deprecated.
	MPLibrary_MinorVersion MPLibrary = 3
	// Deprecated.
	MPLibrary_Release MPLibrary = 1
)

func (MPLibrary) String added in v0.5.1

func (e MPLibrary) String() string

type MPNotificationID

type MPNotificationID = uintptr

MPNotificationID is represents a notification ID, which Multiprocessing Services uses to manipulate kernel notifications.

See: https://developer.apple.com/documentation/coreservices/mpnotificationid

type MPNotificationInfo

type MPNotificationInfo [10]uint64

See: https://developer.apple.com/documentation/coreservices/mpnotificationinfo MPNotificationInfo is opaque storage with the size and alignment C gives MPNotificationInfo: 80 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 80 into.

type MPOpaqueID

type MPOpaqueID = uintptr

MPOpaqueID is represents a generic notification ID (that is, an ID that could be a queue ID, event ID, kernel notification ID, or semaphore ID).

See: https://developer.apple.com/documentation/coreservices/mpopaqueid

type MPProcessID

type MPProcessID = uintptr

MPProcessID is represents a process ID.

See: https://developer.apple.com/documentation/coreservices/mpprocessid

type MPQueueID

type MPQueueID = uintptr

MPQueueID is represents a queue ID, which Multiprocessing Services uses to manipulate message queues.

See: https://developer.apple.com/documentation/coreservices/mpqueueid

type MPQueueInfo

type MPQueueInfo [10]uint64

See: https://developer.apple.com/documentation/coreservices/mpqueueinfo MPQueueInfo is opaque storage with the size and alignment C gives MPQueueInfo: 80 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 80 into.

type MPRemoteContext

type MPRemoteContext = uint8

MPRemoteContext is specify which contexts are allowed to execute the callback function when using MPRemoteCall.

See: https://developer.apple.com/documentation/coreservices/mpremotecontext

type MPSemaphoreCount

type MPSemaphoreCount = uint

MPSemaphoreCount is represents a semaphore count.

See: https://developer.apple.com/documentation/coreservices/mpsemaphorecount

type MPSemaphoreID

type MPSemaphoreID = uintptr

MPSemaphoreID is represents a semaphore ID, which Multiprocessing Services uses to manipulate semaphores.

See: https://developer.apple.com/documentation/coreservices/mpsemaphoreid

type MPSemaphoreInfo

type MPSemaphoreInfo [7]uint64

See: https://developer.apple.com/documentation/coreservices/mpsemaphoreinfo MPSemaphoreInfo is opaque storage with the size and alignment C gives MPSemaphoreInfo: 56 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 56 into.

type MPTaskID

type MPTaskID = uintptr

MPTaskID is represents a task ID.

See: https://developer.apple.com/documentation/coreservices/mptaskid

func MPCurrentTaskID deprecated

func MPCurrentTaskID() MPTaskID

MPCurrentTaskID obtains the task ID of the currently-executing preemptive task

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585673-mpcurrenttaskid

type MPTaskInfo

type MPTaskInfo [16]uint64

MPTaskInfo is contains information about a task.

See: https://developer.apple.com/documentation/coreservices/mptaskinfo MPTaskInfo is opaque storage with the size and alignment C gives MPTaskInfo: 128 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 128 into.

type MPTaskInfoVersion2

type MPTaskInfoVersion2 [11]uint64

See: https://developer.apple.com/documentation/coreservices/mptaskinfoversion2 MPTaskInfoVersion2 is opaque storage with the size and alignment C gives MPTaskInfoVersion2: 88 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 88 into.

type MPTaskOptions

type MPTaskOptions = uint32

MPTaskOptions is specify optional actions when calling the MPCreateTask function.

See: https://developer.apple.com/documentation/coreservices/mptaskoptions

type MPTaskWeight

type MPTaskWeight = uint32

MPTaskWeight is represents the relative processor weighting of a task.

See: https://developer.apple.com/documentation/coreservices/mptaskweight

type MPTimerID

type MPTimerID = uintptr

MPTimerID is represents a timer ID.

See: https://developer.apple.com/documentation/coreservices/mptimerid

type MachineInformation

type MachineInformation [1]uint64

See: https://developer.apple.com/documentation/coreservices/machineinformation MachineInformation is opaque storage with the size and alignment C gives MachineInformation: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type MachineInformationIntel64

type MachineInformationIntel64 unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/machineinformationintel64 MachineInformationIntel64 is an unresolved C aggregate typedef.

type MachineInformationPowerPC

type MachineInformationPowerPC [11]uint64

See: https://developer.apple.com/documentation/coreservices/machineinformationpowerpc MachineInformationPowerPC is opaque storage with the size and alignment C gives MachineInformationPowerPC: 88 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 88 into.

type MachineLocation

type MachineLocation [8]uint16

See: https://developer.apple.com/documentation/coreservices/machinelocation MachineLocation is opaque storage with the size and alignment C gives MachineLocation: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type MapReadOnly added in v0.5.1

type MapReadOnly uint32
const (
	// Deprecated.
	MapChanged MapReadOnly = 32
	// Deprecated.
	MapCompact MapReadOnly = 64
	// Deprecated.
	MapReadOnlyValue MapReadOnly = 128
)

func (MapReadOnly) String added in v0.6.17

func (e MapReadOnly) String() string

type MapReadOnlyBit added in v0.5.1

type MapReadOnlyBit uint32
const (
	// Deprecated.
	MapChangedBit MapReadOnlyBit = 5
	// Deprecated.
	MapCompactBit MapReadOnlyBit = 6
	// Deprecated.
	MapReadOnlyBitValue MapReadOnlyBit = 7
)

func (MapReadOnlyBit) String added in v0.6.17

func (e MapReadOnlyBit) String() string

type Marker

type Marker [131]uint16

See: https://developer.apple.com/documentation/coreservices/marker Marker is opaque storage with the size and alignment C gives Marker: 262 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 262 into.

type MarkerChunk

type MarkerChunk [136]uint16

See: https://developer.apple.com/documentation/coreservices/markerchunk MarkerChunk is opaque storage with the size and alignment C gives MarkerChunk: 272 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 272 into.

type Max added in v0.5.1

type Max uint
const (
	// Deprecated.
	MaxSize Max = 2147483632
)

func (Max) String added in v0.5.1

func (e Max) String() string

type Mdy added in v0.5.1

type Mdy uint32
const (
	Dmy      Mdy = 1
	Dym      Mdy = 4
	MdyValue Mdy = 0
	Myd      Mdy = 3
	Ydm      Mdy = 5
	Ymd      Mdy = 2
)

func (Mdy) String added in v0.5.1

func (e Mdy) String() string

type MemROZWarn

type MemROZWarn int32
const (
	MemAZErr        MemROZWarn = -113
	MemAdrErr       MemROZWarn = -110
	MemBCErr        MemROZWarn = -115
	MemFullErr      MemROZWarn = -108
	MemLockedErr    MemROZWarn = -117
	MemPCErr        MemROZWarn = -114
	MemPurErr       MemROZWarn = -112
	MemROZErr       MemROZWarn = -99
	MemROZError     MemROZWarn = -99
	MemROZWarnValue MemROZWarn = -99
	MemSCErr        MemROZWarn = -116
	MemWZErr        MemROZWarn = -111
	NilHandleErr    MemROZWarn = -109
)

func (MemROZWarn) String

func (e MemROZWarn) String() string

type MemoryExceptionInformation

type MemoryExceptionInformation [4]uint64

See: https://developer.apple.com/documentation/coreservices/memoryexceptioninformation MemoryExceptionInformation is opaque storage with the size and alignment C gives MemoryExceptionInformation: 32 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 32 into.

type Menu int32
const (
	MenuInvalidErr          Menu = -5623
	MenuItemNotFoundErr     Menu = -5622
	MenuNotFoundErr         Menu = -5620
	MenuPropertyInvalid     Menu = -5603
	MenuPropertyInvalidErr  Menu = -5603
	MenuPropertyNotFoundErr Menu = -5604
	MenuUsesSystemDefErr    Menu = -5621
)
func (e Menu) String() string

type Midi

type Midi int32
const (
	MidiDupIDErr        Midi = -260
	MidiInvalidCmdErr   Midi = -261
	MidiNameLenErr      Midi = -259
	MidiNoClientErr     Midi = -250
	MidiNoConErr        Midi = -257
	MidiNoPortErr       Midi = -251
	MidiTooManyConsErr  Midi = -253
	MidiTooManyPortsErr Midi = -252
	MidiVConnectErr     Midi = -254
	MidiVConnectMade    Midi = -255
	MidiVConnectRmvd    Midi = -256
	MidiWriteErr        Midi = -258
)

func (Midi) String

func (e Midi) String() string

type MinCountry added in v0.5.1

type MinCountry uint32
const (
	// Deprecated.
	MaxCountry MinCountry = 108
	// Deprecated.
	MinCountryValue MinCountry = 0
)

func (MinCountry) String added in v0.5.1

func (e MinCountry) String() string

type MixedModeStateRecord

type MixedModeStateRecord [8]uint16

See: https://developer.apple.com/documentation/coreservices/mixedmodestaterecord MixedModeStateRecord is opaque storage with the size and alignment C gives MixedModeStateRecord: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type MmInternal added in v0.5.1

type MmInternal int32
const (
	MmInternalError MmInternal = -2526
)

func (MmInternal) String added in v0.5.1

func (e MmInternal) String() string

type MpWorkFlag added in v0.5.1

type MpWorkFlag uint32
const (
	// Deprecated.
	MpWorkFlagCopyWorkBlock MpWorkFlag = 4
	// Deprecated.
	MpWorkFlagDoCompletion MpWorkFlag = 2
	// Deprecated.
	MpWorkFlagDoWork MpWorkFlag = 1
	// Deprecated.
	MpWorkFlagDontBlock MpWorkFlag = 8
	// Deprecated.
	MpWorkFlagGetIsRunning MpWorkFlag = 64
	// Deprecated.
	MpWorkFlagGetProcessorCount MpWorkFlag = 16
)

func (MpWorkFlag) String added in v0.5.1

func (e MpWorkFlag) String() string

type NItl4Rec

type NItl4Rec [34]uint16

See: https://developer.apple.com/documentation/coreservices/nitl4rec NItl4Rec is opaque storage with the size and alignment C gives NItl4Rec: 68 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 68 into.

type Nbp

type Nbp int32
const (
	NbpBuffOvr   Nbp = -1024
	NbpConfDiff  Nbp = -1026
	NbpDuplicate Nbp = -1027
	NbpNISErr    Nbp = -1029
	NbpNoConfirm Nbp = -1025
	NbpNotFound  Nbp = -1028
)

func (Nbp) String

func (e Nbp) String() string

type NmTyp added in v0.5.1

type NmTyp int32
const (
	NmTypErr NmTyp = -299
)

func (NmTyp) String added in v0.5.1

func (e NmTyp) String() string

type No

type No int32
const (
	NoScrapErr No = -100
	NoTypeErr  No = -102
)

func (No) String

func (e No) String() string

type NoAdrMkErr

type NoAdrMkErr int32
const (
	BadBtSlpErr     NoAdrMkErr = -70
	BadCksmErr      NoAdrMkErr = -69
	BadDBtSlp       NoAdrMkErr = -73
	BadDCksum       NoAdrMkErr = -72
	BreakRecd       NoAdrMkErr = -90
	CantStepErr     NoAdrMkErr = -75
	ClkRdErr        NoAdrMkErr = -85
	ClkWrErr        NoAdrMkErr = -86
	DataVerErr      NoAdrMkErr = -68
	Fmt1Err         NoAdrMkErr = -82
	Fmt2Err         NoAdrMkErr = -83
	InitIWMErr      NoAdrMkErr = -77
	NoAdrMkErrValue NoAdrMkErr = -67
	NoDtaMkErr      NoAdrMkErr = -71
	PrInitErr       NoAdrMkErr = -88
	PrWrErr         NoAdrMkErr = -87
	RcvrErr         NoAdrMkErr = -89
	SectNFErr       NoAdrMkErr = -81
	SeekErr         NoAdrMkErr = -80
	SpdAdjErr       NoAdrMkErr = -79
	Tk0BadErr       NoAdrMkErr = -76
	TwoSideErr      NoAdrMkErr = -78
	VerErr          NoAdrMkErr = -84
	WrUnderrun      NoAdrMkErr = -74
)

func (NoAdrMkErr) String

func (e NoAdrMkErr) String() string

type NoCalls added in v0.5.1

type NoCalls uint32
const (
	NoCallsValue NoCalls = 1
	NoRequest    NoCalls = 2
	SleepQType   NoCalls = 16
	SlpQType     NoCalls = 16
)

func (NoCalls) String added in v0.5.1

func (e NoCalls) String() string

type NoDeviceForChannel

type NoDeviceForChannel int32
const (
	BadControllerHeight                NoDeviceForChannel = -9994
	BadSGChannel                       NoDeviceForChannel = -9406
	CannotMoveAttachedController       NoDeviceForChannel = -9999
	CannotSetWidthOfAttachedController NoDeviceForChannel = -9997
	CantDoThatInCurrentMode            NoDeviceForChannel = -9402
	ControllerBoundsNotExact           NoDeviceForChannel = -9996
	ControllerHasFixedHeight           NoDeviceForChannel = -9998
	CouldntGetRequiredComponent        NoDeviceForChannel = -9405
	DeviceCantMeetRequest              NoDeviceForChannel = -9408
	EditingNotAllowed                  NoDeviceForChannel = -9995
	GrabTimeComplete                   NoDeviceForChannel = -9401
	NoDeviceForChannelValue            NoDeviceForChannel = -9400
	NotEnoughDiskSpaceToGrab           NoDeviceForChannel = -9404
	NotEnoughMemoryToGrab              NoDeviceForChannel = -9403
	SeqGrabInfoNotAvailable            NoDeviceForChannel = -9407
)

func (NoDeviceForChannel) String

func (e NoDeviceForChannel) String() string

type NoHardware

type NoHardware int32
const (
	BadChannel                   NoHardware = -205
	BadFileFormat                NoHardware = -208
	BadFormat                    NoHardware = -206
	BuffersTooSmall              NoHardware = -210
	ChannelBusy                  NoHardware = -209
	ChannelNotBusy               NoHardware = -211
	NoHardwareValue              NoHardware = -200
	NoMoreRealTime               NoHardware = -212
	NotEnoughBufferSpace         NoHardware = -207
	NotEnoughHardware            NoHardware = -201
	QueueFull                    NoHardware = -203
	ResProblem                   NoHardware = -204
	SiBadDeviceName              NoHardware = -228
	SiBadRefNum                  NoHardware = -229
	SiBadSoundInDevice           NoHardware = -221
	SiDeviceBusyErr              NoHardware = -227
	SiHardDriveTooSlow           NoHardware = -224
	SiInputDeviceErr             NoHardware = -230
	SiInvalidCompression         NoHardware = -223
	SiInvalidSampleRate          NoHardware = -225
	SiInvalidSampleSize          NoHardware = -226
	SiNoBufferSpecified          NoHardware = -222
	SiNoSoundInHardware          NoHardware = -220
	SiUnknownInfoType            NoHardware = -231
	SiUnknownQuality             NoHardware = -232
	SiVBRCompressionNotSupported NoHardware = -213
)

func (NoHardware) String

func (e NoHardware) String() string

type NoLoopingConstants added in v0.5.1

type NoLoopingConstants uint32
const (
	ForwardBackwardLooping NoLoopingConstants = 2
	ForwardLooping         NoLoopingConstants = 1
	NoLooping              NoLoopingConstants = 0
)

func (NoLoopingConstants) String added in v0.5.1

func (e NoLoopingConstants) String() string

type NoMaskFound added in v0.5.1

type NoMaskFound int32
const (
	NoMaskFoundErr NoMaskFound = -1000
)

func (NoMaskFound) String added in v0.5.1

func (e NoMaskFound) String() string

type NoSynthFound

type NoSynthFound int32
const (
	// BadDictFormat: Pronunciation dictionary format error
	BadDictFormat NoSynthFound = -246
	// BadInputText: Raw phoneme text contains invalid characters
	BadInputText NoSynthFound = -247
	// BufTooSmall: Output buffer is too small to hold result
	BufTooSmall NoSynthFound = -243
	// IncompatibleVoice: Specified voice cannot be used with synthesizer
	IncompatibleVoice NoSynthFound = -245
	// NoSynthFoundValue: Could not find the specified speech synthesizer
	NoSynthFoundValue NoSynthFound = -240
	// SynthNotReady: Speech synthesizer is still busy speaking
	SynthNotReady NoSynthFound = -242
	// SynthOpenFailed: Could not open another speech synthesizerchannel
	SynthOpenFailed NoSynthFound = -241
	// VoiceNotFound: Voice resource not found
	VoiceNotFound NoSynthFound = -244
)

func (NoSynthFound) String

func (e NoSynthFound) String() string

type NoneTypeConstants added in v0.5.1

type NoneTypeConstants uint32
const (
	ACE2Type  NoneTypeConstants = 'A'<<24 | 'C'<<16 | 'E'<<8 | '2' // 'ACE2'
	ACE8Type  NoneTypeConstants = 'A'<<24 | 'C'<<16 | 'E'<<8 | '8' // 'ACE8'
	MACE3Type NoneTypeConstants = 'M'<<24 | 'A'<<16 | 'C'<<8 | '3' // 'MAC3'
	MACE6Type NoneTypeConstants = 'M'<<24 | 'A'<<16 | 'C'<<8 | '6' // 'MAC6'
	NoneType  NoneTypeConstants = 'N'<<24 | 'O'<<16 | 'N'<<8 | 'E' // 'NONE'
)

func (NoneTypeConstants) String added in v0.5.1

func (e NoneTypeConstants) String() string

type NotAQTVRMovieErr

type NotAQTVRMovieErr int32
const (
	CallNotSupportedByNodeErr     NotAQTVRMovieErr = -30542
	ConstraintReachedErr          NotAQTVRMovieErr = -30541
	InvalidHotSpotIDErr           NotAQTVRMovieErr = -30551
	InvalidNodeFormatErr          NotAQTVRMovieErr = -30550
	InvalidNodeIDErr              NotAQTVRMovieErr = -30544
	InvalidViewStateErr           NotAQTVRMovieErr = -30545
	LimitReachedErr               NotAQTVRMovieErr = -30549
	NoMemoryNodeFailedInitialize  NotAQTVRMovieErr = -30552
	NotAQTVRMovieErrValue         NotAQTVRMovieErr = -30540
	PropertyNotSupportedByNodeErr NotAQTVRMovieErr = -30547
	QtvrLibraryLoadErr            NotAQTVRMovieErr = -30554
	QtvrUninitialized             NotAQTVRMovieErr = -30555
	SelectorNotSupportedByNodeErr NotAQTVRMovieErr = -30543
	SettingNotSupportedByNodeErr  NotAQTVRMovieErr = -30548
	StreamingNodeNotReadyErr      NotAQTVRMovieErr = -30553
	TimeNotInViewErr              NotAQTVRMovieErr = -30546
)

func (NotAQTVRMovieErr) String

func (e NotAQTVRMovieErr) String() string

type NotBTree

type NotBTree int32
const (
	BtDupRecErr          NotBTree = -414
	BtKeyAttrErr         NotBTree = -417
	BtKeyLenErr          NotBTree = -416
	BtNoSpace            NotBTree = -413
	BtRecNotFnd          NotBTree = -415
	InvalidIndexErr      NotBTree = -20002
	NotBTreeValue        NotBTree = -410
	RecordDataTooBigErr  NotBTree = -20001
	UnknownInsertModeErr NotBTree = -20000
)

func (NotBTree) String

func (e NotBTree) String() string

type NotEnoughMemoryErr

type NotEnoughMemoryErr int32
const (
	CannotDeferErr          NotEnoughMemoryErr = -625
	CannotMakeContiguousErr NotEnoughMemoryErr = -622
	InterruptsMaskedErr     NotEnoughMemoryErr = -624
	NoMMUErr                NotEnoughMemoryErr = -626
	NotEnoughMemoryErrValue NotEnoughMemoryErr = -620
	NotHeldErr              NotEnoughMemoryErr = -621
	NotLockedErr            NotEnoughMemoryErr = -623
)

func (NotEnoughMemoryErr) String

func (e NotEnoughMemoryErr) String() string

type NotInitErr

type NotInitErr int32
const (
	AuthFailErr         NotInitErr = -927
	BadLocNameErr       NotInitErr = -931
	BadPortNameErr      NotInitErr = -919
	BadReqErr           NotInitErr = -909
	BadServiceMethodErr NotInitErr = -930
	// DestPortErr: Server hasn’t set `'SIZE'` resource toindicate awareness of high-level events, or else is not present
	DestPortErr        NotInitErr = -906
	GuestNotAllowedErr NotInitErr = -932
	LocalOnlyErr       NotInitErr = -905
	NameTypeErr        NotInitErr = -902
	NetworkErr         NotInitErr = -925
	NoDefaultUserErr   NotInitErr = -922
	NoGlobalsErr       NotInitErr = -904
	NoInformErr        NotInitErr = -926
	NoMachineNameErr   NotInitErr = -913
	// NoPortErr: Client hasn’t set `'SIZE'` resource toindicate awareness of high-level events
	NoPortErr         NotInitErr = -903
	NoResponseErr     NotInitErr = -915
	NoSessionErr      NotInitErr = -908
	NoToolboxNameErr  NotInitErr = -914
	NoUserNameErr     NotInitErr = -911
	NoUserRecErr      NotInitErr = -928
	NoUserRefErr      NotInitErr = -924
	NotInitErrValue   NotInitErr = -900
	NotLoggedInErr    NotInitErr = -923
	PortClosedErr     NotInitErr = -916
	PortNameExistsErr NotInitErr = -910
	// SessClosedErr: The `kAEDontReconnect` flagin the `sendMode` parameterwas set and the server quit, then restarted
	SessClosedErr NotInitErr = -917
	SessTableErr  NotInitErr = -907
	UserRejectErr NotInitErr = -912
)

func (NotInitErr) String

func (e NotInitErr) String() string

type Nr

type Nr int32
const (
	NrCallNotSupported        Nr = -2557
	NrDataTruncatedErr        Nr = -2543
	NrExitedIteratorScope     Nr = -2555
	NrInvalidEntryIterationOp Nr = -2552
	NrInvalidNodeErr          Nr = -2538
	NrIterationDone           Nr = -2554
	NrLockedErr               Nr = -2536
	NrNameErr                 Nr = -2541
	NrNotCreatedErr           Nr = -2540
	NrNotEnoughMemoryErr      Nr = -2537
	NrNotFoundErr             Nr = -2539
	NrNotModifiedErr          Nr = -2547
	NrNotSlotDeviceErr        Nr = -2542
	NrOverrunErr              Nr = -2548
	NrPathBufferTooSmall      Nr = -2551
	NrPathNotFound            Nr = -2550
	NrPowerErr                Nr = -2544
	NrPowerSwitchAbortErr     Nr = -2545
	NrPropertyAlreadyExists   Nr = -2553
	NrResultCodeBase          Nr = -2549
	NrTransactionAborted      Nr = -2556
	NrTypeMismatchErr         Nr = -2546
)

func (Nr) String

func (e Nr) String() string

type NumFormatString

type NumFormatString [256]byte

See: https://developer.apple.com/documentation/coreservices/numformatstring NumFormatString is opaque storage with the size and alignment C gives NumFormatString: 256 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 256 into.

type NumFormatStringRec

type NumFormatStringRec [256]byte

See: https://developer.apple.com/documentation/coreservices/numformatstringrec NumFormatStringRec is opaque storage with the size and alignment C gives NumFormatStringRec: 256 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 256 into.

type Number

type Number int32
const (
	NumberFormattingBadCurrencyPositionErr       Number = -5211
	NumberFormattingBadFormatErr                 Number = -5207
	NumberFormattingBadNumberFormattingObjectErr Number = -5202
	NumberFormattingBadOptionsErr                Number = -5208
	NumberFormattingBadTokenErr                  Number = -5209
	NumberFormattingDelimiterMissingErr          Number = -5205
	NumberFormattingEmptyFormatErr               Number = -5206
	NumberFormattingLiteralMissingErr            Number = -5204
	NumberFormattingNotADigitErr                 Number = -5212
	NumberFormattingNotANumberErr                Number = -5200
	NumberFormattingOverflowInDestinationErr     Number = -5201
	NumberFormattingSpuriousCharErr              Number = -5203
	NumberFormattingUnOrderedCurrencyRangeErr    Number = -5210
	NumberFormattingUnOrdredCurrencyRangeErr     Number = -5210
	NumberFortmattingNotADigitErr                Number = -5212
)

func (Number) String

func (e Number) String() string

type NumberParts

type NumberParts [86]uint16

See: https://developer.apple.com/documentation/coreservices/numberparts NumberParts is opaque storage with the size and alignment C gives NumberParts: 172 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 172 into.

type OSLAccessorProcPtr

type OSLAccessorProcPtr = func(desiredClass uint32, container unsafe.Pointer, containerClass uint32, form uint32, selectionData unsafe.Pointer, value unsafe.Pointer, accessorRefcon uintptr) int16

OSLAccessorProcPtr is your object accessor function either finds elements or properties of an Apple event object.

See: https://developer.apple.com/documentation/coreservices/oslaccessorprocptr

type OSLAccessorUPP

type OSLAccessorUPP = unsafe.Pointer

OSLAccessorUPP is defines a data type for the universal procedure pointer for the OSLAccessorProcPtr callback function pointer.

See: https://developer.apple.com/documentation/coreservices/oslaccessorupp

func NewOSLAccessorUPP

func NewOSLAccessorUPP(userRoutine OSLAccessorProcPtr) OSLAccessorUPP

NewOSLAccessorUPP creates a new universal procedure pointer to an object accessor function.

See: https://developer.apple.com/documentation/coreservices/1449584-newoslaccessorupp

type OSLAdjustMarksProcPtr

type OSLAdjustMarksProcPtr = func(newStart int32, newStop int32, markToken unsafe.Pointer) int16

OSLAdjustMarksProcPtr is defines a pointer to an adjust marks callback function. Your adjust marks function unmarks objects previously marked by a call to your marking function.

See: https://developer.apple.com/documentation/coreservices/osladjustmarksprocptr

type OSLAdjustMarksUPP

type OSLAdjustMarksUPP = unsafe.Pointer

OSLAdjustMarksUPP is defines a data type for the universal procedure pointer for the OSLAdjustMarksProcPtr callback function pointer.

See: https://developer.apple.com/documentation/coreservices/osladjustmarksupp

func NewOSLAdjustMarksUPP

func NewOSLAdjustMarksUPP(userRoutine OSLAdjustMarksProcPtr) OSLAdjustMarksUPP

NewOSLAdjustMarksUPP creates a new universal procedure pointer to an object callback adjust marks function.

See: https://developer.apple.com/documentation/coreservices/1443347-newosladjustmarksupp

type OSLCompareProcPtr

type OSLCompareProcPtr = func(oper uint32, obj1 unsafe.Pointer, obj2 unsafe.Pointer, result unsafe.Pointer) int16

OSLCompareProcPtr is defines a pointer to an object comparison callback function. Your object comparison function compares one Apple event object to another or to the data for a descriptor.

See: https://developer.apple.com/documentation/coreservices/oslcompareprocptr

type OSLCompareUPP

type OSLCompareUPP = unsafe.Pointer

OSLCompareUPP is defines a data type for the universal procedure pointer for the OSLCompareProcPtr callback function pointer.

See: https://developer.apple.com/documentation/coreservices/oslcompareupp

func NewOSLCompareUPP

func NewOSLCompareUPP(userRoutine OSLCompareProcPtr) OSLCompareUPP

NewOSLCompareUPP creates a new universal procedure pointer to an object callback comparison function.

See: https://developer.apple.com/documentation/coreservices/1444603-newoslcompareupp

type OSLCountProcPtr

type OSLCountProcPtr = func(desiredType uint32, containerClass uint32, container unsafe.Pointer, result unsafe.Pointer) int16

OSLCountProcPtr is defines a pointer to an object counting callback function. Your object counting function counts the number of Apple event objects of a specified class in a specified container object.

See: https://developer.apple.com/documentation/coreservices/oslcountprocptr

type OSLCountUPP

type OSLCountUPP = unsafe.Pointer

OSLCountUPP is defines a data type for the universal procedure pointer for the OSLCountProcPtr callback function pointer.

See: https://developer.apple.com/documentation/coreservices/oslcountupp

func NewOSLCountUPP

func NewOSLCountUPP(userRoutine OSLCountProcPtr) OSLCountUPP

NewOSLCountUPP creates a new universal procedure pointer to an object callback count function.

See: https://developer.apple.com/documentation/coreservices/1448156-newoslcountupp

type OSLDisposeTokenProcPtr

type OSLDisposeTokenProcPtr = func(unneededToken unsafe.Pointer) int16

OSLDisposeTokenProcPtr is defines a pointer to a dispose token callback function. Your dispose token function, required only if you use a complex token format, disposes of the specified token.

See: https://developer.apple.com/documentation/coreservices/osldisposetokenprocptr

type OSLDisposeTokenUPP

type OSLDisposeTokenUPP = unsafe.Pointer

OSLDisposeTokenUPP is defines a data type for the universal procedure pointer for the OSLDisposeTokenProcPtr callback function pointer.

See: https://developer.apple.com/documentation/coreservices/osldisposetokenupp

func NewOSLDisposeTokenUPP

func NewOSLDisposeTokenUPP(userRoutine OSLDisposeTokenProcPtr) OSLDisposeTokenUPP

NewOSLDisposeTokenUPP creates a new universal procedure pointer to an object callback dispose token function.

See: https://developer.apple.com/documentation/coreservices/1450027-newosldisposetokenupp

type OSLGetErrDescProcPtr

type OSLGetErrDescProcPtr = func(appDescPtr unsafe.Pointer) int16

OSLGetErrDescProcPtr is defines a pointer to an error descriptor callback function. Your error descriptor callback function supplies a pointer to an address where the Apple Event Manager can store the current descriptor if an error occurs during a call to the AEResolve function.

See: https://developer.apple.com/documentation/coreservices/oslgeterrdescprocptr

type OSLGetErrDescUPP

type OSLGetErrDescUPP = unsafe.Pointer

OSLGetErrDescUPP is defines a data type for the universal procedure pointer for the OSLGetErrDescProcPtr callback function pointer.

See: https://developer.apple.com/documentation/coreservices/oslgeterrdescupp

func NewOSLGetErrDescUPP

func NewOSLGetErrDescUPP(userRoutine OSLGetErrDescProcPtr) OSLGetErrDescUPP

NewOSLGetErrDescUPP creates a new universal procedure pointer to an object callback get error descriptor function.

See: https://developer.apple.com/documentation/coreservices/1447934-newoslgeterrdescupp

type OSLGetMarkTokenProcPtr

type OSLGetMarkTokenProcPtr = func(dContainerToken unsafe.Pointer, containerClass uint32, result unsafe.Pointer) int16

OSLGetMarkTokenProcPtr is defines a pointer to a mark token callback function. Your mark token function returns a mark token.

See: https://developer.apple.com/documentation/coreservices/oslgetmarktokenprocptr

type OSLGetMarkTokenUPP

type OSLGetMarkTokenUPP = unsafe.Pointer

OSLGetMarkTokenUPP is defines a data type for the universal procedure pointer for the OSLGetMarkTokenProcPtr callback function pointer.

See: https://developer.apple.com/documentation/coreservices/oslgetmarktokenupp

func NewOSLGetMarkTokenUPP

func NewOSLGetMarkTokenUPP(userRoutine OSLGetMarkTokenProcPtr) OSLGetMarkTokenUPP

NewOSLGetMarkTokenUPP creates a new universal procedure pointer to an object callback get mark function.

See: https://developer.apple.com/documentation/coreservices/1445166-newoslgetmarktokenupp

type OSLMarkProcPtr

type OSLMarkProcPtr = func(dToken unsafe.Pointer, markToken unsafe.Pointer, index int32) int16

OSLMarkProcPtr is defines a pointer to an object marking callback function. Your object-marking function marks a specific Apple event object.

See: https://developer.apple.com/documentation/coreservices/oslmarkprocptr

type OSLMarkUPP

type OSLMarkUPP = unsafe.Pointer

OSLMarkUPP is defines a data type for the universal procedure pointer for the OSLMarkProcPtr callback function pointer.

See: https://developer.apple.com/documentation/coreservices/oslmarkupp

func NewOSLMarkUPP

func NewOSLMarkUPP(userRoutine OSLMarkProcPtr) OSLMarkUPP

NewOSLMarkUPP creates a new universal procedure pointer to an object callback mark function.

See: https://developer.apple.com/documentation/coreservices/1446942-newoslmarkupp

type OffPair

type OffPair [2]uint16

See: https://developer.apple.com/documentation/coreservices/offpair OffPair is opaque storage with the size and alignment C gives OffPair: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

type OffsetArray

type OffsetArray struct {
	// contains filtered or unexported fields
}

OffsetArray - Specifies offsets of ranges of text. Not typically used by developers.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/offsetarray

func (*OffsetArray) FNumOfOffsets

func (s *OffsetArray) FNumOfOffsets() int16

FNumOfOffsets returns the FNumOfOffsets field from the record's packed storage.

func (*OffsetArray) FOffset

func (s *OffsetArray) FOffset() [1]int32

FOffset returns the FOffset field from the record's packed storage.

func (*OffsetArray) SetFNumOfOffsets added in v0.6.17

func (s *OffsetArray) SetFNumOfOffsets(v int16)

SetFNumOfOffsets updates the FNumOfOffsets field in the record's packed storage.

func (*OffsetArray) SetFOffset added in v0.6.17

func (s *OffsetArray) SetFOffset(v [1]int32)

SetFOffset updates the FOffset field in the record's packed storage.

type OffsetArrayHandle

type OffsetArrayHandle = *OffsetArrayPtr

OffsetArrayHandle is defines a data type that points to an OffsetArray. Not typically used by developers.

See: https://developer.apple.com/documentation/coreservices/offsetarrayhandle

type OverallActConstants added in v0.5.1

type OverallActConstants uint32
const (
	HDActivity   OverallActConstants = 3
	IdleActivity OverallActConstants = 4
	NetActivity  OverallActConstants = 2
	OverallAct   OverallActConstants = 0
	UsrActivity  OverallActConstants = 1
)

func (OverallActConstants) String added in v0.5.1

func (e OverallActConstants) String() string

type PArcAngle added in v0.5.1

type PArcAngle uint32
const (
	PArcAngleValue     PArcAngle = 'p'<<24 | 'a'<<16 | 'r'<<8 | 'c' // 'parc'
	PBackgroundColor   PArcAngle = 'p'<<24 | 'b'<<16 | 'c'<<8 | 'l' // 'pbcl'
	PBackgroundPattern PArcAngle = 'p'<<24 | 'b'<<16 | 'p'<<8 | 't' // 'pbpt'
	PBestType          PArcAngle = 'p'<<24 | 'b'<<16 | 's'<<8 | 't' // 'pbst'
	PBounds            PArcAngle = 'p'<<24 | 'b'<<16 | 'n'<<8 | 'd' // 'pbnd'
	PClass             PArcAngle = 'p'<<24 | 'c'<<16 | 'l'<<8 | 's' // 'pcls'
	PClipboard         PArcAngle = 'p'<<24 | 'c'<<16 | 'l'<<8 | 'i' // 'pcli'
	PColor             PArcAngle = 'c'<<24 | 'o'<<16 | 'l'<<8 | 'r' // 'colr'
	PColorTable        PArcAngle = 'c'<<24 | 'l'<<16 | 't'<<8 | 'b' // 'cltb'
	PContents          PArcAngle = 'p'<<24 | 'c'<<16 | 'n'<<8 | 't' // 'pcnt'
	PCornerCurveHeight PArcAngle = 'p'<<24 | 'c'<<16 | 'h'<<8 | 'd' // 'pchd'
	PCornerCurveWidth  PArcAngle = 'p'<<24 | 'c'<<16 | 'w'<<8 | 'd' // 'pcwd'
	PDashStyle         PArcAngle = 'p'<<24 | 'd'<<16 | 's'<<8 | 't' // 'pdst'
	PDefaultType       PArcAngle = 'd'<<24 | 'e'<<16 | 'f'<<8 | 't' // 'deft'
	PDefinitionRect    PArcAngle = 'p'<<24 | 'd'<<16 | 'r'<<8 | 't' // 'pdrt'
	PEnabled           PArcAngle = 'e'<<24 | 'n'<<16 | 'b'<<8 | 'l' // 'enbl'
	PEndPoint          PArcAngle = 'p'<<24 | 'e'<<16 | 'n'<<8 | 'd' // 'pend'
	PFillColor         PArcAngle = 'f'<<24 | 'l'<<16 | 'c'<<8 | 'l' // 'flcl'
	PFillPattern       PArcAngle = 'f'<<24 | 'l'<<16 | 'p'<<8 | 't' // 'flpt'
	PFont              PArcAngle = 'f'<<24 | 'o'<<16 | 'n'<<8 | 't' // 'font'
)

func (PArcAngle) String added in v0.5.1

func (e PArcAngle) String() string

type PEFContainerHeader

type PEFContainerHeader [20]uint16

See: https://developer.apple.com/documentation/coreservices/pefcontainerheader PEFContainerHeader is opaque storage with the size and alignment C gives PEFContainerHeader: 40 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 40 into.

type PEFExportedSymbol

type PEFExportedSymbol [5]uint16

See: https://developer.apple.com/documentation/coreservices/pefexportedsymbol PEFExportedSymbol is opaque storage with the size and alignment C gives PEFExportedSymbol: 10 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 10 into.

type PEFExportedSymbolHashSlot

type PEFExportedSymbolHashSlot [2]uint16

See: https://developer.apple.com/documentation/coreservices/pefexportedsymbolhashslot PEFExportedSymbolHashSlot is opaque storage with the size and alignment C gives PEFExportedSymbolHashSlot: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

type PEFExportedSymbolKey

type PEFExportedSymbolKey [2]uint16

See: https://developer.apple.com/documentation/coreservices/pefexportedsymbolkey PEFExportedSymbolKey is opaque storage with the size and alignment C gives PEFExportedSymbolKey: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

type PEFImportedLibrary

type PEFImportedLibrary [12]uint16

See: https://developer.apple.com/documentation/coreservices/pefimportedlibrary PEFImportedLibrary is opaque storage with the size and alignment C gives PEFImportedLibrary: 24 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 24 into.

type PEFImportedSymbol

type PEFImportedSymbol [2]uint16

See: https://developer.apple.com/documentation/coreservices/pefimportedsymbol PEFImportedSymbol is opaque storage with the size and alignment C gives PEFImportedSymbol: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

type PEFLoaderInfoHeader

type PEFLoaderInfoHeader [28]uint16

See: https://developer.apple.com/documentation/coreservices/pefloaderinfoheader PEFLoaderInfoHeader is opaque storage with the size and alignment C gives PEFLoaderInfoHeader: 56 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 56 into.

type PEFLoaderRelocationHeader

type PEFLoaderRelocationHeader [6]uint16

See: https://developer.apple.com/documentation/coreservices/pefloaderrelocationheader PEFLoaderRelocationHeader is opaque storage with the size and alignment C gives PEFLoaderRelocationHeader: 12 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 12 into.

type PEFSectionHeader

type PEFSectionHeader [14]uint16

See: https://developer.apple.com/documentation/coreservices/pefsectionheader PEFSectionHeader is opaque storage with the size and alignment C gives PEFSectionHeader: 28 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 28 into.

type PEFSplitHashWord

type PEFSplitHashWord [2]uint16

See: https://developer.apple.com/documentation/coreservices/pefsplithashword PEFSplitHashWord is opaque storage with the size and alignment C gives PEFSplitHashWord: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

type PFormula added in v0.5.1

type PFormula uint32
const (
	PFormulaValue    PFormula = 'p'<<24 | 'f'<<16 | 'o'<<8 | 'r' // 'pfor'
	PGraphicObjects  PFormula = 'g'<<24 | 'o'<<16 | 'b'<<8 | 's' // 'gobs'
	PHasCloseBox     PFormula = 'h'<<24 | 'c'<<16 | 'l'<<8 | 'b' // 'hclb'
	PHasTitleBar     PFormula = 'p'<<24 | 't'<<16 | 'i'<<8 | 't' // 'ptit'
	PID              PFormula = 'I'<<24 | 'D'<<16 | ' '<<8 | ' ' // 'ID  '
	PIndex           PFormula = 'p'<<24 | 'i'<<16 | 'd'<<8 | 'x' // 'pidx'
	PInsertionLoc    PFormula = 'p'<<24 | 'i'<<16 | 'n'<<8 | 's' // 'pins'
	PIsFloating      PFormula = 'i'<<24 | 's'<<16 | 'f'<<8 | 'l' // 'isfl'
	PIsFrontProcess  PFormula = 'p'<<24 | 'i'<<16 | 's'<<8 | 'f' // 'pisf'
	PIsModal         PFormula = 'p'<<24 | 'm'<<16 | 'o'<<8 | 'd' // 'pmod'
	PIsModified      PFormula = 'i'<<24 | 'm'<<16 | 'o'<<8 | 'd' // 'imod'
	PIsResizable     PFormula = 'p'<<24 | 'r'<<16 | 's'<<8 | 'z' // 'prsz'
	PIsStationeryPad PFormula = 'p'<<24 | 's'<<16 | 'p'<<8 | 'd' // 'pspd'
	PIsZoomable      PFormula = 'i'<<24 | 's'<<16 | 'z'<<8 | 'm' // 'iszm'
	PIsZoomed        PFormula = 'p'<<24 | 'z'<<16 | 'u'<<8 | 'm' // 'pzum'
	PItemNumber      PFormula = 'i'<<24 | 't'<<16 | 'm'<<8 | 'n' // 'itmn'
	PJustification   PFormula = 'p'<<24 | 'j'<<16 | 's'<<8 | 't' // 'pjst'
	PLineArrow       PFormula = 'a'<<24 | 'r'<<16 | 'r'<<8 | 'o' // 'arro'
	PMenuID          PFormula = 'm'<<24 | 'n'<<16 | 'i'<<8 | 'd' // 'mnid'
	PName            PFormula = 'p'<<24 | 'n'<<16 | 'a'<<8 | 'm' // 'pnam'
)

func (PFormula) String added in v0.5.1

func (e PFormula) String() string

type PNewElementLoc added in v0.5.1

type PNewElementLoc uint32
const (
	PNewElementLocValue PNewElementLoc = 'p'<<24 | 'n'<<16 | 'e'<<8 | 'l' // 'pnel'
	PPenColor           PNewElementLoc = 'p'<<24 | 'p'<<16 | 'c'<<8 | 'l' // 'ppcl'
	PPenPattern         PNewElementLoc = 'p'<<24 | 'p'<<16 | 'p'<<8 | 'a' // 'pppa'
	PPenWidth           PNewElementLoc = 'p'<<24 | 'p'<<16 | 'w'<<8 | 'd' // 'ppwd'
	PPixelDepth         PNewElementLoc = 'p'<<24 | 'd'<<16 | 'p'<<8 | 't' // 'pdpt'
	PPointList          PNewElementLoc = 'p'<<24 | 't'<<16 | 'l'<<8 | 't' // 'ptlt'
	PPointSize          PNewElementLoc = 'p'<<24 | 't'<<16 | 's'<<8 | 'z' // 'ptsz'
	PProtection         PNewElementLoc = 'p'<<24 | 'p'<<16 | 'r'<<8 | 'o' // 'ppro'
	PRotation           PNewElementLoc = 'p'<<24 | 'r'<<16 | 'o'<<8 | 't' // 'prot'
	PScale              PNewElementLoc = 'p'<<24 | 's'<<16 | 'c'<<8 | 'l' // 'pscl'
	PScript             PNewElementLoc = 's'<<24 | 'c'<<16 | 'p'<<8 | 't' // 'scpt'
	PScriptTag          PNewElementLoc = 'p'<<24 | 's'<<16 | 'c'<<8 | 't' // 'psct'
	PSelected           PNewElementLoc = 's'<<24 | 'e'<<16 | 'l'<<8 | 'c' // 'selc'
	PSelection          PNewElementLoc = 's'<<24 | 'e'<<16 | 'l'<<8 | 'e' // 'sele'
	PStartAngle         PNewElementLoc = 'p'<<24 | 'a'<<16 | 'n'<<8 | 'g' // 'pang'
	PStartPoint         PNewElementLoc = 'p'<<24 | 's'<<16 | 't'<<8 | 'p' // 'pstp'
	PTextColor          PNewElementLoc = 'p'<<24 | 't'<<16 | 'x'<<8 | 'c' // 'ptxc'
	PTextFont           PNewElementLoc = 'p'<<24 | 't'<<16 | 'x'<<8 | 'f' // 'ptxf'
	PTextItemDelimiters PNewElementLoc = 't'<<24 | 'x'<<16 | 'd'<<8 | 'l' // 'txdl'
	PTextPointSize      PNewElementLoc = 'p'<<24 | 't'<<16 | 'p'<<8 | 's' // 'ptps'
)

func (PNewElementLoc) String added in v0.5.1

func (e PNewElementLoc) String() string

type PScheme added in v0.5.1

type PScheme uint32
const (
	PDNSForm      PScheme = 'p'<<24 | 'D'<<16 | 'N'<<8 | 'S' // 'pDNS'
	PFTPKind      PScheme = 'k'<<24 | 'i'<<16 | 'n'<<8 | 'd' // 'kind'
	PHost         PScheme = 'H'<<24 | 'O'<<16 | 'S'<<8 | 'T' // 'HOST'
	PPath         PScheme = 'F'<<24 | 'T'<<16 | 'P'<<8 | 'c' // 'FTPc'
	PSchemeValue  PScheme = 'p'<<24 | 'u'<<16 | 's'<<8 | 'c' // 'pusc'
	PTextEncoding PScheme = 'p'<<24 | 't'<<16 | 'x'<<8 | 'e' // 'ptxe'
	PURL          PScheme = 'p'<<24 | 'U'<<16 | 'R'<<8 | 'L' // 'pURL'
	PUserName     PScheme = 'R'<<24 | 'A'<<16 | 'u'<<8 | 'n' // 'RAun'
	PUserPassword PScheme = 'R'<<24 | 'A'<<16 | 'p'<<8 | 'w' // 'RApw'
)

func (PScheme) String added in v0.5.1

func (e PScheme) String() string

type PTextStyles added in v0.5.1

type PTextStyles uint32
const (
	PTextStylesValue PTextStyles = 't'<<24 | 'x'<<16 | 's'<<8 | 't' // 'txst'
	PTransferMode    PTextStyles = 'p'<<24 | 'p'<<16 | 't'<<8 | 'm' // 'pptm'
	PTranslation     PTextStyles = 'p'<<24 | 't'<<16 | 'r'<<8 | 's' // 'ptrs'
	PUniformStyles   PTextStyles = 'u'<<24 | 's'<<16 | 't'<<8 | 'l' // 'ustl'
	PUpdateOn        PTextStyles = 'p'<<24 | 'u'<<16 | 'p'<<8 | 'd' // 'pupd'
	PUserSelection   PTextStyles = 'p'<<24 | 'u'<<16 | 's'<<8 | 'l' // 'pusl'
	PVersion         PTextStyles = 'v'<<24 | 'e'<<16 | 'r'<<8 | 's' // 'vers'
	PVisible         PTextStyles = 'p'<<24 | 'v'<<16 | 'i'<<8 | 's' // 'pvis'
)

func (PTextStyles) String added in v0.5.1

func (e PTextStyles) String() string

type ParamBlockRec

type ParamBlockRec unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/paramblockrec ParamBlockRec is an unresolved C aggregate typedef.

type ParamErr

type ParamErr int32
const (
	BadUnitErr           ParamErr = -21
	ClosErr              ParamErr = -24
	ControlErr           ParamErr = -17
	CorErr               ParamErr = -3
	DInstErr             ParamErr = -26
	DRemovErr            ParamErr = -25
	NoHardwareErr        ParamErr = -200
	NotEnoughHardwareErr ParamErr = -201
	OpenErr              ParamErr = -23
	ParamErrValue        ParamErr = -50
	QErr                 ParamErr = -1
	ReadErr              ParamErr = -19
	SeNoDB               ParamErr = -8
	SlpTypeErr           ParamErr = -5
	StatusErr            ParamErr = -18
	UnimpErr             ParamErr = -4
	UnitEmptyErr         ParamErr = -22
	UserCanceledErr      ParamErr = -128
	VTypErr              ParamErr = -2
	WritErr              ParamErr = -20
)

func (ParamErr) String

func (e ParamErr) String() string

type Platform68k added in v0.5.1

type Platform68k uint32
const (
	// Deprecated.
	Platform68kValue Platform68k = 1
	// Deprecated.
	PlatformArm64NativeEntryPoint Platform68k = 9
	// Deprecated.
	PlatformIA32NativeEntryPoint Platform68k = 6
	// Deprecated.
	PlatformInterpreted Platform68k = 3
	// Deprecated.
	PlatformPowerPC Platform68k = 2
	// Deprecated.
	PlatformPowerPC64NativeEntryPoint Platform68k = 7
	// Deprecated.
	PlatformPowerPCNativeEntryPoint Platform68k = 5
	// Deprecated.
	PlatformWin32 Platform68k = 4
	// Deprecated.
	PlatformX86_64NativeEntryPoint Platform68k = 8
)

func (Platform68k) String added in v0.6.17

func (e Platform68k) String() string

type PlatformIRIXmips added in v0.5.1

type PlatformIRIXmips uint32
const (
	// Deprecated.
	PlatformAIXppc PlatformIRIXmips = 1300
	// Deprecated.
	PlatformIRIXmipsValue PlatformIRIXmips = 1000
	// Deprecated.
	PlatformLinuxintel PlatformIRIXmips = 1201
	// Deprecated.
	PlatformLinuxppc PlatformIRIXmips = 1200
	// Deprecated.
	PlatformMacOSx86 PlatformIRIXmips = 1500
	// Deprecated.
	PlatformNeXT68k PlatformIRIXmips = 1403
	// Deprecated.
	PlatformNeXTIntel PlatformIRIXmips = 1400
	// Deprecated.
	PlatformNeXTppc PlatformIRIXmips = 1401
	// Deprecated.
	PlatformNeXTsparc PlatformIRIXmips = 1402
	// Deprecated.
	PlatformSunOSintel PlatformIRIXmips = 1101
	// Deprecated.
	PlatformSunOSsparc PlatformIRIXmips = 1100
)

func (PlatformIRIXmips) String added in v0.6.17

func (e PlatformIRIXmips) String() string

type PleaseCacheBit added in v0.5.1

type PleaseCacheBit uint32
const (
	ForceReadBit        PleaseCacheBit = 6
	ForceReadMask       PleaseCacheBit = 0x40
	NewLineBit          PleaseCacheBit = 7
	NewLineCharMask     PleaseCacheBit = 0xff00
	NewLineMask         PleaseCacheBit = 0x80
	NoCacheBit          PleaseCacheBit = 5
	NoCacheMask         PleaseCacheBit = 0x20
	PleaseCacheBitValue PleaseCacheBit = 4
	PleaseCacheMask     PleaseCacheBit = 0x10
	RdVerify            PleaseCacheBit = 64
	RdVerifyBit         PleaseCacheBit = 6
	RdVerifyMask        PleaseCacheBit = 0x40
)

func (PleaseCacheBit) String added in v0.5.1

func (e PleaseCacheBit) String() string

type Pm

type Pm int32
const (
	PmBusyErr      Pm = -13000
	PmRecvEndErr   Pm = -13005
	PmRecvStartErr Pm = -13004
	PmReplyTOErr   Pm = -13001
	PmSendEndErr   Pm = -13003
	PmSendStartErr Pm = -13002
)

func (Pm) String

func (e Pm) String() string

type PrinterStatusOpCodeNotSupported added in v0.5.1

type PrinterStatusOpCodeNotSupported int32
const (
	PrinterStatusOpCodeNotSupportedErr PrinterStatusOpCodeNotSupported = -25280
)

func (PrinterStatusOpCodeNotSupported) String added in v0.5.1

type ProcNotFound

type ProcNotFound int32
const (
	AppIsDaemon              ProcNotFound = -606
	AppMemFullErr            ProcNotFound = -605
	AppModeErr               ProcNotFound = -602
	BufferIsSmall            ProcNotFound = -607
	ConnectionInvalid        ProcNotFound = -609
	HardwareConfigErr        ProcNotFound = -604
	MemFragErr               ProcNotFound = -601
	NoOutstandingHLE         ProcNotFound = -608
	NoUserInteractionAllowed ProcNotFound = -610
	ProcNotFoundValue        ProcNotFound = -600
	ProtocolErr              ProcNotFound = -603
)

func (ProcNotFound) String

func (e ProcNotFound) String() string

type ProcPtr added in v0.6.17

type ProcPtr = KProcDescriptorIsProcPtr

ProcPtr is an alias for referenced enum type KProcDescriptorIsProcPtr.

type QElem

type QElem [6]uint16

See: https://developer.apple.com/documentation/coreservices/qelem QElem is opaque storage with the size and alignment C gives QElem: 12 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 12 into.

type QHdr

type QHdr [9]uint16

See: https://developer.apple.com/documentation/coreservices/qhdr QHdr is opaque storage with the size and alignment C gives QHdr: 18 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 18 into.

type QHdrPtr

type QHdrPtr = unsafe.Pointer

QHdrPtr is represents a type used by the Compression and Decompression API.

See: https://developer.apple.com/documentation/coreservices/qhdrptr

type Qts

type Qts int32
const (
	QtsAddressBusyErr         Qts = -5421
	QtsBadDataErr             Qts = -5402
	QtsBadSelectorErr         Qts = -5400
	QtsBadStateErr            Qts = -5401
	QtsConnectionFailedErr    Qts = -5420
	QtsTimeoutErr             Qts = -5408
	QtsTooMuchDataErr         Qts = -5406
	QtsUnknownValueErr        Qts = -5407
	QtsUnsupportedDataTypeErr Qts = -5403
	QtsUnsupportedFeatureErr  Qts = -5405
	QtsUnsupportedRateErr     Qts = -5404
)

func (Qts) String

func (e Qts) String() string

type RAlias added in v0.5.1

type RAlias uint32
const (
	// Deprecated.
	RAliasType RAlias = 'a'<<24 | 'l'<<16 | 'i'<<8 | 's' // 'alis'
)

func (RAlias) String added in v0.5.1

func (e RAlias) String() string

type RcDB

type RcDB int32
const (
	RcDBAsyncNotSupp  RcDB = -809
	RcDBBadAsyncPB    RcDB = -810
	RcDBBadDDEV       RcDB = -808
	RcDBBadSessID     RcDB = -806
	RcDBBadSessNum    RcDB = -807
	RcDBBadType       RcDB = -803
	RcDBBreak         RcDB = -804
	RcDBError         RcDB = -802
	RcDBExec          RcDB = -805
	RcDBNoHandler     RcDB = -811
	RcDBNull          RcDB = -800
	RcDBPackNotInited RcDB = -813
	RcDBValue         RcDB = -801
	RcDBWrongVersion  RcDB = -812
)

func (RcDB) String

func (e RcDB) String() string

type RegisterInformation

type RegisterInformation [1]uint64

See: https://developer.apple.com/documentation/coreservices/registerinformation RegisterInformation is opaque storage with the size and alignment C gives RegisterInformation: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type RegisterInformationIntel64

type RegisterInformationIntel64 unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/registerinformationintel64 RegisterInformationIntel64 is an unresolved C aggregate typedef.

type RegisterInformationPowerPC

type RegisterInformationPowerPC [128]uint16

See: https://developer.apple.com/documentation/coreservices/registerinformationpowerpc RegisterInformationPowerPC is opaque storage with the size and alignment C gives RegisterInformationPowerPC: 256 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 256 into.

type RegisteredComponentInstanceRecord

type RegisteredComponentInstanceRecord [4]uint16

See: https://developer.apple.com/documentation/coreservices/registeredcomponentinstancerecord RegisteredComponentInstanceRecord is opaque storage with the size and alignment C gives RegisteredComponentInstanceRecord: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type RegisteredComponentRecord

type RegisteredComponentRecord [4]uint16

See: https://developer.apple.com/documentation/coreservices/registeredcomponentrecord RegisteredComponentRecord is opaque storage with the size and alignment C gives RegisteredComponentRecord: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type ReqFailed

type ReqFailed int32
const (
	BadATPSkt      ReqFailed = -1099
	BadBuffNum     ReqFailed = -1100
	CbNotFound     ReqFailed = -1102
	NoDataArea     ReqFailed = -1104
	NoRelErr       ReqFailed = -1101
	NoSendResp     ReqFailed = -1103
	ReqAborted     ReqFailed = -1105
	ReqFailedValue ReqFailed = -1096
	TooManyReqs    ReqFailed = -1097
	TooManySkts    ReqFailed = -1098
)

func (ReqFailed) String

func (e ReqFailed) String() string

type ResAttributes

type ResAttributes = int16

See: https://developer.apple.com/documentation/coreservices/resattributes

func GetResAttrs deprecated

func GetResAttrs(theResource kernel.Handle) ResAttributes

GetResAttrs.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529365-getresattrs

type ResErrUPP

type ResErrUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/reserrupp

func NewResErrUPP deprecated

func NewResErrUPP(userRoutine unsafe.Pointer) ResErrUPP

NewResErrUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529285-newreserrupp

type ResFileAttributes

type ResFileAttributes = int16

See: https://developer.apple.com/documentation/coreservices/resfileattributes

func GetResFileAttrs deprecated

func GetResFileAttrs(refNum ResFileRefNum) ResFileAttributes

GetResFileAttrs.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529231-getresfileattrs

type ResFileRefNum

type ResFileRefNum = int32

See: https://developer.apple.com/documentation/coreservices/resfilerefnum

func CurResFile deprecated

func CurResFile() ResFileRefNum

CurResFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529286-curresfile

func FSOpenResFile deprecated

func FSOpenResFile(ref *FSRef, permission int8) ResFileRefNum

FSOpenResFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529232-fsopenresfile

func HomeResFile deprecated

func HomeResFile(theResource kernel.Handle) ResFileRefNum

HomeResFile.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529352-homeresfile

func OpenComponentResFile deprecated

func OpenComponentResFile(aComponent Component) ResFileRefNum

OpenComponentResFile allows your component to gain access to its resource file.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1516550-opencomponentresfile

type ResID

type ResID = int16

See: https://developer.apple.com/documentation/coreservices/resid

func Unique1ID deprecated

func Unique1ID(theType uint32) ResID

Unique1ID.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529314-unique1id

func UniqueID deprecated

func UniqueID(theType uint32) ResID

UniqueID.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529255-uniqueid

type ResSysHeap added in v0.5.1

type ResSysHeap uint32
const (
	// Deprecated.
	ResChanged ResSysHeap = 2
	// Deprecated.
	ResLocked ResSysHeap = 16
	// Deprecated.
	ResPreload ResSysHeap = 4
	// Deprecated.
	ResProtected ResSysHeap = 8
	// Deprecated.
	ResPurgeable ResSysHeap = 32
	// Deprecated.
	ResSysHeapValue ResSysHeap = 64
)

func (ResSysHeap) String added in v0.6.17

func (e ResSysHeap) String() string

type ResSysRefBit added in v0.5.1

type ResSysRefBit uint32
const (
	// Deprecated.
	ResChangedBit ResSysRefBit = 1
	// Deprecated.
	ResLockedBit ResSysRefBit = 4
	// Deprecated.
	ResPreloadBit ResSysRefBit = 2
	// Deprecated.
	ResProtectedBit ResSysRefBit = 3
	// Deprecated.
	ResPurgeableBit ResSysRefBit = 5
	// Deprecated.
	ResSysHeapBit ResSysRefBit = 6
	// Deprecated.
	ResSysRefBitValue ResSysRefBit = 7
)

func (ResSysRefBit) String added in v0.6.17

func (e ResSysRefBit) String() string

type ResType added in v0.6.17

ResType is an alias for referenced enum type KTECAvailableEncodingsResType.

type ResourceCount

type ResourceCount = int16

See: https://developer.apple.com/documentation/coreservices/resourcecount

func Count1Resources deprecated

func Count1Resources(theType uint32) ResourceCount

Count1Resources.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529312-count1resources

func Count1Types deprecated

func Count1Types() ResourceCount

Count1Types.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529244-count1types

func CountResources deprecated

func CountResources(theType uint32) ResourceCount

CountResources.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529322-countresources

func CountTypes deprecated

func CountTypes() ResourceCount

CountTypes.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1529346-counttypes

type ResourceInMemory

type ResourceInMemory int32
const (
	AddRefFailed            ResourceInMemory = -195
	AddResFailed            ResourceInMemory = -194
	BadExtResource          ResourceInMemory = -185
	CantDecompress          ResourceInMemory = -186
	InputOutOfBounds        ResourceInMemory = -190
	InsufficientStackErr    ResourceInMemory = -149
	MapReadErr              ResourceInMemory = -199
	NoMemForPictPlaybackErr ResourceInMemory = -145
	NsStackErr              ResourceInMemory = -149
	PixMapTooDeepErr        ResourceInMemory = -148
	ResAttrErr              ResourceInMemory = -198
	ResFNotFound            ResourceInMemory = -193
	ResNotFound             ResourceInMemory = -192
	ResourceInMemoryValue   ResourceInMemory = -188
	RgnOverflowErr          ResourceInMemory = -147
	RgnTooBigError          ResourceInMemory = -147
	RmvRefFailed            ResourceInMemory = -197
	RmvResFailed            ResourceInMemory = -196
	WritingPastEnd          ResourceInMemory = -189
)

func (ResourceInMemory) String

func (e ResourceInMemory) String() string

type ResourceSpec

type ResourceSpec [3]uint16

See: https://developer.apple.com/documentation/coreservices/resourcespec ResourceSpec is opaque storage with the size and alignment C gives ResourceSpec: 6 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 6 into.

type RomanSysFond added in v0.5.1

type RomanSysFond uint32
const (
	// Deprecated.
	RomanAppFond RomanSysFond = 3
	// Deprecated.
	RomanFlags RomanSysFond = 0x7
	// Deprecated.
	RomanSysFondValue RomanSysFond = 0x3fff
	// Deprecated.
	SmFondEnd RomanSysFond = 0xc000
	// Deprecated.
	SmFondStart RomanSysFond = 0x4000
	// Deprecated.
	SmUprHalfCharSet RomanSysFond = 0x80
)

func (RomanSysFond) String added in v0.5.1

func (e RomanSysFond) String() string

type RoutineDescriptor

type RoutineDescriptor [20]uint16

See: https://developer.apple.com/documentation/coreservices/routinedescriptor RoutineDescriptor is opaque storage with the size and alignment C gives RoutineDescriptor: 40 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 40 into.

type RoutineRecord

type RoutineRecord [14]uint16

See: https://developer.apple.com/documentation/coreservices/routinerecord RoutineRecord is opaque storage with the size and alignment C gives RoutineRecord: 28 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 28 into.

type RoutingResourceEntry

type RoutingResourceEntry [10]uint16

See: https://developer.apple.com/documentation/coreservices/routingresourceentry RoutingResourceEntry is opaque storage with the size and alignment C gives RoutingResourceEntry: 20 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 20 into.

type RuleBasedTrslRecord

type RuleBasedTrslRecord [5]uint16

See: https://developer.apple.com/documentation/coreservices/rulebasedtrslrecord RuleBasedTrslRecord is opaque storage with the size and alignment C gives RuleBasedTrslRecord: 10 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 10 into.

type SInt16 added in v0.6.17

type SInt16 = TypeSInt16

SInt16 is an alias for referenced enum type TypeSInt16.

type SKDocument

type SKDocument = corefoundation.CFTypeRef

SKDocument is defines an opaque data type representing a document’s URL.

See: https://developer.apple.com/documentation/coreservices/skdocument

type SKDocumentID

type SKDocumentID = int

SKDocumentID is defines an opaque data type representing a lightweight document identifier.

See: https://developer.apple.com/documentation/coreservices/skdocumentid

func SKIndexGetDocumentID

func SKIndexGetDocumentID(inIndex SKIndexRef, inDocument SKDocumentRef) SKDocumentID

SKIndexGetDocumentID gets the ID of a document URL object (of type SKDocument) in an index.

See: https://developer.apple.com/documentation/coreservices/1444437-skindexgetdocumentid

func SKIndexGetMaximumDocumentID

func SKIndexGetMaximumDocumentID(inIndex SKIndexRef) SKDocumentID

SKIndexGetMaximumDocumentID gets the highest-numbered document ID in an index.

See: https://developer.apple.com/documentation/coreservices/1444628-skindexgetmaximumdocumentid

type SKDocumentIndexState

type SKDocumentIndexState uint32

See: https://developer.apple.com/documentation/coreservices/skdocumentindexstate

const (
	// KSKDocumentStateAddPending: Specifies that the document is not in the index but will be added after the index is flushed or closed.
	KSKDocumentStateAddPending SKDocumentIndexState = 2
	// KSKDocumentStateDeletePending: Specifies that the document is in the index but will be deleted after the index is flushed or closed.
	KSKDocumentStateDeletePending SKDocumentIndexState = 3
	// KSKDocumentStateIndexed: Specifies that the document is indexed.
	KSKDocumentStateIndexed SKDocumentIndexState = 1
	// KSKDocumentStateNotIndexed: Specifies that the document is not indexed.
	KSKDocumentStateNotIndexed SKDocumentIndexState = 0
)

func SKIndexGetDocumentState

func SKIndexGetDocumentState(inIndex SKIndexRef, inDocument SKDocumentRef) SKDocumentIndexState

SKIndexGetDocumentState gets the current indexing state of a document URL object (of type SKDocument) in an index.

See: https://developer.apple.com/documentation/coreservices/1443396-skindexgetdocumentstate

func (SKDocumentIndexState) String

func (e SKDocumentIndexState) String() string

type SKDocumentRef

type SKDocumentRef = corefoundation.CFTypeRef

SKDocumentRef is defines an opaque data type representing a document’s URL.

See: https://developer.apple.com/documentation/coreservices/skdocumentref

func SKDocumentCreate

func SKDocumentCreate(inScheme corefoundation.CFStringRef, inParent SKDocumentRef, inName corefoundation.CFStringRef) SKDocumentRef

SKDocumentCreate creates a document URL object (of type SKDocument) based on a scheme, parent, and name.

See: https://developer.apple.com/documentation/coreservices/1443212-skdocumentcreate

func SKDocumentCreateWithURL

func SKDocumentCreateWithURL(inURL corefoundation.CFURLRef) SKDocumentRef

SKDocumentCreateWithURL creates a document URL object (of type SKDocument) from a CFURL object.

See: https://developer.apple.com/documentation/coreservices/1442564-skdocumentcreatewithurl

func SKDocumentGetParent

func SKDocumentGetParent(inDocument SKDocumentRef) SKDocumentRef

SKDocumentGetParent gets the parent of a document URL object (of type SKDocument).

See: https://developer.apple.com/documentation/coreservices/1444449-skdocumentgetparent

func SKIndexCopyDocumentForDocumentID

func SKIndexCopyDocumentForDocumentID(inIndex SKIndexRef, inDocumentID SKDocumentID) SKDocumentRef

SKIndexCopyDocumentForDocumentID obtains a document URL object (of type SKDocument) from an index.

See: https://developer.apple.com/documentation/coreservices/1442760-skindexcopydocumentfordocumentid

func SKIndexDocumentIteratorCopyNext

func SKIndexDocumentIteratorCopyNext(inIterator SKIndexDocumentIteratorRef) SKDocumentRef

SKIndexDocumentIteratorCopyNext obtains the next document URL object (of type SKDocument) from an index using a document iterator.

See: https://developer.apple.com/documentation/coreservices/1442212-skindexdocumentiteratorcopynext

type SKIndexDocumentIteratorRef

type SKIndexDocumentIteratorRef uintptr

SKIndexDocumentIteratorRef is defines an opaque data type representing an index-based document iterator.

See: https://developer.apple.com/documentation/coreservices/skindexdocumentiteratorref

func SKIndexDocumentIteratorCreate

func SKIndexDocumentIteratorCreate(inIndex SKIndexRef, inParentDocument SKDocumentRef) SKIndexDocumentIteratorRef

SKIndexDocumentIteratorCreate creates an index-based iterator for document URL objects (of type SKDocument) owned by a parent document URL object.

See: https://developer.apple.com/documentation/coreservices/1446189-skindexdocumentiteratorcreate

type SKIndexRef

type SKIndexRef uintptr

SKIndexRef is defines an opaque data type representing an index.

See: https://developer.apple.com/documentation/coreservices/skindexref

func SKIndexCreateWithMutableData

func SKIndexCreateWithMutableData(inData corefoundation.CFMutableDataRef, inIndexName corefoundation.CFStringRef, inIndexType SKIndexType, inAnalysisProperties corefoundation.CFDictionaryRef) SKIndexRef

SKIndexCreateWithMutableData creates a named index stored in a [CFMutableDataRef] object.

See: https://developer.apple.com/documentation/coreservices/1447500-skindexcreatewithmutabledata

func SKIndexCreateWithURL

func SKIndexCreateWithURL(inURL corefoundation.CFURLRef, inIndexName corefoundation.CFStringRef, inIndexType SKIndexType, inAnalysisProperties corefoundation.CFDictionaryRef) SKIndexRef

SKIndexCreateWithURL creates a named index in a file whose location is specified with a CFURL object.

See: https://developer.apple.com/documentation/coreservices/1446111-skindexcreatewithurl

func SKIndexOpenWithData

func SKIndexOpenWithData(inData corefoundation.CFDataRef, inIndexName corefoundation.CFStringRef) SKIndexRef

SKIndexOpenWithData opens an existing, named index for searching only.

See: https://developer.apple.com/documentation/coreservices/1446398-skindexopenwithdata

func SKIndexOpenWithMutableData

func SKIndexOpenWithMutableData(inData corefoundation.CFMutableDataRef, inIndexName corefoundation.CFStringRef) SKIndexRef

SKIndexOpenWithMutableData opens an existing, named index for searching and updating.

See: https://developer.apple.com/documentation/coreservices/1444201-skindexopenwithmutabledata

func SKIndexOpenWithURL

func SKIndexOpenWithURL(inURL corefoundation.CFURLRef, inIndexName corefoundation.CFStringRef, inWriteAccess unsafe.Pointer) SKIndexRef

SKIndexOpenWithURL opens an existing, named index stored in a file whose location is specified with a CFURL object.

See: https://developer.apple.com/documentation/coreservices/1449017-skindexopenwithurl

type SKIndexType

type SKIndexType uint32

See: https://developer.apple.com/documentation/coreservices/skindextype

const (
	// KSKIndexInverted: Specifies an inverted index, mapping terms to documents.
	KSKIndexInverted SKIndexType = 1
	// KSKIndexInvertedVector: Specifies an index type with all the capabilities of an inverted and a vector index.
	KSKIndexInvertedVector SKIndexType = 3
	// KSKIndexUnknown: Specifies an unknown index type.
	KSKIndexUnknown SKIndexType = 0
	// KSKIndexVector: Specifies a vector index, mapping documents to terms.
	KSKIndexVector SKIndexType = 2
)

func SKIndexGetIndexType

func SKIndexGetIndexType(inIndex SKIndexRef) SKIndexType

SKIndexGetIndexType gets the category of an index.

See: https://developer.apple.com/documentation/coreservices/1442236-skindexgetindextype

func (SKIndexType) String

func (e SKIndexType) String() string

type SKSearchGroupRef

type SKSearchGroupRef uintptr

SKSearchGroupRef is deprecated. Use asynchronous searching with SKSearchCreate instead, which does not employ search groups.

See: https://developer.apple.com/documentation/coreservices/sksearchgroupref

type SKSearchOptions

type SKSearchOptions = uint32

SKSearchOptions is specifies the search options available for the [SKSearchCreate(_:_:_:)] function.

See: https://developer.apple.com/documentation/coreservices/sksearchoptions

type SKSearchRef

type SKSearchRef uintptr

SKSearchRef is defines an opaque data type representing an asynchronous search.

See: https://developer.apple.com/documentation/coreservices/sksearchref

func SKSearchCreate

func SKSearchCreate(inIndex SKIndexRef, inQuery corefoundation.CFStringRef, inSearchOptions SKSearchOptions) SKSearchRef

SKSearchCreate creates an asynchronous search object for querying an index, and initiates search.

See: https://developer.apple.com/documentation/coreservices/1443079-sksearchcreate

type SKSearchResultsFilterCallBack

type SKSearchResultsFilterCallBack = func(inIndex SKIndexRef, inDocument SKDocumentRef, inContext unsafe.Pointer) bool

SKSearchResultsFilterCallBack is deprecated. Use SKSearchCreate and SKSearchFindMatches instead, which do not use a callback.

See: https://developer.apple.com/documentation/coreservices/sksearchresultsfiltercallback

type SKSearchResultsRef

type SKSearchResultsRef uintptr

SKSearchResultsRef is deprecated. Use asynchronous searching with SKSearchCreate instead, which does not employ search groups.

See: https://developer.apple.com/documentation/coreservices/sksearchresultsref

type SKSearchType

type SKSearchType uint32

See: https://developer.apple.com/documentation/coreservices/sksearchtype

const (
	// KSKSearchBooleanRanked: Deprecated.
	KSKSearchBooleanRanked SKSearchType = 1
	// KSKSearchPrefixRanked: Deprecated.
	KSKSearchPrefixRanked SKSearchType = 3
	// KSKSearchRanked: Deprecated.
	KSKSearchRanked SKSearchType = 0
	// KSKSearchRequiredRanked: Deprecated.
	KSKSearchRequiredRanked SKSearchType = 2
)

func (SKSearchType) String

func (e SKSearchType) String() string

type SKSummaryRef

type SKSummaryRef uintptr

SKSummaryRef is defines an opaque data type representing summarization information.

See: https://developer.apple.com/documentation/coreservices/sksummaryref

func SKSummaryCreateWithString

func SKSummaryCreateWithString(inString corefoundation.CFStringRef) SKSummaryRef

SKSummaryCreateWithString creates a summary object based on a text string.

See: https://developer.apple.com/documentation/coreservices/1446229-sksummarycreatewithstring

type SchedulerInfoRec

type SchedulerInfoRec [14]uint16

See: https://developer.apple.com/documentation/coreservices/schedulerinforec SchedulerInfoRec is opaque storage with the size and alignment C gives SchedulerInfoRec: 28 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 28 into.

type ScriptCodeRun

type ScriptCodeRun [5]uint16

ScriptCodeRun is contains script code information for a text run.

See: https://developer.apple.com/documentation/coreservices/scriptcoderun ScriptCodeRun is opaque storage with the size and alignment C gives ScriptCodeRun: 10 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 10 into.

type SelectorFunctionUPP

type SelectorFunctionUPP = unsafe.Pointer

SelectorFunctionUPP is defines a universal procedure pointer to a selector function callback.

See: https://developer.apple.com/documentation/coreservices/selectorfunctionupp

func NewSelectorFunctionUPP deprecated

func NewSelectorFunctionUPP(userRoutine unsafe.Pointer) SelectorFunctionUPP

NewSelectorFunctionUPP creates a universal procedure pointer (UPP) to a selector callback function.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1472304-newselectorfunctionupp

type ShortDate added in v0.5.1

type ShortDate uint32
const (
	AbbrevDate     ShortDate = 2
	LongDate       ShortDate = 1
	ShortDateValue ShortDate = 0
)

func (ShortDate) String added in v0.5.1

func (e ShortDate) String() string

type SiInitSDTblErr

type SiInitSDTblErr uint32
const (
	SdmInitErr          SiInitSDTblErr = 11
	SdmJTInitErr        SiInitSDTblErr = 10
	SdmPRAMInitErr      SiInitSDTblErr = 13
	SdmPriInitErr       SiInitSDTblErr = 14
	SdmSRTInitErr       SiInitSDTblErr = 12
	SiInitSDTblErrValue SiInitSDTblErr = 1
	SiInitSPTblErr      SiInitSDTblErr = 3
	SiInitVBLQsErr      SiInitSDTblErr = 2
)

func (SiInitSDTblErr) String

func (e SiInitSDTblErr) String() string

type SleepQRec

type SleepQRec [10]uint16

See: https://developer.apple.com/documentation/coreservices/sleepqrec SleepQRec is opaque storage with the size and alignment C gives SleepQRec: 20 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 20 into.

type SleepQUPP

type SleepQUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/sleepqupp

func NewSleepQUPP deprecated

func NewSleepQUPP(userRoutine unsafe.Pointer) SleepQUPP

NewSleepQUPP.

Deprecated: Deprecated since macOS 10.5.

See: https://developer.apple.com/documentation/coreservices/1427411-newsleepqupp

type SmCPUErr

type SmCPUErr int32
const (
	SmBadsPtrErr    SmCPUErr = -346
	SmBlkMoveErr    SmCPUErr = -340
	SmByteLanesErr  SmCPUErr = -347
	SmCPUErrValue   SmCPUErr = -334
	SmCkStatusErr   SmCPUErr = -341
	SmDisDrvrNamErr SmCPUErr = -343
	SmGetDrvrNamErr SmCPUErr = -342
	SmNewPErr       SmCPUErr = -339
	SmNilsBlockErr  SmCPUErr = -336
	SmNoGoodOpens   SmCPUErr = -349
	SmNoMoresRsrcs  SmCPUErr = -344
	SmOffsetErr     SmCPUErr = -348
	SmRecNotFnd     SmCPUErr = -351
	SmSRTOvrFlErr   SmCPUErr = -350
	SmSelOOBErr     SmCPUErr = -338
	SmSlotOOBErr    SmCPUErr = -337
	SmsGetDrvrErr   SmCPUErr = -345
	SmsPointerNil   SmCPUErr = -335
)

func (SmCPUErr) String added in v0.6.17

func (e SmCPUErr) String() string

type SmChar added in v0.5.1

type SmChar uint32
const (
	// Deprecated.
	SmCharAscii SmChar = 0x1
	// Deprecated.
	SmCharBidirect SmChar = 0x8
	// Deprecated.
	SmCharBopomofo SmChar = 0xe
	// Deprecated.
	SmCharContextualLR SmChar = 0x9
	// Deprecated.
	SmCharEuro SmChar = 0x7
	// Deprecated.
	SmCharExtAscii SmChar = 0x7
	// Deprecated.
	SmCharFISGana SmChar = 0x3
	// Deprecated.
	SmCharFISIdeo SmChar = 0x4
	// Deprecated.
	SmCharFISKana SmChar = 0x2
	// Deprecated.
	SmCharGanaKana SmChar = 0xf
	// Deprecated.
	SmCharHangul SmChar = 0xc
	// Deprecated.
	SmCharHiragana SmChar = 0x3
	// Deprecated.
	SmCharIdeographic SmChar = 0x4
	// Deprecated.
	SmCharJamo SmChar = 0xd
	// Deprecated.
	SmCharKatakana SmChar = 0x2
	// Deprecated.
	SmCharNonContextualLR SmChar = 0xa
	// Deprecated.
	SmCharPunct SmChar = 0
	// Deprecated.
	SmCharTwoByteGreek SmChar = 0x5
	// Deprecated.
	SmCharTwoByteRussian SmChar = 0x6
)

func (SmChar) String added in v0.5.1

func (e SmChar) String() string

type SmCharFISGreek added in v0.5.1

type SmCharFISGreek uint32
const (
	// Deprecated.
	SmCharFISGreekValue SmCharFISGreek = 0x5
	// Deprecated.
	SmCharFISRussian SmCharFISGreek = 0x6
	// Deprecated.
	SmFISClassLvl1 SmCharFISGreek = 0
	// Deprecated.
	SmFISClassLvl2 SmCharFISGreek = 0x100
	// Deprecated.
	SmFISClassUser SmCharFISGreek = 0x200
	// Deprecated.
	SmIdeographicLevel1 SmCharFISGreek = 0
	// Deprecated.
	SmIdeographicLevel2 SmCharFISGreek = 0x100
	// Deprecated.
	SmIdeographicUser SmCharFISGreek = 0x200
	// Deprecated.
	SmJamoBogJaeum SmCharFISGreek = 0x100
	// Deprecated.
	SmJamoBogMoeum SmCharFISGreek = 0x300
	// Deprecated.
	SmJamoJaeum SmCharFISGreek = 0
	// Deprecated.
	SmJamoMoeum SmCharFISGreek = 0x200
	// Deprecated.
	SmKanaHardOK SmCharFISGreek = 0x200
	// Deprecated.
	SmKanaSmall SmCharFISGreek = 0x100
	// Deprecated.
	SmKanaSoftOK SmCharFISGreek = 0x300
	// Deprecated.
	SmPunctBlank SmCharFISGreek = 0x300
	// Deprecated.
	SmPunctGraphic SmCharFISGreek = 0x500
	// Deprecated.
	SmPunctNormal SmCharFISGreek = 0
	// Deprecated.
	SmPunctNumber SmCharFISGreek = 0x100
	// Deprecated.
	SmPunctRepeat SmCharFISGreek = 0x400
	// Deprecated.
	SmPunctSymbol SmCharFISGreek = 0x200
)

func (SmCharFISGreek) String added in v0.6.17

func (e SmCharFISGreek) String() string

type SmCharHorizontal added in v0.5.1

type SmCharHorizontal uint32
const (
	// Deprecated.
	SmChar1byte SmCharHorizontal = 0
	// Deprecated.
	SmChar2byte SmCharHorizontal = 0x8000
	// Deprecated.
	SmCharHorizontalValue SmCharHorizontal = 0
	// Deprecated.
	SmCharLeft SmCharHorizontal = 0
	// Deprecated.
	SmCharLower SmCharHorizontal = 0
	// Deprecated.
	SmCharRight SmCharHorizontal = 0x2000
	// Deprecated.
	SmCharUpper SmCharHorizontal = 0x4000
	// Deprecated.
	SmCharVertical SmCharHorizontal = 0x1000
)

func (SmCharHorizontal) String added in v0.6.17

func (e SmCharHorizontal) String() string

type SmChinese added in v0.5.1

type SmChinese uint32
const (
	// Deprecated.
	SmAmharic SmChinese = 28
	// Deprecated.
	SmChineseValue SmChinese = 2
	// Deprecated.
	SmEastEurRoman SmChinese = 29
	// Deprecated.
	SmKlingon SmChinese = 32
	// Deprecated.
	SmLaotian SmChinese = 22
	// Deprecated.
	SmRussian SmChinese = 7
	// Deprecated.
	SmSindhi SmChinese = 31
	// Deprecated.
	SmSlavic SmChinese = 29
)

func (SmChinese) String added in v0.6.17

func (e SmChinese) String() string

type SmKey added in v0.5.1

type SmKey int32
const (
	// Deprecated.
	SmKeyDisableKybdSwitch SmKey = -12
	// Deprecated.
	SmKeyDisableKybds SmKey = -6
	// Deprecated.
	SmKeyEnableKybds SmKey = -7
	// Deprecated.
	SmKeyNextInputMethod SmKey = -10
	// Deprecated.
	SmKeyNextKybd SmKey = -4
	// Deprecated.
	SmKeyNextScript SmKey = -1
	// Deprecated.
	SmKeyRoman SmKey = -17
	// Deprecated.
	SmKeySetDirLeftRight SmKey = -15
	// Deprecated.
	SmKeySetDirRightLeft SmKey = -16
	// Deprecated.
	SmKeySwapInputMethod SmKey = -11
	// Deprecated.
	SmKeySwapKybd SmKey = -5
	// Deprecated.
	SmKeySwapScript SmKey = -3
	// Deprecated.
	SmKeySysScript SmKey = -2
	// Deprecated.
	SmKeyToggleDirection SmKey = -9
	// Deprecated.
	SmKeyToggleInline SmKey = -8
)

func (SmKey) String added in v0.5.1

func (e SmKey) String() string

type SmKeyForceKeyScript added in v0.5.1

type SmKeyForceKeyScript uint32
const (
	// Deprecated.
	SmKeyForceKeyScriptBit SmKeyForceKeyScript = 7
	// Deprecated.
	SmKeyForceKeyScriptMask SmKeyForceKeyScript = 128
)

func (SmKeyForceKeyScript) String added in v0.5.1

func (e SmKeyForceKeyScript) String() string

type SmMask added in v0.5.1

type SmMask int32
const (
	// Deprecated.
	SmMaskAll SmMask = -1
	// Deprecated.
	SmMaskAscii SmMask = 0x1
	// Deprecated.
	SmMaskAscii1 SmMask = 0x4
	// Deprecated.
	SmMaskAscii2 SmMask = 0x8
	// Deprecated.
	SmMaskBopomofo2 SmMask = 0x400
	// Deprecated.
	SmMaskGana2 SmMask = 0x80
	// Deprecated.
	SmMaskHangul2 SmMask = 0x100
	// Deprecated.
	SmMaskJamo2 SmMask = 0x200
	// Deprecated.
	SmMaskKana1 SmMask = 0x10
	// Deprecated.
	SmMaskKana2 SmMask = 0x20
	// Deprecated.
	SmMaskNative SmMask = 0x2
)

func (SmMask) String added in v0.5.1

func (e SmMask) String() string

type SmNotInstalled added in v0.5.1

type SmNotInstalled int32
const (
	// Deprecated.
	SmBadScript SmNotInstalled = -2
	// Deprecated.
	SmBadVerb SmNotInstalled = -1
	// Deprecated.
	SmNotInstalledValue SmNotInstalled = 0
)

func (SmNotInstalled) String added in v0.6.17

func (e SmNotInstalled) String() string

type SmResrvErr

type SmResrvErr int32
const (
	SmBLFieldBad    SmResrvErr = -309
	SmBadBoardId    SmResrvErr = -319
	SmBadRefId      SmResrvErr = -330
	SmBadsList      SmResrvErr = -331
	SmBusErrTO      SmResrvErr = -320
	SmCodeRevErr    SmResrvErr = -333
	SmDisposePErr   SmResrvErr = -312
	SmFHBlkDispErr  SmResrvErr = -311
	SmFHBlockRdErr  SmResrvErr = -310
	SmGetPRErr      SmResrvErr = -314
	SmInitStatVErr  SmResrvErr = -316
	SmInitTblVErr   SmResrvErr = -317
	SmNoBoardId     SmResrvErr = -315
	SmNoBoardSRsrc  SmResrvErr = -313
	SmNoJmpTbl      SmResrvErr = -318
	SmReservedErr   SmResrvErr = -332
	SmReservedSlot  SmResrvErr = -318
	SmResrvErrValue SmResrvErr = -307
	SmUnExBusErr    SmResrvErr = -308
	SvDisabled      SmResrvErr = -32640
	SvTempDisable   SmResrvErr = -32768
)

func (SmResrvErr) String

func (e SmResrvErr) String() string

type SmRoman added in v0.5.1

type SmRoman uint32
const (
	// Deprecated.
	SmArabic SmRoman = 4
	// Deprecated.
	SmArmenian SmRoman = 24
	// Deprecated.
	SmBengali SmRoman = 13
	// Deprecated.
	SmBurmese SmRoman = 19
	// Deprecated.
	SmCentralEuroRoman SmRoman = 29
	// Deprecated.
	SmCyrillic SmRoman = 7
	// Deprecated.
	SmDevanagari SmRoman = 9
	// Deprecated.
	SmEthiopic SmRoman = 28
	// Deprecated.
	SmExtArabic SmRoman = 31
	// Deprecated.
	SmGeez SmRoman = 28
	// Deprecated.
	SmGeorgian SmRoman = 23
	// Deprecated.
	SmGreek SmRoman = 6
	// Deprecated.
	SmGujarati SmRoman = 11
	// Deprecated.
	SmGurmukhi SmRoman = 10
	// Deprecated.
	SmHebrew SmRoman = 5
	// Deprecated.
	SmJapanese SmRoman = 1
	// Deprecated.
	SmKannada SmRoman = 16
	// Deprecated.
	SmKhmer SmRoman = 20
	// Deprecated.
	SmKorean SmRoman = 3
	// Deprecated.
	SmLao SmRoman = 22
	// Deprecated.
	SmMalayalam SmRoman = 17
	// Deprecated.
	SmMongolian SmRoman = 27
	// Deprecated.
	SmOriya SmRoman = 12
	// Deprecated.
	SmRSymbol SmRoman = 8
	// Deprecated.
	SmRomanValue SmRoman = 0
	// Deprecated.
	SmSimpChinese SmRoman = 25
	// Deprecated.
	SmSinhalese SmRoman = 18
	// Deprecated.
	SmTamil SmRoman = 14
	// Deprecated.
	SmTelugu SmRoman = 15
	// Deprecated.
	SmThai SmRoman = 21
	// Deprecated.
	SmTibetan SmRoman = 26
	// Deprecated.
	SmTradChinese SmRoman = 2
	// Deprecated.
	SmUninterp SmRoman = 32
	// Deprecated.
	SmVietnamese SmRoman = 30
)

func (SmRoman) String added in v0.6.17

func (e SmRoman) String() string

type SmSDMInitErr

type SmSDMInitErr int32
const (
	SmCRCFail         SmSDMInitErr = -301
	SmDisabledSlot    SmSDMInitErr = -305
	SmEmptySlot       SmSDMInitErr = -300
	SmFormatErr       SmSDMInitErr = -302
	SmNoDir           SmSDMInitErr = -304
	SmNosInfoArray    SmSDMInitErr = -306
	SmPRAMInitErr     SmSDMInitErr = -292
	SmPriInitErr      SmSDMInitErr = -293
	SmRevisionErr     SmSDMInitErr = -303
	SmSDMInitErrValue SmSDMInitErr = -290
	SmSRTInitErr      SmSDMInitErr = -291
)

func (SmSDMInitErr) String added in v0.6.17

func (e SmSDMInitErr) String() string

type SmSingleByte added in v0.5.1

type SmSingleByte int32
const (
	// Deprecated.
	SmFirstByte SmSingleByte = -1
	// Deprecated.
	SmLastByte SmSingleByte = 1
	// Deprecated.
	SmMiddleByte SmSingleByte = 2
	// Deprecated.
	SmSingleByteValue SmSingleByte = 0
)

func (SmSingleByte) String added in v0.6.17

func (e SmSingleByte) String() string

type SmSysScript added in v0.5.1

type SmSysScript uint32
const (
	// Deprecated.
	SmKCHRCache SmSysScript = 38
	// Deprecated.
	SmKeyScript SmSysScript = 22
	// Deprecated.
	SmRegionCode SmSysScript = 40
	// Deprecated.
	SmSysScriptValue SmSysScript = 18
)

func (SmSysScript) String added in v0.6.17

func (e SmSysScript) String() string

type SmSystemScript added in v0.5.1

type SmSystemScript int32
const (
	// Deprecated.
	SmAllScripts SmSystemScript = -3
	// Deprecated.
	SmCurrentScript SmSystemScript = -2
	// Deprecated.
	SmSystemScriptValue SmSystemScript = -1
)

func (SmSystemScript) String added in v0.6.17

func (e SmSystemScript) String() string

type SmTransAscii added in v0.5.1

type SmTransAscii uint32
const (
	// Deprecated.
	SmTransAsciiValue SmTransAscii = 0
	// Deprecated.
	SmTransAscii1 SmTransAscii = 2
	// Deprecated.
	SmTransAscii2 SmTransAscii = 3
	// Deprecated.
	SmTransCase SmTransAscii = 0xfe
	// Deprecated.
	SmTransKana1 SmTransAscii = 4
	// Deprecated.
	SmTransKana2 SmTransAscii = 5
	// Deprecated.
	SmTransNative SmTransAscii = 1
	// Deprecated.
	SmTransSystem SmTransAscii = 0xff
)

func (SmTransAscii) String added in v0.6.17

func (e SmTransAscii) String() string

type SmTransGana2 added in v0.5.1

type SmTransGana2 uint32
const (
	// Deprecated.
	SmTransBopomofo2 SmTransGana2 = 10
	// Deprecated.
	SmTransGana2Value SmTransGana2 = 7
	// Deprecated.
	SmTransHangul2 SmTransGana2 = 8
	// Deprecated.
	SmTransHangulFormat SmTransGana2 = 2
	// Deprecated.
	SmTransJamo2 SmTransGana2 = 9
	// Deprecated.
	SmTransLower SmTransGana2 = 0x4000
	// Deprecated.
	SmTransPreDoubleByting SmTransGana2 = 1
	// Deprecated.
	SmTransPreLowerCasing SmTransGana2 = 2
	// Deprecated.
	SmTransRuleBaseFormat SmTransGana2 = 1
	// Deprecated.
	SmTransUpper SmTransGana2 = 0x8000
)

func (SmTransGana2) String added in v0.6.17

func (e SmTransGana2) String() string

type SmUnicode added in v0.5.1

type SmUnicode uint32
const (
	SmUnicodeScript SmUnicode = 0x7e
)

func (SmUnicode) String added in v0.5.1

func (e SmUnicode) String() string

type SmWordSelectTable added in v0.5.1

type SmWordSelectTable uint32
const (
	// Deprecated.
	IuNumberPartsTable SmWordSelectTable = 2
	// Deprecated.
	IuUnTokenTable SmWordSelectTable = 3
	// Deprecated.
	IuWhiteSpaceList SmWordSelectTable = 4
	// Deprecated.
	IuWordSelectTable SmWordSelectTable = 0
	// Deprecated.
	IuWordWrapTable SmWordSelectTable = 1
	// Deprecated.
	SmNumberPartsTable SmWordSelectTable = 2
	// Deprecated.
	SmUnTokenTable SmWordSelectTable = 3
	// Deprecated.
	SmWhiteSpaceList SmWordSelectTable = 4
	// Deprecated.
	SmWordSelectTableValue SmWordSelectTable = 0
	// Deprecated.
	SmWordWrapTable SmWordSelectTable = 1
)

func (SmWordSelectTable) String added in v0.5.1

func (e SmWordSelectTable) String() string

type SmallDateBit added in v0.5.1

type SmallDateBit int32
const (
	GenCdevRangeBit   SmallDateBit = 27
	MaxDateField      SmallDateBit = 10
	SmallDateBitValue SmallDateBit = 31
	TogChar12HourBit  SmallDateBit = 30
	TogCharZCycleBit  SmallDateBit = 29
	TogDelta12HourBit SmallDateBit = 28
	ValidDateFields   SmallDateBit = -1
)

func (SmallDateBit) String added in v0.5.1

func (e SmallDateBit) String() string

type Smc added in v0.5.1

type Smc uint32
const (
	// Deprecated.
	SmcClassMask Smc = 0xf00
	// Deprecated.
	SmcDoubleMask Smc = 0x8000
	// Deprecated.
	SmcOrientationMask Smc = 0x1000
	// Deprecated.
	SmcReserved Smc = 0xf0
	// Deprecated.
	SmcRightMask Smc = 0x2000
	// Deprecated.
	SmcTypeMask Smc = 0xf
	// Deprecated.
	SmcUpperMask Smc = 0x4000
)

func (Smc) String added in v0.5.1

func (e Smc) String() string

type Smf added in v0.5.1

type Smf uint32
const (
	// Deprecated.
	SmfDisableKeyScriptSyncValue Smf = 27
	// Deprecated.
	SmfDualCaret Smf = 30
	// Deprecated.
	SmfNameTagEnab Smf = 29
	// Deprecated.
	SmfShowIcon Smf = 31
	// Deprecated.
	SmfUseAssocFontInfo Smf = 28
)

func (Smf) String added in v0.5.1

func (e Smf) String() string

type SmfDisableKeyScriptSync added in v0.5.1

type SmfDisableKeyScriptSync uint32
const (
	// Deprecated.
	SmfDisableKeyScriptSyncMask SmfDisableKeyScriptSync = 134217728
)

func (SmfDisableKeyScriptSync) String added in v0.5.1

func (e SmfDisableKeyScriptSync) String() string

type Smsf added in v0.5.1

type Smsf uint32
const (
	// Deprecated.
	SmsfAutoInit Smsf = 6
	// Deprecated.
	SmsfB0Digits Smsf = 5
	// Deprecated.
	SmsfContext Smsf = 3
	// Deprecated.
	SmsfForms Smsf = 13
	// Deprecated.
	SmsfIntellCP Smsf = 0
	// Deprecated.
	SmsfLigatures Smsf = 14
	// Deprecated.
	SmsfNatCase Smsf = 2
	// Deprecated.
	SmsfNoForceFont Smsf = 4
	// Deprecated.
	SmsfReverse Smsf = 15
	// Deprecated.
	SmsfSingByte Smsf = 1
	// Deprecated.
	SmsfSynchUnstyledTE Smsf = 8
	// Deprecated.
	SmsfUnivExt Smsf = 7
)

func (Smsf) String added in v0.5.1

func (e Smsf) String() string

type Sorts added in v0.5.1

type Sorts int32
const (
	// Deprecated.
	SortsAfter Sorts = 1
	// Deprecated.
	SortsBefore Sorts = -1
	// Deprecated.
	SortsEqual Sorts = 0
)

func (Sorts) String added in v0.5.1

func (e Sorts) String() string

type SoundDataChunk

type SoundDataChunk [8]uint16

See: https://developer.apple.com/documentation/coreservices/sounddatachunk SoundDataChunk is opaque storage with the size and alignment C gives SoundDataChunk: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type StartupFolderIconResource

type StartupFolderIconResource int32
const (
	ControlPanelFolderIconResource StartupFolderIconResource = -3976
	DropFolderIconResource         StartupFolderIconResource = -3979
	ExtensionsFolderIconResource   StartupFolderIconResource = -3973
	FontsFolderIconResource        StartupFolderIconResource = -3968
	FullTrashIconResource          StartupFolderIconResource = -3984
	MountedFolderIconResource      StartupFolderIconResource = -3977
	OwnedFolderIconResource        StartupFolderIconResource = -3980
	PreferencesFolderIconResource  StartupFolderIconResource = -3974
	PrintMonitorFolderIconResource StartupFolderIconResource = -3975
	SharedFolderIconResource       StartupFolderIconResource = -3978
	StartupFolderIconResourceValue StartupFolderIconResource = -3981
)

func (StartupFolderIconResource) String

func (e StartupFolderIconResource) String() string

type SystemCurLang added in v0.5.1

type SystemCurLang int32
const (
	CurrentCurLang     SystemCurLang = -4
	CurrentDefLang     SystemCurLang = -5
	ScriptCurLang      SystemCurLang = -6
	ScriptDefLang      SystemCurLang = -7
	SystemCurLangValue SystemCurLang = -2
	SystemDefLang      SystemCurLang = -3
)

func (SystemCurLang) String added in v0.5.1

func (e SystemCurLang) String() string

type TECBufferContextRec

type TECBufferContextRec [8]uint64

TECBufferContextRec is contains buffers for text and text encoding runs.

See: https://developer.apple.com/documentation/coreservices/tecbuffercontextrec TECBufferContextRec is opaque storage with the size and alignment C gives TECBufferContextRec: 64 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 64 into.

type TECConversionInfo

type TECConversionInfo [6]uint16

TECConversionInfo is contains text encoding conversion information.

See: https://developer.apple.com/documentation/coreservices/tecconversioninfo TECConversionInfo is opaque storage with the size and alignment C gives TECConversionInfo: 12 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 12 into.

type TECConverterContextRec

type TECConverterContextRec [19]uint64

TECConverterContextRec is contains converter information used by a Text Encoding Converter plug-in.

See: https://developer.apple.com/documentation/coreservices/tecconvertercontextrec TECConverterContextRec is opaque storage with the size and alignment C gives TECConverterContextRec: 152 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 152 into.

type TECEncodingPairRec

type TECEncodingPairRec [6]uint32

See: https://developer.apple.com/documentation/coreservices/tecencodingpairrec TECEncodingPairRec is opaque storage with the size and alignment C gives TECEncodingPairRec: 24 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 24 into.

type TECEncodingPairs

type TECEncodingPairs [8]uint32

See: https://developer.apple.com/documentation/coreservices/tecencodingpairs TECEncodingPairs is opaque storage with the size and alignment C gives TECEncodingPairs: 32 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 32 into.

type TECEncodingPairsRec

type TECEncodingPairsRec [9]uint32

See: https://developer.apple.com/documentation/coreservices/tecencodingpairsrec TECEncodingPairsRec is opaque storage with the size and alignment C gives TECEncodingPairsRec: 36 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 36 into.

type TECEncodingsListRec

type TECEncodingsListRec [4]uint32

See: https://developer.apple.com/documentation/coreservices/tecencodingslistrec TECEncodingsListRec is opaque storage with the size and alignment C gives TECEncodingsListRec: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type TECInfo

type TECInfo [42]uint16

TECInfo is contains information about the Unicode Converter, the Text Encoding Converter, and Basic Text Types.

See: https://developer.apple.com/documentation/coreservices/tecinfo TECInfo is opaque storage with the size and alignment C gives TECInfo: 84 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 84 into.

type TECInternetNameRec

type TECInternetNameRec [5]uint32

See: https://developer.apple.com/documentation/coreservices/tecinternetnamerec TECInternetNameRec is opaque storage with the size and alignment C gives TECInternetNameRec: 20 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 20 into.

type TECInternetNamesRec

type TECInternetNamesRec [6]uint32

See: https://developer.apple.com/documentation/coreservices/tecinternetnamesrec TECInternetNamesRec is opaque storage with the size and alignment C gives TECInternetNamesRec: 24 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 24 into.

type TECLocaleListToEncodingListRec

type TECLocaleListToEncodingListRec [3]uint32

See: https://developer.apple.com/documentation/coreservices/teclocalelisttoencodinglistrec TECLocaleListToEncodingListRec is opaque storage with the size and alignment C gives TECLocaleListToEncodingListRec: 12 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 12 into.

type TECLocaleToEncodingsListRec

type TECLocaleToEncodingsListRec [4]uint32

See: https://developer.apple.com/documentation/coreservices/teclocaletoencodingslistrec TECLocaleToEncodingsListRec is opaque storage with the size and alignment C gives TECLocaleToEncodingsListRec: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type TECObjectRef

type TECObjectRef uintptr

TECObjectRef is defines an opaque reference to a converter object.

See: https://developer.apple.com/documentation/coreservices/tecobjectref

type TECPluginDispatchTable

type TECPluginDispatchTable [20]uint64

TECPluginDispatchTable is contains version and signature information and pointers to the callback functions used by a text encoding converter plug-in.

See: https://developer.apple.com/documentation/coreservices/tecplugindispatchtable TECPluginDispatchTable is opaque storage with the size and alignment C gives TECPluginDispatchTable: 160 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 160 into.

type TECPluginGetPluginDispatchTablePtr

type TECPluginGetPluginDispatchTablePtr = unsafe.Pointer

TECPluginGetPluginDispatchTablePtr is defines a pointer to a function that returnsa pointer to a plug-in dispatch table.

See: https://developer.apple.com/documentation/coreservices/tecplugingetplugindispatchtableptr

type TECPluginSig

type TECPluginSig = uint32

TECPluginSig is defines a data type for a Text Encoding Converter plug-in signature.

See: https://developer.apple.com/documentation/coreservices/tecpluginsig

type TECPluginSignature

type TECPluginSignature = uint32

TECPluginSignature is defines a data type for a Text Encoding Converter plug-in signature.

See: https://developer.apple.com/documentation/coreservices/tecpluginsignature

type TECPluginStateRec

type TECPluginStateRec [5]uint32

TECPluginStateRec is contains state information for a Text Encoding Converter plug-in.

See: https://developer.apple.com/documentation/coreservices/tecpluginstaterec TECPluginStateRec is opaque storage with the size and alignment C gives TECPluginStateRec: 20 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 20 into.

type TECPluginVersion

type TECPluginVersion = uint32

TECPluginVersion is defines a data type for Text Encoding Converter plug-in version.

See: https://developer.apple.com/documentation/coreservices/tecpluginversion

type TECSnifferContextRec

type TECSnifferContextRec [14]uint64

TECSnifferContextRec is contains infomation used by a sniffer object.

See: https://developer.apple.com/documentation/coreservices/tecsniffercontextrec TECSnifferContextRec is opaque storage with the size and alignment C gives TECSnifferContextRec: 112 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 112 into.

type TECSnifferObjectRef

type TECSnifferObjectRef uintptr

TECSnifferObjectRef is defines a reference to an opaque sniffer object.

See: https://developer.apple.com/documentation/coreservices/tecsnifferobjectref

type TECSubTextEncodingRec

type TECSubTextEncodingRec [8]uint32

See: https://developer.apple.com/documentation/coreservices/tecsubtextencodingrec TECSubTextEncodingRec is opaque storage with the size and alignment C gives TECSubTextEncodingRec: 32 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 32 into.

type TECSubTextEncodingsRec

type TECSubTextEncodingsRec [9]uint32

See: https://developer.apple.com/documentation/coreservices/tecsubtextencodingsrec TECSubTextEncodingsRec is opaque storage with the size and alignment C gives TECSubTextEncodingsRec: 36 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 36 into.

type TMTask

type TMTask [21]uint16

See: https://developer.apple.com/documentation/coreservices/tmtask TMTask is opaque storage with the size and alignment C gives TMTask: 42 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 42 into.

type TScriptingSizeResource

type TScriptingSizeResource struct {
	// contains filtered or unexported fields
}

TScriptingSizeResource - Defines a data type to store stack and heap information. Not typically used by developers.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/tscriptingsizeresource

func (*TScriptingSizeResource) MaxHeapSize

func (s *TScriptingSizeResource) MaxHeapSize() uint32

MaxHeapSize returns the MaxHeapSize field from the record's packed storage.

func (*TScriptingSizeResource) MaxStackSize

func (s *TScriptingSizeResource) MaxStackSize() uint32

MaxStackSize returns the MaxStackSize field from the record's packed storage.

func (*TScriptingSizeResource) MinHeapSize

func (s *TScriptingSizeResource) MinHeapSize() uint32

MinHeapSize returns the MinHeapSize field from the record's packed storage.

func (*TScriptingSizeResource) MinStackSize

func (s *TScriptingSizeResource) MinStackSize() uint32

MinStackSize returns the MinStackSize field from the record's packed storage.

func (*TScriptingSizeResource) PreferredHeapSize

func (s *TScriptingSizeResource) PreferredHeapSize() uint32

PreferredHeapSize returns the PreferredHeapSize field from the record's packed storage.

func (*TScriptingSizeResource) PreferredStackSize

func (s *TScriptingSizeResource) PreferredStackSize() uint32

PreferredStackSize returns the PreferredStackSize field from the record's packed storage.

func (*TScriptingSizeResource) ScriptingSizeFlags

func (s *TScriptingSizeResource) ScriptingSizeFlags() int16

ScriptingSizeFlags returns the ScriptingSizeFlags field from the record's packed storage.

func (*TScriptingSizeResource) SetMaxHeapSize added in v0.6.17

func (s *TScriptingSizeResource) SetMaxHeapSize(v uint32)

SetMaxHeapSize updates the MaxHeapSize field in the record's packed storage.

func (*TScriptingSizeResource) SetMaxStackSize added in v0.6.17

func (s *TScriptingSizeResource) SetMaxStackSize(v uint32)

SetMaxStackSize updates the MaxStackSize field in the record's packed storage.

func (*TScriptingSizeResource) SetMinHeapSize added in v0.6.17

func (s *TScriptingSizeResource) SetMinHeapSize(v uint32)

SetMinHeapSize updates the MinHeapSize field in the record's packed storage.

func (*TScriptingSizeResource) SetMinStackSize added in v0.6.17

func (s *TScriptingSizeResource) SetMinStackSize(v uint32)

SetMinStackSize updates the MinStackSize field in the record's packed storage.

func (*TScriptingSizeResource) SetPreferredHeapSize added in v0.6.17

func (s *TScriptingSizeResource) SetPreferredHeapSize(v uint32)

SetPreferredHeapSize updates the PreferredHeapSize field in the record's packed storage.

func (*TScriptingSizeResource) SetPreferredStackSize added in v0.6.17

func (s *TScriptingSizeResource) SetPreferredStackSize(v uint32)

SetPreferredStackSize updates the PreferredStackSize field in the record's packed storage.

func (*TScriptingSizeResource) SetScriptingSizeFlags added in v0.6.17

func (s *TScriptingSizeResource) SetScriptingSizeFlags(v int16)

SetScriptingSizeFlags updates the ScriptingSizeFlags field in the record's packed storage.

type TableDirectoryRecord

type TableDirectoryRecord [8]uint16

See: https://developer.apple.com/documentation/coreservices/tabledirectoryrecord TableDirectoryRecord is opaque storage with the size and alignment C gives TableDirectoryRecord: 16 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 16 into.

type TaskStorageIndex

type TaskStorageIndex = uint

TaskStorageIndex is represents a task storage index value used by functions described in “Accessing Per-Task Storage Variables.”.

See: https://developer.apple.com/documentation/coreservices/taskstorageindex

type TaskStorageValue

type TaskStorageValue = unsafe.Pointer

TaskStorageValue is represents a task storage value used by functions described in “Accessing Per-Task Storage Variables.”.

See: https://developer.apple.com/documentation/coreservices/taskstoragevalue

func MPGetTaskStorageValue deprecated

func MPGetTaskStorageValue(taskIndex TaskStorageIndex) TaskStorageValue

MPGetTaskStorageValue gets the storage value stored at a specified index number.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1585589-mpgettaskstoragevalue

type TeScrapSizeErr

type TeScrapSizeErr int32
const (
	DriverHardwareGoneErr TeScrapSizeErr = -503
	HwParamErr            TeScrapSizeErr = -502
	TeScrapSizeErrValue   TeScrapSizeErr = -501
)

func (TeScrapSizeErr) String

func (e TeScrapSizeErr) String() string

type Tel

type Tel int32
const (
	TelAPattNotSupp       Tel = -10016
	TelAlreadyOpen        Tel = -10070
	TelAutoAnsNotOn       Tel = -10112
	TelBadAPattErr        Tel = -10015
	TelBadBearerType      Tel = -10058
	TelBadCAErr           Tel = -10003
	TelBadCodeResource    Tel = -10108
	TelBadDNDType         Tel = -10023
	TelBadDNErr           Tel = -10002
	TelBadDNType          Tel = -10050
	TelBadDisplayMode     Tel = -10062
	TelBadFeatureID       Tel = -10053
	TelBadFunction        Tel = -10091
	TelBadFwdType         Tel = -10054
	TelBadHTypeErr        Tel = -10010
	TelBadHandErr         Tel = -10004
	TelBadIndex           Tel = -10017
	TelBadIntExt          Tel = -10021
	TelBadIntercomID      Tel = -10052
	TelBadLevelErr        Tel = -10012
	TelBadPageID          Tel = -10051
	TelBadParkID          Tel = -10056
	TelBadPickupGroupID   Tel = -10055
	TelBadProcErr         Tel = -10005
	TelBadProcID          Tel = -10110
	TelBadRate            Tel = -10059
	TelBadSWErr           Tel = -10114
	TelBadSampleRate      Tel = -10115
	TelBadSelect          Tel = -10057
	TelBadStateErr        Tel = -10019
	TelBadTermErr         Tel = -10001
	TelBadVTypeErr        Tel = -10013
	TelCANotAcceptable    Tel = -10080
	TelCANotDeflectable   Tel = -10082
	TelCANotRejectable    Tel = -10081
	TelCAUnavail          Tel = -10006
	TelCBErr              Tel = -10046
	TelConfErr            Tel = -10042
	TelConfLimitErr       Tel = -10040
	TelConfLimitExceeded  Tel = -10047
	TelConfNoLimit        Tel = -10041
	TelConfRej            Tel = -10043
	TelDNDTypeNotSupp     Tel = -10024
	TelDNTypeNotSupp      Tel = -10060
	TelDetAlreadyOn       Tel = -10113
	TelDeviceNotFound     Tel = -10109
	TelDisplayModeNotSupp Tel = -10063
	TelFeatActive         Tel = -10032
	TelFeatNotAvail       Tel = -10031
	TelFeatNotSub         Tel = -10030
	TelFeatNotSupp        Tel = -10033
	TelFwdTypeNotSupp     Tel = -10061
	TelGenericError       Tel = -1
	TelHTypeNotSupp       Tel = -10011
	TelIndexNotSupp       Tel = -10018
	TelInitFailed         Tel = -10107
	TelIntExtNotSupp      Tel = -10022
	TelNoCallbackRef      Tel = -10064
	TelNoCommFolder       Tel = -10106
	TelNoErr              Tel = 0
	TelNoMemErr           Tel = -10007
	TelNoOpenErr          Tel = -10008
	TelNoSuchTool         Tel = -10102
	TelNoTools            Tel = 8
	TelNotEnoughdspBW     Tel = -10116
	TelPBErr              Tel = -10090
	TelStateNotSupp       Tel = -10020
	TelStillNeeded        Tel = -10071
	TelTermNotOpen        Tel = -10072
	TelTransferErr        Tel = -10044
	TelTransferRej        Tel = -10045
	TelUnknownErr         Tel = -10103
	TelVTypeNotSupp       Tel = -10014
	TelValidateFailed     Tel = -10111
)

func (Tel) String

func (e Tel) String() string

type TextBreakLocatorRef

type TextBreakLocatorRef uintptr

TextBreakLocatorRef is refers to an opaque object that encapsulates locale and text-break information for the purpose of finding boundaries in Unicode text.

See: https://developer.apple.com/documentation/coreservices/textbreaklocatorref

type TextChunk

type TextChunk [5]uint16

See: https://developer.apple.com/documentation/coreservices/textchunk TextChunk is opaque storage with the size and alignment C gives TextChunk: 10 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 10 into.

type TextEncoding

type TextEncoding = uint32

TextEncoding is defines a data type for a text encoding value.

See: https://developer.apple.com/documentation/coreservices/textencoding

type TextEncodingBase

type TextEncodingBase = uint32

TextEncodingBase is specify base text encodings.

See: https://developer.apple.com/documentation/coreservices/textencodingbase

func GetTextEncodingBase

func GetTextEncodingBase(encoding kernel.TextEncoding) TextEncodingBase

GetTextEncodingBase returns the base encoding of the specified text encoding.

See: https://developer.apple.com/documentation/coreservices/1399792-gettextencodingbase

type TextEncodingFormat

type TextEncodingFormat = uint32

TextEncodingFormat is specify a text encoding format.

See: https://developer.apple.com/documentation/coreservices/textencodingformat

func GetTextEncodingFormat

func GetTextEncodingFormat(encoding kernel.TextEncoding) TextEncodingFormat

GetTextEncodingFormat returns the format value of the specified text encoding.

See: https://developer.apple.com/documentation/coreservices/1400318-gettextencodingformat

type TextEncodingNameSelector

type TextEncodingNameSelector = uint32

TextEncodingNameSelector is specify the part of an encoding name you want to obtain.

See: https://developer.apple.com/documentation/coreservices/textencodingnameselector

type TextEncodingRec

type TextEncodingRec [3]uint32

See: https://developer.apple.com/documentation/coreservices/textencodingrec TextEncodingRec is opaque storage with the size and alignment C gives TextEncodingRec: 12 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 12 into.

type TextEncodingRun

type TextEncodingRun [6]uint16

TextEncodingRun is contains text encoding information for a text run.

See: https://developer.apple.com/documentation/coreservices/textencodingrun TextEncodingRun is opaque storage with the size and alignment C gives TextEncodingRun: 12 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 12 into.

type TextEncodingVariant

type TextEncodingVariant = uint32

TextEncodingVariant is defines a data type for a text encoding variant.

See: https://developer.apple.com/documentation/coreservices/textencodingvariant

func GetTextEncodingVariant

func GetTextEncodingVariant(encoding kernel.TextEncoding) TextEncodingVariant

GetTextEncodingVariant returns the variant from the specified text encoding.

See: https://developer.apple.com/documentation/coreservices/1400250-gettextencodingvariant

type TextParser

type TextParser int32
const (
	TextParserBadParamErr         TextParser = -5220
	TextParserBadParserObjectErr  TextParser = -5223
	TextParserBadTextEncodingErr  TextParser = -5227
	TextParserBadTextLanguageErr  TextParser = -5226
	TextParserBadTokenValueErr    TextParser = -5222
	TextParserNoMoreTextErr       TextParser = -5225
	TextParserNoMoreTokensErr     TextParser = -5229
	TextParserNoSuchTokenFoundErr TextParser = -5228
	TextParserObjectNotFoundErr   TextParser = -5221
	TextParserParamErr            TextParser = -5224
)

func (TextParser) String

func (e TextParser) String() string

type TextRange

type TextRange struct {
	// contains filtered or unexported fields
}

TextRange - Specifies a range of text. Not typically used by developers.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/textrange

func (*TextRange) FEnd

func (s *TextRange) FEnd() int32

FEnd returns the FEnd field from the record's packed storage.

func (*TextRange) FHiliteStyle

func (s *TextRange) FHiliteStyle() int16

FHiliteStyle returns the FHiliteStyle field from the record's packed storage.

func (*TextRange) FStart

func (s *TextRange) FStart() int32

FStart returns the FStart field from the record's packed storage.

func (*TextRange) SetFEnd added in v0.6.17

func (s *TextRange) SetFEnd(v int32)

SetFEnd updates the FEnd field in the record's packed storage.

func (*TextRange) SetFHiliteStyle added in v0.6.17

func (s *TextRange) SetFHiliteStyle(v int16)

SetFHiliteStyle updates the FHiliteStyle field in the record's packed storage.

func (*TextRange) SetFStart added in v0.6.17

func (s *TextRange) SetFStart(v int32)

SetFStart updates the FStart field in the record's packed storage.

type TextRangeArray

type TextRangeArray struct {
	FNumOfRanges int16
	FRange       [1]TextRange
}

TextRangeArray - Specifies an array of text ranges. Not typically used by developers.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/textrangearray

type TextToUnicodeInfo

type TextToUnicodeInfo = uintptr

TextToUnicodeInfo is defines reference to an opaque Unicode converter object.

See: https://developer.apple.com/documentation/coreservices/texttounicodeinfo

type Theme

type Theme int32
const (
	ThemeBadCursorIndexErr           Theme = -30565
	ThemeBadTextColorErr             Theme = -30563
	ThemeHasNoAccentsErr             Theme = -30564
	ThemeInvalidBrushErr             Theme = -30560
	ThemeMonitorDepthNotSupportedErr Theme = -30567
	ThemeNoAppropriateBrushErr       Theme = -30568
	ThemeProcessNotRegisteredErr     Theme = -30562
	ThemeProcessRegisteredErr        Theme = -30561
	ThemeScriptFontNotFoundErr       Theme = -30566
)

func (Theme) String

func (e Theme) String() string

type Thread

type Thread int32
const (
	ThreadNotFoundErr    Thread = -618
	ThreadProtocolErr    Thread = -619
	ThreadTooManyReqsErr Thread = -617
)

func (Thread) String

func (e Thread) String() string

type ThreadBadAppContext added in v0.5.1

type ThreadBadAppContext int32
const (
	ThreadBadAppContextErr ThreadBadAppContext = -616
)

func (ThreadBadAppContext) String added in v0.5.1

func (e ThreadBadAppContext) String() string

type ThreadEntryUPP

type ThreadEntryUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/threadentryupp

func NewThreadEntryUPP deprecated

func NewThreadEntryUPP(userRoutine unsafe.Pointer) ThreadEntryUPP

NewThreadEntryUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574224-newthreadentryupp

type ThreadID

type ThreadID = uint

See: https://developer.apple.com/documentation/coreservices/threadid

func InvokeDebuggerThreadSchedulerUPP deprecated

func InvokeDebuggerThreadSchedulerUPP(schedulerInfo SchedulerInfoRecPtr, userUPP DebuggerThreadSchedulerUPP) ThreadID

InvokeDebuggerThreadSchedulerUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574211-invokedebuggerthreadschedulerupp

func InvokeThreadSchedulerUPP deprecated

func InvokeThreadSchedulerUPP(schedulerInfo SchedulerInfoRecPtr, userUPP ThreadSchedulerUPP) ThreadID

InvokeThreadSchedulerUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574302-invokethreadschedulerupp

type ThreadSchedulerUPP

type ThreadSchedulerUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/threadschedulerupp

func NewThreadSchedulerUPP deprecated

func NewThreadSchedulerUPP(userRoutine unsafe.Pointer) ThreadSchedulerUPP

NewThreadSchedulerUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574293-newthreadschedulerupp

type ThreadSwitchUPP

type ThreadSwitchUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/threadswitchupp

func NewThreadSwitchUPP deprecated

func NewThreadSwitchUPP(userRoutine unsafe.Pointer) ThreadSwitchUPP

NewThreadSwitchUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574243-newthreadswitchupp

type ThreadTerminationUPP

type ThreadTerminationUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/threadterminationupp

func NewThreadTerminationUPP deprecated

func NewThreadTerminationUPP(userRoutine unsafe.Pointer) ThreadTerminationUPP

NewThreadTerminationUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574221-newthreadterminationupp

type TimeCycle24 added in v0.5.1

type TimeCycle24 uint32
const (
	Century          TimeCycle24 = 128
	DayLdingZ        TimeCycle24 = 32
	HrLeadingZ       TimeCycle24 = 128
	LongDay          TimeCycle24 = 0
	LongMonth        TimeCycle24 = 2
	LongWeek         TimeCycle24 = 1
	LongYear         TimeCycle24 = 3
	MinLeadingZ      TimeCycle24 = 64
	MntLdingZ        TimeCycle24 = 64
	SecLeadingZ      TimeCycle24 = 32
	SupDay           TimeCycle24 = 1
	SupMonth         TimeCycle24 = 4
	SupWeek          TimeCycle24 = 2
	SupYear          TimeCycle24 = 8
	TimeCycle12      TimeCycle24 = 255
	TimeCycle24Value TimeCycle24 = 0
	TimeCycleZero    TimeCycle24 = 1
	ZeroCycle        TimeCycle24 = 1
)

func (TimeCycle24) String added in v0.5.1

func (e TimeCycle24) String() string

type TimerUPP

type TimerUPP = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/timerupp

func NewTimerUPP deprecated

func NewTimerUPP(userRoutine unsafe.Pointer) TimerUPP

NewTimerUPP.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1550787-newtimerupp

type Toggle added in v0.5.1

type Toggle uint32
const (
	ToggleBadChar    Toggle = 4
	ToggleBadDelta   Toggle = 3
	ToggleBadField   Toggle = 2
	ToggleBadNum     Toggle = 6
	ToggleErr3       Toggle = 7
	ToggleErr4       Toggle = 8
	ToggleErr5       Toggle = 9
	ToggleOK         Toggle = 1
	ToggleOutOfRange Toggle = 7
	ToggleUndefined  Toggle = 0
	ToggleUnknown    Toggle = 5
)

func (Toggle) String added in v0.5.1

func (e Toggle) String() string

type TogglePB

type TogglePB [24]uint16

See: https://developer.apple.com/documentation/coreservices/togglepb TogglePB is opaque storage with the size and alignment C gives TogglePB: 48 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 48 into.

type TokLeftQuote added in v0.5.1

type TokLeftQuote uint32
const (
	CurNumberPartsVersion TokLeftQuote = 1
	TokDecPoint           TokLeftQuote = 14
	TokEMinus             TokLeftQuote = 16
	TokEPlus              TokLeftQuote = 15
	TokEscape             TokLeftQuote = 13
	TokLeadPlacer         TokLeftQuote = 3
	TokLeader             TokLeftQuote = 4
	TokLeftQuoteValue     TokLeftQuote = 1
	TokMaxSymbols         TokLeftQuote = 31
	TokMinusSign          TokLeftQuote = 9
	TokNonLeader          TokLeftQuote = 5
	TokPercent            TokLeftQuote = 7
	TokPlusSign           TokLeftQuote = 8
	TokReserved           TokLeftQuote = 11
	TokRightQuote         TokLeftQuote = 2
	TokSeparator          TokLeftQuote = 12
	TokThousands          TokLeftQuote = 10
	TokZeroLead           TokLeftQuote = 6
)

func (TokLeftQuote) String added in v0.5.1

func (e TokLeftQuote) String() string

type TokenIntl added in v0.5.1

type TokenIntl int32
const (
	// Deprecated.
	TokenEmpty TokenIntl = -1
	// Deprecated.
	TokenIntlValue TokenIntl = 4
)

func (TokenIntl) String added in v0.6.17

func (e TokenIntl) String() string

type TokenLeftCurly added in v0.5.1

type TokenLeftCurly uint32
const (
	// Deprecated.
	Token2Equal TokenLeftCurly = 38
	// Deprecated.
	TokenAsterisk TokenLeftCurly = 26
	// Deprecated.
	TokenBackSlash TokenLeftCurly = 30
	// Deprecated.
	TokenColonEqual TokenLeftCurly = 39
	// Deprecated.
	TokenDivide TokenLeftCurly = 27
	// Deprecated.
	TokenEqual TokenLeftCurly = 33
	// Deprecated.
	TokenGreat TokenLeftCurly = 32
	// Deprecated.
	TokenGreatEqual1 TokenLeftCurly = 37
	// Deprecated.
	TokenGreatEqual2 TokenLeftCurly = 36
	// Deprecated.
	TokenLeftCurlyValue TokenLeftCurly = 20
	// Deprecated.
	TokenLeftEnclose TokenLeftCurly = 22
	// Deprecated.
	TokenLess TokenLeftCurly = 31
	// Deprecated.
	TokenLessEqual1 TokenLeftCurly = 35
	// Deprecated.
	TokenLessEqual2 TokenLeftCurly = 34
	// Deprecated.
	TokenMinus TokenLeftCurly = 25
	// Deprecated.
	TokenPlus TokenLeftCurly = 24
	// Deprecated.
	TokenPlusMinus TokenLeftCurly = 28
	// Deprecated.
	TokenRightCurly TokenLeftCurly = 21
	// Deprecated.
	TokenRightEnclose TokenLeftCurly = 23
	// Deprecated.
	TokenSlash TokenLeftCurly = 29
)

func (TokenLeftCurly) String added in v0.6.17

func (e TokenLeftCurly) String() string

type TokenNotEqual added in v0.5.1

type TokenNotEqual uint32
const (
	// Deprecated.
	Token1Quote TokenNotEqual = 52
	// Deprecated.
	Token2Quote TokenNotEqual = 51
	// Deprecated.
	TokenAmpersand TokenNotEqual = 57
	// Deprecated.
	TokenAtSign TokenNotEqual = 58
	// Deprecated.
	TokenBar TokenNotEqual = 59
	// Deprecated.
	TokenCaret TokenNotEqual = 55
	// Deprecated.
	TokenComma TokenNotEqual = 45
	// Deprecated.
	TokenExclam TokenNotEqual = 43
	// Deprecated.
	TokenExclamEqual TokenNotEqual = 42
	// Deprecated.
	TokenLeft1Quote TokenNotEqual = 49
	// Deprecated.
	TokenLeft2Quote TokenNotEqual = 47
	// Deprecated.
	TokenLessGreat TokenNotEqual = 41
	// Deprecated.
	TokenNotEqualValue TokenNotEqual = 40
	// Deprecated.
	TokenPercent TokenNotEqual = 54
	// Deprecated.
	TokenPeriod TokenNotEqual = 46
	// Deprecated.
	TokenRight1Quote TokenNotEqual = 50
	// Deprecated.
	TokenRight2Quote TokenNotEqual = 48
	// Deprecated.
	TokenSemicolon TokenNotEqual = 53
	// Deprecated.
	TokenTilde TokenNotEqual = 44
	// Deprecated.
	TokenUnderline TokenNotEqual = 56
)

func (TokenNotEqual) String added in v0.6.17

func (e TokenNotEqual) String() string

type TokenOK added in v0.5.1

type TokenOK uint32
const (
	// Deprecated.
	BadDelim TokenOK = 3
	// Deprecated.
	BadEnding TokenOK = 4
	// Deprecated.
	Crash TokenOK = 5
	// Deprecated.
	StringOverflow TokenOK = 2
	// Deprecated.
	TokenOKValue TokenOK = 0
	// Deprecated.
	TokenOverflow TokenOK = 1
)

func (TokenOK) String added in v0.5.1

func (e TokenOK) String() string

type TokenQuestion added in v0.5.1

type TokenQuestion uint32
const (
	// Deprecated.
	TokenCapPi TokenQuestion = 66
	// Deprecated.
	TokenCenterDot TokenQuestion = 78
	// Deprecated.
	TokenColon TokenQuestion = 68
	// Deprecated.
	TokenDollar TokenQuestion = 70
	// Deprecated.
	TokenEllipsis TokenQuestion = 77
	// Deprecated.
	TokenFraction TokenQuestion = 72
	// Deprecated.
	TokenHash TokenQuestion = 69
	// Deprecated.
	TokenInfinity TokenQuestion = 67
	// Deprecated.
	TokenIntegral TokenQuestion = 64
	// Deprecated.
	TokenIntlCurrency TokenQuestion = 73
	// Deprecated.
	TokenLeftSingGuillemet TokenQuestion = 74
	// Deprecated.
	TokenMicro TokenQuestion = 65
	// Deprecated.
	TokenNil TokenQuestion = 127
	// Deprecated.
	TokenNoBreakSpace TokenQuestion = 71
	// Deprecated.
	TokenPerThousand TokenQuestion = 76
	// Deprecated.
	TokenPi TokenQuestion = 61
	// Deprecated.
	TokenQuestionValue TokenQuestion = 60
	// Deprecated.
	TokenRightSingGuillemet TokenQuestion = 75
	// Deprecated.
	TokenRoot TokenQuestion = 62
	// Deprecated.
	TokenSigma TokenQuestion = 63
)

func (TokenQuestion) String added in v0.6.17

func (e TokenQuestion) String() string

type TokenUnknown added in v0.5.1

type TokenUnknown uint32
const (
	// Deprecated.
	TokenAlpha TokenUnknown = 4
	// Deprecated.
	TokenAltNum TokenUnknown = 11
	// Deprecated.
	TokenAltReal TokenUnknown = 13
	// Deprecated.
	TokenEscape TokenUnknown = 10
	// Deprecated.
	TokenLeftBracket TokenUnknown = 18
	// Deprecated.
	TokenLeftComment TokenUnknown = 7
	// Deprecated.
	TokenLeftLit TokenUnknown = 2
	// Deprecated.
	TokenLeftParen TokenUnknown = 16
	// Deprecated.
	TokenLiteral TokenUnknown = 9
	// Deprecated.
	TokenNewLine TokenUnknown = 6
	// Deprecated.
	TokenNumeric TokenUnknown = 5
	// Deprecated.
	TokenRealNum TokenUnknown = 12
	// Deprecated.
	TokenReserve1 TokenUnknown = 14
	// Deprecated.
	TokenReserve2 TokenUnknown = 15
	// Deprecated.
	TokenRightBracket TokenUnknown = 19
	// Deprecated.
	TokenRightComment TokenUnknown = 8
	// Deprecated.
	TokenRightLit TokenUnknown = 3
	// Deprecated.
	TokenRightParen TokenUnknown = 17
	// Deprecated.
	TokenUnknownValue TokenUnknown = 0
	// Deprecated.
	TokenWhite TokenUnknown = 1
)

func (TokenUnknown) String added in v0.6.17

func (e TokenUnknown) String() string

type Tsm

type Tsm int32
const (
	TsmAlreadyRegisteredErr            Tsm = -2503
	TsmCantChangeForcedClassStateErr   Tsm = -2530
	TsmCantOpenComponentErr            Tsm = -2509
	TsmComponentAlreadyOpenErr         Tsm = -2515
	TsmComponentNoErr                  Tsm = 0
	TsmComponentPropertyNotFoundErr    Tsm = -2532
	TsmComponentPropertyUnsupportedErr Tsm = -2531
	TsmDefaultIsNotInputMethodErr      Tsm = -2524
	TsmDocNotActiveErr                 Tsm = -2507
	TsmDocPropertyBufferTooSmallErr    Tsm = -2529
	TsmDocPropertyNotFoundErr          Tsm = -2528
	TsmDocumentOpenErr                 Tsm = -2511
	TsmInputMethodIsOldErr             Tsm = -2516
	TsmInputMethodNotFoundErr          Tsm = -2501
	TsmInputModeChangeFailedErr        Tsm = -2533
	TsmInvalidContext                  Tsm = -2520
	TsmInvalidDocIDErr                 Tsm = -2505
	TsmNeverRegisteredErr              Tsm = -2504
	TsmNoHandler                       Tsm = -2521
	TsmNoMoreTokens                    Tsm = -2522
	TsmNoOpenTSErr                     Tsm = -2508
	TsmNoStem                          Tsm = -2523
	TsmNotAnAppErr                     Tsm = -2502
	TsmScriptHasNoIMErr                Tsm = -2517
	TsmTSHasNoMenuErr                  Tsm = -2513
	TsmTSMDocBusyErr                   Tsm = -2506
	TsmTSNotOpenErr                    Tsm = -2514
	TsmTextServiceNotFoundErr          Tsm = -2510
	TsmUnknownErr                      Tsm = -2519
	TsmUnsupScriptLanguageErr          Tsm = -2500
	TsmUnsupportedTypeErr              Tsm = -2518
	TsmUseInputWindowErr               Tsm = -2512
)

func (Tsm) String

func (e Tsm) String() string

type TypeAEList

type TypeAEList uint32
const (
	// TypeAEListValue: List of descriptors.
	TypeAEListValue TypeAEList = 'l'<<24 | 'i'<<16 | 's'<<8 | 't' // 'list'
	// TypeAERecord: List of keyword-specified descriptors.
	TypeAERecord TypeAEList = 'r'<<24 | 'e'<<16 | 'c'<<8 | 'o' // 'reco'
	// TypeAlias: Alias.
	TypeAlias TypeAEList = 'a'<<24 | 'l'<<16 | 'i'<<8 | 's' // 'alis'
	// TypeAppParameters: Process Manager launch parameters.
	TypeAppParameters TypeAEList = 'a'<<24 | 'p'<<16 | 'p'<<8 | 'a' // 'appa'
	// TypeApplSignature: Application signature.
	TypeApplSignature TypeAEList = 's'<<24 | 'i'<<16 | 'g'<<8 | 'n' // 'sign'
	// TypeAppleEvent: Apple event.
	TypeAppleEvent TypeAEList = 'a'<<24 | 'e'<<16 | 'v'<<8 | 't' // 'aevt'
	// TypeApplicationURL: For specifying an application by URL.
	TypeApplicationURL TypeAEList = 'a'<<24 | 'p'<<16 | 'r'<<8 | 'l' // 'aprl'
	TypeBookmarkData   TypeAEList = 'b'<<24 | 'm'<<16 | 'r'<<8 | 'k' // 'bmrk'
	// TypeEnumerated: Enumerated data.
	TypeEnumerated  TypeAEList = 'e'<<24 | 'n'<<16 | 'u'<<8 | 'm' // 'enum'
	TypeEventRecord TypeAEList = 'e'<<24 | 'v'<<16 | 'r'<<8 | 'c' // 'evrc'
	// TypeFSRef: File system reference.
	TypeFSRef TypeAEList = 'f'<<24 | 's'<<16 | 'r'<<8 | 'f' // 'fsrf'
	// TypeFalse: [FALSE] Boolean value.
	TypeFalse TypeAEList = 'f'<<24 | 'a'<<16 | 'l'<<8 | 's' // 'fals'
	// TypeFileURL: A file URL.
	TypeFileURL TypeAEList = 'f'<<24 | 'u'<<16 | 'r'<<8 | 'l' // 'furl'
	TypeFixed   TypeAEList = 'f'<<24 | 'i'<<16 | 'x'<<8 | 'd' // 'fixd'
	// TypeKeyword: Apple event keyword.
	TypeKeyword TypeAEList = 'k'<<24 | 'e'<<16 | 'y'<<8 | 'w' // 'keyw'
	// TypeNull: A null data storage pointer.
	TypeNull TypeAEList = 'n'<<24 | 'u'<<16 | 'l'<<8 | 'l' // 'null'
	// TypeProcessSerialNumber: A process serial number.
	TypeProcessSerialNumber TypeAEList = 'p'<<24 | 's'<<16 | 'n'<<8 | ' ' // 'psn '
	// TypeProperty: Apple event object property.
	TypeProperty    TypeAEList = 'p'<<24 | 'r'<<16 | 'o'<<8 | 'p' // 'prop'
	TypeQDRectangle TypeAEList = 'q'<<24 | 'd'<<16 | 'r'<<8 | 't' // 'qdrt'
	// TypeSectionH: Handle to a section record.
	TypeSectionH TypeAEList = 's'<<24 | 'e'<<16 | 'c'<<8 | 't' // 'sect'
	// TypeTrue: [TRUE] Boolean value.
	TypeTrue TypeAEList = 't'<<24 | 'r'<<16 | 'u'<<8 | 'e' // 'true'
	// TypeType: Four-character code for event class or event ID
	TypeType TypeAEList = 't'<<24 | 'y'<<16 | 'p'<<8 | 'e' // 'type'
	// TypeWildCard: Matches any type.
	TypeWildCard TypeAEList = '*'<<24 | '*'<<16 | '*'<<8 | '*' // '****'
)

func (TypeAEList) String added in v0.6.17

func (e TypeAEList) String() string

type TypeAEText added in v0.5.1

type TypeAEText uint32
const (
	TypeAETextValue TypeAEText = 't'<<24 | 'T'<<16 | 'X'<<8 | 'T' // 'tTXT'
	TypeArc         TypeAEText = 'c'<<24 | 'a'<<16 | 'r'<<8 | 'c' // 'carc'
	TypeBest        TypeAEText = 'b'<<24 | 'e'<<16 | 's'<<8 | 't' // 'best'
	TypeCell        TypeAEText = 'c'<<24 | 'c'<<16 | 'e'<<8 | 'l' // 'ccel'
	TypeClassInfo   TypeAEText = 'g'<<24 | 'c'<<16 | 'l'<<8 | 'i' // 'gcli'
	TypeColorTable  TypeAEText = 'c'<<24 | 'l'<<16 | 'r'<<8 | 't' // 'clrt'
	TypeColumn      TypeAEText = 'c'<<24 | 'c'<<16 | 'o'<<8 | 'l' // 'ccol'
	TypeDashStyle   TypeAEText = 't'<<24 | 'd'<<16 | 'a'<<8 | 's' // 'tdas'
	TypeData        TypeAEText = 't'<<24 | 'd'<<16 | 't'<<8 | 'a' // 'tdta'
	TypeDrawingArea TypeAEText = 'c'<<24 | 'd'<<16 | 'r'<<8 | 'w' // 'cdrw'
	TypeEPS         TypeAEText = 'E'<<24 | 'P'<<16 | 'S'<<8 | ' ' // 'EPS '
	TypeElemInfo    TypeAEText = 'e'<<24 | 'l'<<16 | 'i'<<8 | 'n' // 'elin'
	TypeEnumeration TypeAEText = 'e'<<24 | 'n'<<16 | 'u'<<8 | 'm' // 'enum'
	TypeEventInfo   TypeAEText = 'e'<<24 | 'v'<<16 | 'i'<<8 | 'n' // 'evin'
)

func (TypeAEText) String added in v0.6.17

func (e TypeAEText) String() string

type TypeApplicationBundleI added in v0.5.1

type TypeApplicationBundleI uint32
const (
	// TypeApplicationBundleID: Indicates a descriptor containing UTF-8 characters that specify the bundle ID of an application.
	TypeApplicationBundleID TypeApplicationBundleI = 'b'<<24 | 'u'<<16 | 'n'<<8 | 'd' // 'bund'
)

func (TypeApplicationBundleI) String added in v0.5.1

func (e TypeApplicationBundleI) String() string

type TypeAudit added in v0.5.1

type TypeAudit uint32
const (
	TypeAuditToken TypeAudit = 't'<<24 | 'o'<<16 | 'k'<<8 | 'n' // 'tokn'
)

func (TypeAudit) String added in v0.5.1

func (e TypeAudit) String() string

type TypeBoolean

type TypeBoolean uint32
const (
	// TypeBooleanValue: Boolean value—single byte with value 0 or 1.
	TypeBooleanValue TypeBoolean = 'b'<<24 | 'o'<<16 | 'o'<<8 | 'l' // 'bool'
	// TypeChar: # Discussion
	TypeChar TypeBoolean = 'T'<<24 | 'E'<<16 | 'X'<<8 | 'T' // 'TEXT'
)

func (TypeBoolean) String added in v0.6.17

func (e TypeBoolean) String() string

type TypeCF

type TypeCF uint32
const (
	TypeCFArrayRef                   TypeCF = 'c'<<24 | 'f'<<16 | 'a'<<8 | 'r' // 'cfar'
	TypeCFAttributedStringRef        TypeCF = 'c'<<24 | 'f'<<16 | 'a'<<8 | 's' // 'cfas'
	TypeCFBooleanRef                 TypeCF = 'c'<<24 | 'f'<<16 | 't'<<8 | 'f' // 'cftf'
	TypeCFDictionaryRef              TypeCF = 'c'<<24 | 'f'<<16 | 'd'<<8 | 'c' // 'cfdc'
	TypeCFMutableArrayRef            TypeCF = 'c'<<24 | 'f'<<16 | 'm'<<8 | 'a' // 'cfma'
	TypeCFMutableAttributedStringRef TypeCF = 'c'<<24 | 'f'<<16 | 'a'<<8 | 'a' // 'cfaa'
	TypeCFMutableDictionaryRef       TypeCF = 'c'<<24 | 'f'<<16 | 'm'<<8 | 'd' // 'cfmd'
	TypeCFMutableStringRef           TypeCF = 'c'<<24 | 'f'<<16 | 'm'<<8 | 's' // 'cfms'
	TypeCFNumberRef                  TypeCF = 'c'<<24 | 'f'<<16 | 'n'<<8 | 'b' // 'cfnb'
	TypeCFStringRef                  TypeCF = 'c'<<24 | 'f'<<16 | 's'<<8 | 't' // 'cfst'
	TypeCFTypeRef                    TypeCF = 'c'<<24 | 'f'<<16 | 't'<<8 | 'y' // 'cfty'
)

func (TypeCF) String

func (e TypeCF) String() string

type TypeFinderWindow

type TypeFinderWindow uint32
const (
	TypeCFAbsoluteTime    TypeFinderWindow = 'c'<<24 | 'f'<<16 | 'a'<<8 | 't' // 'cfat'
	TypeFinderWindowValue TypeFinderWindow = 'f'<<24 | 'w'<<16 | 'i'<<8 | 'n' // 'fwin'
	TypeFixedPoint        TypeFinderWindow = 'f'<<24 | 'p'<<16 | 'n'<<8 | 't' // 'fpnt'
	TypeFixedRectangle    TypeFinderWindow = 'f'<<24 | 'r'<<16 | 'c'<<8 | 't' // 'frct'
	TypeGraphicLine       TypeFinderWindow = 'g'<<24 | 'l'<<16 | 'i'<<8 | 'n' // 'glin'
	TypeGraphicText       TypeFinderWindow = 'c'<<24 | 'g'<<16 | 't'<<8 | 'x' // 'cgtx'
	TypeGroupedGraphic    TypeFinderWindow = 'c'<<24 | 'p'<<16 | 'i'<<8 | 'c' // 'cpic'
	TypeISO8601DateTime   TypeFinderWindow = 'i'<<24 | 's'<<16 | 'o'<<8 | 't' // 'isot'
	TypeInsertionLoc      TypeFinderWindow = 'i'<<24 | 'n'<<16 | 's'<<8 | 'l' // 'insl'
	// TypeIntlText: For important information, see the Version Notes section of the typeUnicodeText enum.
	TypeIntlText           TypeFinderWindow = 'i'<<24 | 't'<<16 | 'x'<<8 | 't' // 'itxt'
	TypeIntlWritingCode    TypeFinderWindow = 'i'<<24 | 'n'<<16 | 't'<<8 | 'l' // 'intl'
	TypeLongDateTime       TypeFinderWindow = 'l'<<24 | 'd'<<16 | 't'<<8 | ' ' // 'ldt '
	TypeLongFixed          TypeFinderWindow = 'l'<<24 | 'f'<<16 | 'x'<<8 | 'd' // 'lfxd'
	TypeLongFixedPoint     TypeFinderWindow = 'l'<<24 | 'f'<<16 | 'p'<<8 | 't' // 'lfpt'
	TypeLongFixedRectangle TypeFinderWindow = 'l'<<24 | 'f'<<16 | 'r'<<8 | 'c' // 'lfrc'
	TypeLongPoint          TypeFinderWindow = 'l'<<24 | 'p'<<16 | 'n'<<8 | 't' // 'lpnt'
	TypeLongRectangle      TypeFinderWindow = 'l'<<24 | 'r'<<16 | 'c'<<8 | 't' // 'lrct'
	TypeMachineLoc         TypeFinderWindow = 'm'<<24 | 'L'<<16 | 'o'<<8 | 'c' // 'mLoc'
	TypeOval               TypeFinderWindow = 'c'<<24 | 'o'<<16 | 'v'<<8 | 'l' // 'covl'
	TypeParamInfo          TypeFinderWindow = 'p'<<24 | 'm'<<16 | 'i'<<8 | 'n' // 'pmin'
	TypePict               TypeFinderWindow = 'P'<<24 | 'I'<<16 | 'C'<<8 | 'T' // 'PICT'
)

func (TypeFinderWindow) String added in v0.6.17

func (e TypeFinderWindow) String() string

type TypeHI added in v0.5.1

type TypeHI uint32
const (
	TypeHIMenu   TypeHI = 'm'<<24 | 'o'<<16 | 'b'<<8 | 'j' // 'mobj'
	TypeHIWindow TypeHI = 'w'<<24 | 'o'<<16 | 'b'<<8 | 'j' // 'wobj'
)

func (TypeHI) String added in v0.5.1

func (e TypeHI) String() string

type TypeKernelProcessID added in v0.5.1

type TypeKernelProcessID uint32
const (
	// TypeKernelProcessIDValue: Indicates a descriptor containing a UNIX process ID.
	TypeKernelProcessIDValue TypeKernelProcessID = 'k'<<24 | 'p'<<16 | 'i'<<8 | 'd' // 'kpid'
	// TypeMachPort: Indicates a descriptor that specifies a Mach port.
	TypeMachPort TypeKernelProcessID = 'p'<<24 | 'o'<<16 | 'r'<<8 | 't' // 'port'
)

func (TypeKernelProcessID) String added in v0.6.17

func (e TypeKernelProcessID) String() string

type TypeMeters added in v0.5.1

type TypeMeters uint32
const (
	TypeCentimeters      TypeMeters = 'c'<<24 | 'm'<<16 | 't'<<8 | 'r' // 'cmtr'
	TypeCubicCentimeter  TypeMeters = 'c'<<24 | 'c'<<16 | 'm'<<8 | 't' // 'ccmt'
	TypeCubicFeet        TypeMeters = 'c'<<24 | 'f'<<16 | 'e'<<8 | 't' // 'cfet'
	TypeCubicInches      TypeMeters = 'c'<<24 | 'u'<<16 | 'i'<<8 | 'n' // 'cuin'
	TypeCubicMeters      TypeMeters = 'c'<<24 | 'm'<<16 | 'e'<<8 | 't' // 'cmet'
	TypeCubicYards       TypeMeters = 'c'<<24 | 'y'<<16 | 'r'<<8 | 'd' // 'cyrd'
	TypeDegreesC         TypeMeters = 'd'<<24 | 'e'<<16 | 'g'<<8 | 'c' // 'degc'
	TypeDegreesF         TypeMeters = 'd'<<24 | 'e'<<16 | 'g'<<8 | 'f' // 'degf'
	TypeDegreesK         TypeMeters = 'd'<<24 | 'e'<<16 | 'g'<<8 | 'k' // 'degk'
	TypeFeet             TypeMeters = 'f'<<24 | 'e'<<16 | 'e'<<8 | 't' // 'feet'
	TypeGallons          TypeMeters = 'g'<<24 | 'a'<<16 | 'l'<<8 | 'n' // 'galn'
	TypeGrams            TypeMeters = 'g'<<24 | 'r'<<16 | 'a'<<8 | 'm' // 'gram'
	TypeInches           TypeMeters = 'i'<<24 | 'n'<<16 | 'c'<<8 | 'h' // 'inch'
	TypeKilograms        TypeMeters = 'k'<<24 | 'g'<<16 | 'r'<<8 | 'm' // 'kgrm'
	TypeKilometers       TypeMeters = 'k'<<24 | 'm'<<16 | 't'<<8 | 'r' // 'kmtr'
	TypeLiters           TypeMeters = 'l'<<24 | 'i'<<16 | 't'<<8 | 'r' // 'litr'
	TypeMetersValue      TypeMeters = 'm'<<24 | 'e'<<16 | 't'<<8 | 'r' // 'metr'
	TypeMiles            TypeMeters = 'm'<<24 | 'i'<<16 | 'l'<<8 | 'e' // 'mile'
	TypeOunces           TypeMeters = 'o'<<24 | 'z'<<16 | 's'<<8 | ' ' // 'ozs '
	TypePounds           TypeMeters = 'l'<<24 | 'b'<<16 | 's'<<8 | ' ' // 'lbs '
	TypeQuarts           TypeMeters = 'q'<<24 | 'r'<<16 | 't'<<8 | 's' // 'qrts'
	TypeSquareFeet       TypeMeters = 's'<<24 | 'q'<<16 | 'f'<<8 | 't' // 'sqft'
	TypeSquareKilometers TypeMeters = 's'<<24 | 'q'<<16 | 'k'<<8 | 'm' // 'sqkm'
	TypeSquareMeters     TypeMeters = 's'<<24 | 'q'<<16 | 'r'<<8 | 'm' // 'sqrm'
	TypeSquareMiles      TypeMeters = 's'<<24 | 'q'<<16 | 'm'<<8 | 'i' // 'sqmi'
	TypeSquareYards      TypeMeters = 's'<<24 | 'q'<<16 | 'y'<<8 | 'd' // 'sqyd'
	TypeYards            TypeMeters = 'y'<<24 | 'a'<<16 | 'r'<<8 | 'd' // 'yard'
)

func (TypeMeters) String added in v0.6.17

func (e TypeMeters) String() string

type TypeObjectSpecifier

type TypeObjectSpecifier uint32
const (
	// TypeAbsoluteOrdinal: Specifies a descriptor whose data consists of one of the constants `kAEFirst`, `kAEMiddle`, `kAELast`, `kAEAny`, or `kAEAll`, which are described in AEDisposeToken.
	TypeAbsoluteOrdinal TypeObjectSpecifier = 'a'<<24 | 'b'<<16 | 's'<<8 | 'o' // 'abso'
	// TypeCompDescriptor: Specifies a comparison descriptor.
	TypeCompDescriptor TypeObjectSpecifier = 'c'<<24 | 'm'<<16 | 'p'<<8 | 'd' // 'cmpd'
	// TypeCurrentContainer: Specifies a container for an element that demarcates one boundary in a range.
	TypeCurrentContainer TypeObjectSpecifier = 'c'<<24 | 'c'<<16 | 'n'<<8 | 't' // 'ccnt'
	// TypeIndexDescriptor: Specifies a descriptor whose data indicates an indexed position within a range of values.
	TypeIndexDescriptor TypeObjectSpecifier = 'i'<<24 | 'n'<<16 | 'd'<<8 | 'e' // 'inde'
	// TypeLogicalDescriptor: Specifies a logical descriptor.
	TypeLogicalDescriptor TypeObjectSpecifier = 'l'<<24 | 'o'<<16 | 'g'<<8 | 'i' // 'logi'
	// TypeOSLTokenList: Specifies a descriptor whose data consists of a list of tokens.
	TypeOSLTokenList TypeObjectSpecifier = 'o'<<24 | 's'<<16 | 't'<<8 | 'l' // 'ostl'
	// TypeObjectBeingExamined: # Discussion
	TypeObjectBeingExamined TypeObjectSpecifier = 'e'<<24 | 'x'<<16 | 'm'<<8 | 'n' // 'exmn'
	// TypeObjectSpecifierValue: Specifies a descriptor used with the `keyAEContainer` keyword in a keyword-specified descriptor.
	TypeObjectSpecifierValue TypeObjectSpecifier = 'o'<<24 | 'b'<<16 | 'j'<<8 | ' ' // 'obj '
	// TypeRangeDescriptor: # Discussion
	TypeRangeDescriptor TypeObjectSpecifier = 'r'<<24 | 'a'<<16 | 'n'<<8 | 'g' // 'rang'
	// TypeRelativeDescriptor: Specifies a descriptor whose data consists of one of the constants `kAENext` or `kAEPrevious`, which are described in AEDisposeToken.
	TypeRelativeDescriptor TypeObjectSpecifier = 'r'<<24 | 'e'<<16 | 'l'<<8 | ' ' // 'rel '
	// TypeToken: Specifies a descriptor whose data storage pointer refers to a structure of type AEDisposeToken.
	TypeToken TypeObjectSpecifier = 't'<<24 | 'o'<<16 | 'k'<<8 | 'e' // 'toke'
)

func (TypeObjectSpecifier) String added in v0.6.17

func (e TypeObjectSpecifier) String() string

type TypePixelMap

type TypePixelMap uint32
const (
	TypePixMapMinus      TypePixelMap = 't'<<24 | 'p'<<16 | 'm'<<8 | 'm' // 'tpmm'
	TypePixelMapValue    TypePixelMap = 'c'<<24 | 'p'<<16 | 'i'<<8 | 'x' // 'cpix'
	TypePolygon          TypePixelMap = 'c'<<24 | 'p'<<16 | 'g'<<8 | 'n' // 'cpgn'
	TypePropInfo         TypePixelMap = 'p'<<24 | 'i'<<16 | 'n'<<8 | 'f' // 'pinf'
	TypePtr              TypePixelMap = 'p'<<24 | 't'<<16 | 'r'<<8 | ' ' // 'ptr '
	TypeQDPoint          TypePixelMap = 'Q'<<24 | 'D'<<16 | 'p'<<8 | 't' // 'QDpt'
	TypeQDRegion         TypePixelMap = 'Q'<<24 | 'r'<<16 | 'g'<<8 | 'n' // 'Qrgn'
	TypeRGB16            TypePixelMap = 't'<<24 | 'r'<<16 | '1'<<8 | '6' // 'tr16'
	TypeRGB96            TypePixelMap = 't'<<24 | 'r'<<16 | '9'<<8 | '6' // 'tr96'
	TypeRGBColor         TypePixelMap = 'c'<<24 | 'R'<<16 | 'G'<<8 | 'B' // 'cRGB'
	TypeRectangle        TypePixelMap = 'c'<<24 | 'r'<<16 | 'e'<<8 | 'c' // 'crec'
	TypeRotation         TypePixelMap = 't'<<24 | 'r'<<16 | 'o'<<8 | 't' // 'trot'
	TypeRoundedRectangle TypePixelMap = 'c'<<24 | 'r'<<16 | 'r'<<8 | 'c' // 'crrc'
	TypeRow              TypePixelMap = 'c'<<24 | 'r'<<16 | 'o'<<8 | 'w' // 'crow'
	TypeScrapStyles      TypePixelMap = 's'<<24 | 't'<<16 | 'y'<<8 | 'l' // 'styl'
	TypeScript           TypePixelMap = 's'<<24 | 'c'<<16 | 'p'<<8 | 't' // 'scpt'
	// TypeStyledText: # Discussion
	TypeStyledText TypePixelMap = 'S'<<24 | 'T'<<16 | 'X'<<8 | 'T' // 'STXT'
	TypeSuiteInfo  TypePixelMap = 's'<<24 | 'u'<<16 | 'i'<<8 | 'n' // 'suin'
	TypeTable      TypePixelMap = 'c'<<24 | 't'<<16 | 'b'<<8 | 'l' // 'ctbl'
	TypeTextStyles TypePixelMap = 't'<<24 | 's'<<16 | 't'<<8 | 'y' // 'tsty'
)

func (TypePixelMap) String added in v0.6.17

func (e TypePixelMap) String() string

type TypeReplyPort added in v0.5.1

type TypeReplyPort uint32
const (
	TypeReplyPortAttr TypeReplyPort = 'r'<<24 | 'e'<<16 | 'p'<<8 | 'p' // 'repp'
)

func (TypeReplyPort) String added in v0.5.1

func (e TypeReplyPort) String() string

type TypeSInt16

type TypeSInt16 uint32
const (
	// Type128BitFloatingPoint: 128-bit floating point value.
	Type128BitFloatingPoint TypeSInt16 = 'l'<<24 | 'd'<<16 | 'b'<<8 | 'l' // 'ldbl'
	// TypeDecimalStruct: Decimal.
	TypeDecimalStruct TypeSInt16 = 'd'<<24 | 'e'<<16 | 'c'<<8 | 'm' // 'decm'
	// TypeIEEE32BitFloatingPoint: 32-bit floating point value.
	TypeIEEE32BitFloatingPoint TypeSInt16 = 's'<<24 | 'i'<<16 | 'n'<<8 | 'g' // 'sing'
	// TypeIEEE64BitFloatingPoint: 64-bit floating point value.
	TypeIEEE64BitFloatingPoint TypeSInt16 = 'd'<<24 | 'o'<<16 | 'u'<<8 | 'b' // 'doub'
	// TypeSInt16Value: 16-bit signed integer.
	TypeSInt16Value TypeSInt16 = 's'<<24 | 'h'<<16 | 'o'<<8 | 'r' // 'shor'
	// TypeSInt32: 32-bit signed integer.
	TypeSInt32 TypeSInt16 = 'l'<<24 | 'o'<<16 | 'n'<<8 | 'g' // 'long'
	// TypeSInt64: 64-bit signed integer.
	TypeSInt64 TypeSInt16 = 'c'<<24 | 'o'<<16 | 'm'<<8 | 'p' // 'comp'
	// TypeUInt16: 16-bit unsigned integer.
	TypeUInt16 TypeSInt16 = 'u'<<24 | 's'<<16 | 'h'<<8 | 'r' // 'ushr'
	// TypeUInt32: 32-bit unsigned integer.
	TypeUInt32 TypeSInt16 = 'm'<<24 | 'a'<<16 | 'g'<<8 | 'n' // 'magn'
	// TypeUInt64: 64-bit unsigned integer.
	TypeUInt64 TypeSInt16 = 'u'<<24 | 'c'<<16 | 'o'<<8 | 'm' // 'ucom'
)

func (TypeSInt16) String added in v0.6.17

func (e TypeSInt16) String() string

type TypeStyledUnicodeText

type TypeStyledUnicodeText uint32
const (
	// TypeCString: C string—Mac OS Roman characters followed by a NULL byte.
	TypeCString TypeStyledUnicodeText = 'c'<<24 | 's'<<16 | 't'<<8 | 'r' // 'cstr'
	// TypeEncodedString: Styled Unicode text.
	TypeEncodedString TypeStyledUnicodeText = 'e'<<24 | 'n'<<16 | 'c'<<8 | 's' // 'encs'
	// TypePString: Pascal string—unsigned length byte followed by Mac OS Roman characters.
	TypePString TypeStyledUnicodeText = 'p'<<24 | 's'<<16 | 't'<<8 | 'r' // 'pstr'
	// TypeStyledUnicodeTextValue: Styled Unicode text.
	TypeStyledUnicodeTextValue TypeStyledUnicodeText = 's'<<24 | 'u'<<16 | 't'<<8 | 'x' // 'sutx'
	// TypeUnicodeText: Unicode text.
	TypeUnicodeText TypeStyledUnicodeText = 'u'<<24 | 't'<<16 | 'x'<<8 | 't' // 'utxt'
)

func (TypeStyledUnicodeText) String added in v0.6.17

func (e TypeStyledUnicodeText) String() string

type TypeTIFF added in v0.5.1

type TypeTIFF uint32
const (
	TypeGIF       TypeTIFF = 'G'<<24 | 'I'<<16 | 'F'<<8 | 'f' // 'GIFf'
	TypeJPEG      TypeTIFF = 'J'<<24 | 'P'<<16 | 'E'<<8 | 'G' // 'JPEG'
	TypeTIFFValue TypeTIFF = 'T'<<24 | 'I'<<16 | 'F'<<8 | 'F' // 'TIFF'
	TypeVersion   TypeTIFF = 'v'<<24 | 'e'<<16 | 'r'<<8 | 's' // 'vers'
)

func (TypeTIFF) String added in v0.6.17

func (e TypeTIFF) String() string

type TypeUT added in v0.5.1

type TypeUT uint32
const (
	// TypeUTF16ExternalRepresentation: # Discussion
	TypeUTF16ExternalRepresentation TypeUT = 'u'<<24 | 't'<<16 | '1'<<8 | '6' // 'ut16'
	// TypeUTF8Text: 8-bit Unicode (UTF-8 encoding).
	TypeUTF8Text TypeUT = 'u'<<24 | 't'<<16 | 'f'<<8 | '8' // 'utf8'
)

func (TypeUT) String added in v0.5.1

func (e TypeUT) String() string

type TypeWhoseDescriptor

type TypeWhoseDescriptor uint32
const (
	// FormWhose: # Discussion
	FormWhose                TypeWhoseDescriptor = 'w'<<24 | 'h'<<16 | 'o'<<8 | 's' // 'whos'
	KeyAEIndex               TypeWhoseDescriptor = 'k'<<24 | 'i'<<16 | 'd'<<8 | 'x' // 'kidx'
	KeyAETest                TypeWhoseDescriptor = 'k'<<24 | 't'<<16 | 's'<<8 | 't' // 'ktst'
	KeyAEWhoseRangeStart     TypeWhoseDescriptor = 'w'<<24 | 's'<<16 | 't'<<8 | 'r' // 'wstr'
	KeyAEWhoseRangeStop      TypeWhoseDescriptor = 'w'<<24 | 's'<<16 | 't'<<8 | 'p' // 'wstp'
	TypeWhoseDescriptorValue TypeWhoseDescriptor = 'w'<<24 | 'h'<<16 | 'o'<<8 | 's' // 'whos'
	TypeWhoseRange           TypeWhoseDescriptor = 'w'<<24 | 'r'<<16 | 'n'<<8 | 'g' // 'wrng'
)

func (TypeWhoseDescriptor) String

func (e TypeWhoseDescriptor) String() string

type UCCharPropertyType

type UCCharPropertyType = int32

UCCharPropertyType is specify property types for a Unicode charater.

See: https://developer.apple.com/documentation/coreservices/uccharpropertytype

type UCCharPropertyValue

type UCCharPropertyValue = uint32

UCCharPropertyValue is specify a propery value for a Unicode character.

See: https://developer.apple.com/documentation/coreservices/uccharpropertyvalue

type UCCollateOptions

type UCCollateOptions = uint32

UCCollateOptions is specifies options for Unicode string comparison.

See: https://developer.apple.com/documentation/coreservices/uccollateoptions

type UCCollationValue

type UCCollationValue = uint32

UCCollationValue is specifies a Unicode collation key.

See: https://developer.apple.com/documentation/coreservices/uccollationvalue

type UCKeyCharSeq

type UCKeyCharSeq = uint16

UCKeyCharSeq is specifies the output of a dead-key state in a `'uchr'` resource.

See: https://developer.apple.com/documentation/coreservices/uckeycharseq

type UCKeyLayoutFeatureInfo

type UCKeyLayoutFeatureInfo struct {
	// contains filtered or unexported fields
}

UCKeyLayoutFeatureInfo - Specifies the longest possible output string to be produced by the current `'uchr'` resource.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/uckeylayoutfeatureinfo

func (*UCKeyLayoutFeatureInfo) KeyLayoutFeatureInfoFormat

func (s *UCKeyLayoutFeatureInfo) KeyLayoutFeatureInfoFormat() uint16

KeyLayoutFeatureInfoFormat returns the KeyLayoutFeatureInfoFormat field from the record's packed storage.

func (*UCKeyLayoutFeatureInfo) MaxOutputStringLength

func (s *UCKeyLayoutFeatureInfo) MaxOutputStringLength() uint32

MaxOutputStringLength returns the MaxOutputStringLength field from the record's packed storage.

func (*UCKeyLayoutFeatureInfo) Reserved

func (s *UCKeyLayoutFeatureInfo) Reserved() uint16

Reserved returns the Reserved field from the record's packed storage.

func (*UCKeyLayoutFeatureInfo) SetKeyLayoutFeatureInfoFormat added in v0.6.17

func (s *UCKeyLayoutFeatureInfo) SetKeyLayoutFeatureInfoFormat(v uint16)

SetKeyLayoutFeatureInfoFormat updates the KeyLayoutFeatureInfoFormat field in the record's packed storage.

func (*UCKeyLayoutFeatureInfo) SetMaxOutputStringLength added in v0.6.17

func (s *UCKeyLayoutFeatureInfo) SetMaxOutputStringLength(v uint32)

SetMaxOutputStringLength updates the MaxOutputStringLength field in the record's packed storage.

func (*UCKeyLayoutFeatureInfo) SetReserved added in v0.6.17

func (s *UCKeyLayoutFeatureInfo) SetReserved(v uint16)

SetReserved updates the Reserved field in the record's packed storage.

type UCKeyModifiersToTableNum

type UCKeyModifiersToTableNum struct {
	// contains filtered or unexported fields
}

UCKeyModifiersToTableNum - Maps a modifier key combination to a particular key-code-to-character table number in a `'uchr'` resource.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/uckeymodifierstotablenum

func (*UCKeyModifiersToTableNum) DefaultTableNum

func (s *UCKeyModifiersToTableNum) DefaultTableNum() uint16

DefaultTableNum returns the DefaultTableNum field from the record's packed storage.

func (*UCKeyModifiersToTableNum) KeyModifiersToTableNumFormat

func (s *UCKeyModifiersToTableNum) KeyModifiersToTableNumFormat() uint16

KeyModifiersToTableNumFormat returns the KeyModifiersToTableNumFormat field from the record's packed storage.

func (*UCKeyModifiersToTableNum) ModifiersCount

func (s *UCKeyModifiersToTableNum) ModifiersCount() uint32

ModifiersCount returns the ModifiersCount field from the record's packed storage.

func (*UCKeyModifiersToTableNum) SetDefaultTableNum added in v0.6.17

func (s *UCKeyModifiersToTableNum) SetDefaultTableNum(v uint16)

SetDefaultTableNum updates the DefaultTableNum field in the record's packed storage.

func (*UCKeyModifiersToTableNum) SetKeyModifiersToTableNumFormat added in v0.6.17

func (s *UCKeyModifiersToTableNum) SetKeyModifiersToTableNumFormat(v uint16)

SetKeyModifiersToTableNumFormat updates the KeyModifiersToTableNumFormat field in the record's packed storage.

func (*UCKeyModifiersToTableNum) SetModifiersCount added in v0.6.17

func (s *UCKeyModifiersToTableNum) SetModifiersCount(v uint32)

SetModifiersCount updates the ModifiersCount field in the record's packed storage.

func (*UCKeyModifiersToTableNum) SetTableNum added in v0.6.17

func (s *UCKeyModifiersToTableNum) SetTableNum(v [1]uint8)

SetTableNum updates the TableNum field in the record's packed storage.

func (*UCKeyModifiersToTableNum) TableNum

func (s *UCKeyModifiersToTableNum) TableNum() [1]uint8

TableNum returns the TableNum field from the record's packed storage.

type UCKeyOutput

type UCKeyOutput = uint16

UCKeyOutput is specifies values in key-code-to-character tables in a `'uchr'` resource.

See: https://developer.apple.com/documentation/coreservices/uckeyoutput

type UCKeySequenceDataIndex

type UCKeySequenceDataIndex struct {
	KeySequenceDataIndexFormat uint16    // An unsigned 16-bit integer identifying the format of the [UCKeySequenceDataIndex] structure. Set to `kUCKeySequenceDataIndexFormat`.
	CharSequenceCount          uint16    // An unsigned 16-bit integer specifying the number of Unicode character sequences that follow the end of the [UCKeySequenceDataIndex] structure.
	CharSequenceOffsets        [1]uint16 // An array of offsets from the beginning of the [UCKeySequenceDataIndex] structure to the Unicode character sequences that follow it. Because a given offset indicates both the beginning of a new character sequence and the end of the sequence that precedes it, the length of each sequence is determined by the difference between the offset to that sequence and the value of the next offset in the array. The array contains one more entry than the number of character sequences; the final entry is the offset to the end of the final character sequence.

}

UCKeySequenceDataIndex - Contains offsets to a list of character sequences for a `'uchr'` resource.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/uckeysequencedataindex

type UCKeyStateEntryRange

type UCKeyStateEntryRange struct {
	CurStateStart   uint16       // An unsigned 16-bit integer specifying the beginning of a given dead-key state range.
	CurStateRange   uint8        // An unsigned 8-bit integer specifying the number of entries in a given dead-key state range.
	DeltaMultiplier uint8        // An unsigned 8-bit integer.
	CharData        UCKeyCharSeq // A value of type [UCKeyCharSeq]. This base character value is used to determine the actual Unicode character(s) produced when a given dead-key state terminates.
	NextState       uint16       // An unsigned 16-bit integer. This base dead-key state value is used to determine the following dead-key state, if any.

}

UCKeyStateEntryRange - Maps from a dead-key state to either the resultant Unicode character(s) or the new dead key state produced when the current state is terminated by a given character key for a `'uchr'` resource.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/uckeystateentryrange

type UCKeyStateEntryTerminal

type UCKeyStateEntryTerminal struct {
	CurState uint16       // An unsigned 16-bit integer specifying the current dead-key state.
	CharData UCKeyCharSeq // A value of type [UCKeyCharSeq] specifying the Unicode character(s) produced when a given character key is pressed.

}

UCKeyStateEntryTerminal - Maps from a dead-key state to the Unicode character(s) produced when that state is terminated by a given character key for a `'uchr'` resource.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/uckeystateentryterminal

type UCKeyStateRecord

type UCKeyStateRecord struct {
	// contains filtered or unexported fields
}

UCKeyStateRecord - Determines dead-key state transitions in a `'uchr'` resource.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/uckeystaterecord

func (*UCKeyStateRecord) SetStateEntryCount added in v0.6.17

func (s *UCKeyStateRecord) SetStateEntryCount(v uint16)

SetStateEntryCount updates the StateEntryCount field in the record's packed storage.

func (*UCKeyStateRecord) SetStateEntryData added in v0.6.17

func (s *UCKeyStateRecord) SetStateEntryData(v [1]uint32)

SetStateEntryData updates the StateEntryData field in the record's packed storage.

func (*UCKeyStateRecord) SetStateEntryFormat added in v0.6.17

func (s *UCKeyStateRecord) SetStateEntryFormat(v uint16)

SetStateEntryFormat updates the StateEntryFormat field in the record's packed storage.

func (*UCKeyStateRecord) SetStateZeroCharData added in v0.6.17

func (s *UCKeyStateRecord) SetStateZeroCharData(v UCKeyCharSeq)

SetStateZeroCharData updates the StateZeroCharData field in the record's packed storage.

func (*UCKeyStateRecord) SetStateZeroNextState added in v0.6.17

func (s *UCKeyStateRecord) SetStateZeroNextState(v uint16)

SetStateZeroNextState updates the StateZeroNextState field in the record's packed storage.

func (*UCKeyStateRecord) StateEntryCount

func (s *UCKeyStateRecord) StateEntryCount() uint16

StateEntryCount returns the StateEntryCount field from the record's packed storage.

func (*UCKeyStateRecord) StateEntryData

func (s *UCKeyStateRecord) StateEntryData() [1]uint32

StateEntryData returns the StateEntryData field from the record's packed storage.

func (*UCKeyStateRecord) StateEntryFormat

func (s *UCKeyStateRecord) StateEntryFormat() uint16

StateEntryFormat returns the StateEntryFormat field from the record's packed storage.

func (*UCKeyStateRecord) StateZeroCharData

func (s *UCKeyStateRecord) StateZeroCharData() UCKeyCharSeq

StateZeroCharData returns the StateZeroCharData field from the record's packed storage.

func (*UCKeyStateRecord) StateZeroNextState

func (s *UCKeyStateRecord) StateZeroNextState() uint16

StateZeroNextState returns the StateZeroNextState field from the record's packed storage.

type UCKeyStateRecordsIndex

type UCKeyStateRecordsIndex struct {
	// contains filtered or unexported fields
}

UCKeyStateRecordsIndex - Provides a count of, and offsets to, dead-key state records in a `'uchr'` resource.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/uckeystaterecordsindex

func (*UCKeyStateRecordsIndex) KeyStateRecordCount

func (s *UCKeyStateRecordsIndex) KeyStateRecordCount() uint16

KeyStateRecordCount returns the KeyStateRecordCount field from the record's packed storage.

func (*UCKeyStateRecordsIndex) KeyStateRecordOffsets

func (s *UCKeyStateRecordsIndex) KeyStateRecordOffsets() [1]uint32

KeyStateRecordOffsets returns the KeyStateRecordOffsets field from the record's packed storage.

func (*UCKeyStateRecordsIndex) KeyStateRecordsIndexFormat

func (s *UCKeyStateRecordsIndex) KeyStateRecordsIndexFormat() uint16

KeyStateRecordsIndexFormat returns the KeyStateRecordsIndexFormat field from the record's packed storage.

func (*UCKeyStateRecordsIndex) SetKeyStateRecordCount added in v0.6.17

func (s *UCKeyStateRecordsIndex) SetKeyStateRecordCount(v uint16)

SetKeyStateRecordCount updates the KeyStateRecordCount field in the record's packed storage.

func (*UCKeyStateRecordsIndex) SetKeyStateRecordOffsets added in v0.6.17

func (s *UCKeyStateRecordsIndex) SetKeyStateRecordOffsets(v [1]uint32)

SetKeyStateRecordOffsets updates the KeyStateRecordOffsets field in the record's packed storage.

func (*UCKeyStateRecordsIndex) SetKeyStateRecordsIndexFormat added in v0.6.17

func (s *UCKeyStateRecordsIndex) SetKeyStateRecordsIndexFormat(v uint16)

SetKeyStateRecordsIndexFormat updates the KeyStateRecordsIndexFormat field in the record's packed storage.

type UCKeyStateTerminators

type UCKeyStateTerminators struct {
	KeyStateTerminatorsFormat uint16          // An unsigned 16-bit integer identifying the format of the [UCKeyStateTerminators] structure. Set to `kUCKeyStateTerminatorsFormat`.
	KeyStateTerminatorCount   uint16          // An unsigned 16-bit integer specifying the number of default dead-key state terminators contained in the `keyStateTerminators[]` array.
	KeyStateTerminators       [1]UCKeyCharSeq // An array of default dead-key state terminators, described as values of type [UCKeyCharSeq](<https://developer.apple.com/documentation/coreservices/uckeycharseq>); the value `keyStateTerminators[0]` is the terminator for state 1, and so on.

}

UCKeyStateTerminators - Lists the default terminators for each dead-key state handled by a `'uchr'` resource.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/uckeystateterminators

type UCKeyToCharTableIndex

type UCKeyToCharTableIndex struct {
	// contains filtered or unexported fields
}

UCKeyToCharTableIndex - Provides a count of, and offsets to, key-code-to-character tables in a `'uchr'` resource.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/uckeytochartableindex

func (*UCKeyToCharTableIndex) KeyToCharTableCount

func (s *UCKeyToCharTableIndex) KeyToCharTableCount() uint32

KeyToCharTableCount returns the KeyToCharTableCount field from the record's packed storage.

func (*UCKeyToCharTableIndex) KeyToCharTableIndexFormat

func (s *UCKeyToCharTableIndex) KeyToCharTableIndexFormat() uint16

KeyToCharTableIndexFormat returns the KeyToCharTableIndexFormat field from the record's packed storage.

func (*UCKeyToCharTableIndex) KeyToCharTableOffsets

func (s *UCKeyToCharTableIndex) KeyToCharTableOffsets() [1]uint32

KeyToCharTableOffsets returns the KeyToCharTableOffsets field from the record's packed storage.

func (*UCKeyToCharTableIndex) KeyToCharTableSize

func (s *UCKeyToCharTableIndex) KeyToCharTableSize() uint16

KeyToCharTableSize returns the KeyToCharTableSize field from the record's packed storage.

func (*UCKeyToCharTableIndex) SetKeyToCharTableCount added in v0.6.17

func (s *UCKeyToCharTableIndex) SetKeyToCharTableCount(v uint32)

SetKeyToCharTableCount updates the KeyToCharTableCount field in the record's packed storage.

func (*UCKeyToCharTableIndex) SetKeyToCharTableIndexFormat added in v0.6.17

func (s *UCKeyToCharTableIndex) SetKeyToCharTableIndexFormat(v uint16)

SetKeyToCharTableIndexFormat updates the KeyToCharTableIndexFormat field in the record's packed storage.

func (*UCKeyToCharTableIndex) SetKeyToCharTableOffsets added in v0.6.17

func (s *UCKeyToCharTableIndex) SetKeyToCharTableOffsets(v [1]uint32)

SetKeyToCharTableOffsets updates the KeyToCharTableOffsets field in the record's packed storage.

func (*UCKeyToCharTableIndex) SetKeyToCharTableSize added in v0.6.17

func (s *UCKeyToCharTableIndex) SetKeyToCharTableSize(v uint16)

SetKeyToCharTableSize updates the KeyToCharTableSize field in the record's packed storage.

type UCKeyboardLayout

type UCKeyboardLayout struct {
	// contains filtered or unexported fields
}

UCKeyboardLayout - Provides header data for a `'uchr'` resource.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/uckeyboardlayout

func (*UCKeyboardLayout) KeyLayoutDataVersion

func (s *UCKeyboardLayout) KeyLayoutDataVersion() uint16

KeyLayoutDataVersion returns the KeyLayoutDataVersion field from the record's packed storage.

func (*UCKeyboardLayout) KeyLayoutFeatureInfoOffset

func (s *UCKeyboardLayout) KeyLayoutFeatureInfoOffset() uint32

KeyLayoutFeatureInfoOffset returns the KeyLayoutFeatureInfoOffset field from the record's packed storage.

func (*UCKeyboardLayout) KeyLayoutHeaderFormat

func (s *UCKeyboardLayout) KeyLayoutHeaderFormat() uint16

KeyLayoutHeaderFormat returns the KeyLayoutHeaderFormat field from the record's packed storage.

func (*UCKeyboardLayout) KeyboardTypeCount

func (s *UCKeyboardLayout) KeyboardTypeCount() uint32

KeyboardTypeCount returns the KeyboardTypeCount field from the record's packed storage.

func (*UCKeyboardLayout) KeyboardTypeList

func (s *UCKeyboardLayout) KeyboardTypeList() [1]UCKeyboardTypeHeader

KeyboardTypeList returns the KeyboardTypeList field from the record's packed storage.

func (*UCKeyboardLayout) SetKeyLayoutDataVersion added in v0.6.17

func (s *UCKeyboardLayout) SetKeyLayoutDataVersion(v uint16)

SetKeyLayoutDataVersion updates the KeyLayoutDataVersion field in the record's packed storage.

func (*UCKeyboardLayout) SetKeyLayoutFeatureInfoOffset added in v0.6.17

func (s *UCKeyboardLayout) SetKeyLayoutFeatureInfoOffset(v uint32)

SetKeyLayoutFeatureInfoOffset updates the KeyLayoutFeatureInfoOffset field in the record's packed storage.

func (*UCKeyboardLayout) SetKeyLayoutHeaderFormat added in v0.6.17

func (s *UCKeyboardLayout) SetKeyLayoutHeaderFormat(v uint16)

SetKeyLayoutHeaderFormat updates the KeyLayoutHeaderFormat field in the record's packed storage.

func (*UCKeyboardLayout) SetKeyboardTypeCount added in v0.6.17

func (s *UCKeyboardLayout) SetKeyboardTypeCount(v uint32)

SetKeyboardTypeCount updates the KeyboardTypeCount field in the record's packed storage.

func (*UCKeyboardLayout) SetKeyboardTypeList added in v0.6.17

func (s *UCKeyboardLayout) SetKeyboardTypeList(v [1]UCKeyboardTypeHeader)

SetKeyboardTypeList updates the KeyboardTypeList field in the record's packed storage.

type UCKeyboardTypeHeader

type UCKeyboardTypeHeader struct {
	// contains filtered or unexported fields
}

UCKeyboardTypeHeader - Specifies a range of physical keyboard types in a `'uchr'` resource.

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/uckeyboardtypeheader

func (*UCKeyboardTypeHeader) KeyModifiersToTableNumOffset

func (s *UCKeyboardTypeHeader) KeyModifiersToTableNumOffset() uint32

KeyModifiersToTableNumOffset returns the KeyModifiersToTableNumOffset field from the record's packed storage.

func (*UCKeyboardTypeHeader) KeySequenceDataIndexOffset

func (s *UCKeyboardTypeHeader) KeySequenceDataIndexOffset() uint32

KeySequenceDataIndexOffset returns the KeySequenceDataIndexOffset field from the record's packed storage.

func (*UCKeyboardTypeHeader) KeyStateRecordsIndexOffset

func (s *UCKeyboardTypeHeader) KeyStateRecordsIndexOffset() uint32

KeyStateRecordsIndexOffset returns the KeyStateRecordsIndexOffset field from the record's packed storage.

func (*UCKeyboardTypeHeader) KeyStateTerminatorsOffset

func (s *UCKeyboardTypeHeader) KeyStateTerminatorsOffset() uint32

KeyStateTerminatorsOffset returns the KeyStateTerminatorsOffset field from the record's packed storage.

func (*UCKeyboardTypeHeader) KeyToCharTableIndexOffset

func (s *UCKeyboardTypeHeader) KeyToCharTableIndexOffset() uint32

KeyToCharTableIndexOffset returns the KeyToCharTableIndexOffset field from the record's packed storage.

func (*UCKeyboardTypeHeader) KeyboardTypeFirst

func (s *UCKeyboardTypeHeader) KeyboardTypeFirst() uint32

KeyboardTypeFirst returns the KeyboardTypeFirst field from the record's packed storage.

func (*UCKeyboardTypeHeader) KeyboardTypeLast

func (s *UCKeyboardTypeHeader) KeyboardTypeLast() uint32

KeyboardTypeLast returns the KeyboardTypeLast field from the record's packed storage.

func (*UCKeyboardTypeHeader) SetKeyModifiersToTableNumOffset added in v0.6.17

func (s *UCKeyboardTypeHeader) SetKeyModifiersToTableNumOffset(v uint32)

SetKeyModifiersToTableNumOffset updates the KeyModifiersToTableNumOffset field in the record's packed storage.

func (*UCKeyboardTypeHeader) SetKeySequenceDataIndexOffset added in v0.6.17

func (s *UCKeyboardTypeHeader) SetKeySequenceDataIndexOffset(v uint32)

SetKeySequenceDataIndexOffset updates the KeySequenceDataIndexOffset field in the record's packed storage.

func (*UCKeyboardTypeHeader) SetKeyStateRecordsIndexOffset added in v0.6.17

func (s *UCKeyboardTypeHeader) SetKeyStateRecordsIndexOffset(v uint32)

SetKeyStateRecordsIndexOffset updates the KeyStateRecordsIndexOffset field in the record's packed storage.

func (*UCKeyboardTypeHeader) SetKeyStateTerminatorsOffset added in v0.6.17

func (s *UCKeyboardTypeHeader) SetKeyStateTerminatorsOffset(v uint32)

SetKeyStateTerminatorsOffset updates the KeyStateTerminatorsOffset field in the record's packed storage.

func (*UCKeyboardTypeHeader) SetKeyToCharTableIndexOffset added in v0.6.17

func (s *UCKeyboardTypeHeader) SetKeyToCharTableIndexOffset(v uint32)

SetKeyToCharTableIndexOffset updates the KeyToCharTableIndexOffset field in the record's packed storage.

func (*UCKeyboardTypeHeader) SetKeyboardTypeFirst added in v0.6.17

func (s *UCKeyboardTypeHeader) SetKeyboardTypeFirst(v uint32)

SetKeyboardTypeFirst updates the KeyboardTypeFirst field in the record's packed storage.

func (*UCKeyboardTypeHeader) SetKeyboardTypeLast added in v0.6.17

func (s *UCKeyboardTypeHeader) SetKeyboardTypeLast(v uint32)

SetKeyboardTypeLast updates the KeyboardTypeLast field in the record's packed storage.

type UCTextBreakOptions

type UCTextBreakOptions = uint32

UCTextBreakOptions is specifies options for locating boundaries in Unicode text.

See: https://developer.apple.com/documentation/coreservices/uctextbreakoptions

type UCTextBreakType

type UCTextBreakType = uint32

UCTextBreakType is specifies kinds of text boundaries.

See: https://developer.apple.com/documentation/coreservices/uctextbreaktype

type UTCDateTime

type UTCDateTime [4]uint16

See: https://developer.apple.com/documentation/coreservices/utcdatetime UTCDateTime is opaque storage with the size and alignment C gives UTCDateTime: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type UniCharArrayOffset

type UniCharArrayOffset = uint

UniCharArrayOffset is represents the boundary between two characters.

See: https://developer.apple.com/documentation/coreservices/unichararrayoffset

type UnicodeMapVersion

type UnicodeMapVersion = int32

UnicodeMapVersion is specify a Unicode mapping version.

See: https://developer.apple.com/documentation/coreservices/unicodemapversion

type UnicodeMapping

type UnicodeMapping [6]uint16

UnicodeMapping is contains information for mapping to or from Unicode encoding.

See: https://developer.apple.com/documentation/coreservices/unicodemapping UnicodeMapping is opaque storage with the size and alignment C gives UnicodeMapping: 12 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 12 into.

type UnicodeToTextFallbackUPP

type UnicodeToTextFallbackUPP = unsafe.Pointer

UnicodeToTextFallbackUPP is defines a universal procedure pointer to a Unicode-to-text-fallback callback function.

See: https://developer.apple.com/documentation/coreservices/unicodetotextfallbackupp

func NewUnicodeToTextFallbackUPP

func NewUnicodeToTextFallbackUPP(userRoutine unsafe.Pointer) UnicodeToTextFallbackUPP

NewUnicodeToTextFallbackUPP creates a new universal procedure pointer (UPP) to a Unicode-to-textfallback callback.

See: https://developer.apple.com/documentation/coreservices/1433556-newunicodetotextfallbackupp

type UnicodeToTextInfo

type UnicodeToTextInfo = uintptr

UnicodeToTextInfo is defines a reference to an opaque Unicode to text converter object.

See: https://developer.apple.com/documentation/coreservices/unicodetotextinfo

type UnicodeToTextRunInfo

type UnicodeToTextRunInfo = uintptr

UnicodeToTextRunInfo is defines a reference to an opaque Unicode to text run information converter object.

See: https://developer.apple.com/documentation/coreservices/unicodetotextruninfo

type UntokenTable

type UntokenTable [258]uint16

See: https://developer.apple.com/documentation/coreservices/untokentable UntokenTable is opaque storage with the size and alignment C gives UntokenTable: 516 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 516 into.

type Upp added in v0.5.1

type Upp uint32
const (
	// Deprecated.
	UppCallComponentCanDoProcInfo Upp = 0x2f0
	// Deprecated.
	UppCallComponentCloseProcInfo Upp = 0x3f0
	// Deprecated.
	UppCallComponentGetMPWorkFunctionProcInfo Upp = 0xff0
	// Deprecated.
	UppCallComponentGetPublicResourceProcInfo Upp = 0x3bf0
	// Deprecated.
	UppCallComponentOpenProcInfo Upp = 0x3f0
	// Deprecated.
	UppCallComponentRegisterProcInfo Upp = 0xf0
	// Deprecated.
	UppCallComponentTargetProcInfo Upp = 0x3f0
	// Deprecated.
	UppCallComponentUnregisterProcInfo Upp = 0xf0
	// Deprecated.
	UppCallComponentVersionProcInfo Upp = 0xf0
	// Deprecated.
	UppComponentFunctionImplementedProcInfo Upp = 0x2f0
	// Deprecated.
	UppComponentSetTargetProcInfo Upp = 0x3f0
	// Deprecated.
	UppGetComponentVersionProcInfo Upp = 0xf0
)

func (Upp) String added in v0.5.1

func (e Upp) String() string

type Use added in v0.5.1

type Use uint32
const (
	// Deprecated.
	UseATalk Use = 1
	// Deprecated.
	UseAsync Use = 2
	// Deprecated.
	UseExtClk Use = 3
	// Deprecated.
	UseFree Use = 0
	// Deprecated.
	UseMIDI Use = 4
)

func (Use) String added in v0.5.1

func (e Use) String() string

type VLckdErr

type VLckdErr int32
const (
	BadMDBErr     VLckdErr = -60
	BadMovErr     VLckdErr = -122
	DirNFErr      VLckdErr = -120
	DupFNErr      VLckdErr = -48
	ExtFSErr      VLckdErr = -58
	FBsyErr       VLckdErr = -47
	FsRnErr       VLckdErr = -59
	GfpErr        VLckdErr = -52
	NoMacDskErr   VLckdErr = -57
	NsDrvErr      VLckdErr = -56
	OpWrErr       VLckdErr = -49
	PermErr       VLckdErr = -54
	RfNumErr      VLckdErr = -51
	TmwdoErr      VLckdErr = -121
	VLckdErrValue VLckdErr = -46
	VolGoneErr    VLckdErr = -124
	VolOffLinErr  VLckdErr = -53
	VolOnLinErr   VLckdErr = -55
	WrPermErr     VLckdErr = -61
	WrgVolTypErr  VLckdErr = -123
)

func (VLckdErr) String

func (e VLckdErr) String() string

type VectorInformation

type VectorInformation [1]uint64

See: https://developer.apple.com/documentation/coreservices/vectorinformation VectorInformation is opaque storage with the size and alignment C gives VectorInformation: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type VectorInformationIntel64

type VectorInformationIntel64 unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/vectorinformationintel64 VectorInformationIntel64 is an unresolved C aggregate typedef.

type VectorInformationPowerPC

type VectorInformationPowerPC [133]uint64

See: https://developer.apple.com/documentation/coreservices/vectorinformationpowerpc VectorInformationPowerPC is opaque storage with the size and alignment C gives VectorInformationPowerPC: 1064 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 1064 into.

type VerFrBelgium added in v0.5.1

type VerFrBelgium uint32
const (
	// Deprecated.
	VerAfrikaans VerFrBelgium = 102
	// Deprecated.
	VerEsperanto VerFrBelgium = 103
	// Deprecated.
	VerFrBelgiumValue VerFrBelgium = 98
	// Deprecated.
	VerGreenland VerFrBelgium = 107
	// Deprecated.
	VerIrelandEnglish VerFrBelgium = 108
	// Deprecated.
	VerMarathi VerFrBelgium = 104
	// Deprecated.
	VerNepal VerFrBelgium = 106
	// Deprecated.
	VerNynorsk VerFrBelgium = 101
	// Deprecated.
	VerSingapore VerFrBelgium = 100
	// Deprecated.
	VerTibetan VerFrBelgium = 105
	// Deprecated.
	VerUzbek VerFrBelgium = 99
)

func (VerFrBelgium) String added in v0.6.17

func (e VerFrBelgium) String() string

type VerFrBelgiumLux added in v0.5.1

type VerFrBelgiumLux uint32
const (
	// Deprecated.
	VerAlternateGr VerFrBelgiumLux = 64
	// Deprecated.
	VerArabia VerFrBelgiumLux = 16
	// Deprecated.
	VerArmenia VerFrBelgiumLux = 84
	// Deprecated.
	VerAustriaGerman VerFrBelgiumLux = 92
	// Deprecated.
	VerBelgiumLux VerFrBelgiumLux = 6
	// Deprecated.
	VerBelgiumLuxPoint VerFrBelgiumLux = 27
	// Deprecated.
	VerBrittany VerFrBelgiumLux = 77
	// Deprecated.
	VerByeloRussian VerFrBelgiumLux = 61
	// Deprecated.
	VerFaeroeIsl VerFrBelgiumLux = 47
	// Deprecated.
	VerFarEastGeneric VerFrBelgiumLux = 58
	// Deprecated.
	VerFrBelgiumLuxValue VerFrBelgiumLux = 6
	// Deprecated.
	VerGenericFE VerFrBelgiumLux = 58
	// Deprecated.
	VerGeorgia VerFrBelgiumLux = 85
	// Deprecated.
	VerGreecePoly VerFrBelgiumLux = 40
	// Deprecated.
	VerIndia VerFrBelgiumLux = 33
	// Deprecated.
	VerLapland VerFrBelgiumLux = 46
	// Deprecated.
	VerMacedonia VerFrBelgiumLux = 67
	// Deprecated.
	VerPakistan VerFrBelgiumLux = 34
	// Deprecated.
	VerRumania VerFrBelgiumLux = 39
	// Deprecated.
	VerSerbia VerFrBelgiumLux = 65
	// Deprecated.
	VerSlovenia VerFrBelgiumLux = 66
	// Deprecated.
	VerTibet VerFrBelgiumLux = 105
	// Deprecated.
	VerUkrania VerFrBelgiumLux = 62
	// Deprecated.
	VerWales VerFrBelgiumLux = 79
	// Deprecated.
	VerYugoslavia VerFrBelgiumLux = 25
)

func (VerFrBelgiumLux) String added in v0.6.17

func (e VerFrBelgiumLux) String() string

type VerIndiaHindi added in v0.5.1

type VerIndiaHindi uint32
const (
	// Deprecated.
	VerBelarus VerIndiaHindi = 61
	// Deprecated.
	VerBengali VerIndiaHindi = 60
	// Deprecated.
	VerChina VerIndiaHindi = 52
	// Deprecated.
	VerCzech VerIndiaHindi = 56
	// Deprecated.
	VerEastAsiaGeneric VerIndiaHindi = 58
	// Deprecated.
	VerEstonia VerIndiaHindi = 44
	// Deprecated.
	VerFaroeIsl VerIndiaHindi = 47
	// Deprecated.
	VerGreekAncient VerIndiaHindi = 40
	// Deprecated.
	VerHungary VerIndiaHindi = 43
	// Deprecated.
	VerIndiaHindiValue VerIndiaHindi = 33
	// Deprecated.
	VerInternational VerIndiaHindi = 37
	// Deprecated.
	VerIran VerIndiaHindi = 48
	// Deprecated.
	VerIreland VerIndiaHindi = 50
	// Deprecated.
	VerItalianSwiss VerIndiaHindi = 36
	// Deprecated.
	VerKorea VerIndiaHindi = 51
	// Deprecated.
	VerLatvia VerIndiaHindi = 45
	// Deprecated.
	VerLithuania VerIndiaHindi = 41
	// Deprecated.
	VerMagyar VerIndiaHindi = 59
	// Deprecated.
	VerPakistanUrdu VerIndiaHindi = 34
	// Deprecated.
	VerPoland VerIndiaHindi = 42
	// Deprecated.
	VerRomania VerIndiaHindi = 39
	// Deprecated.
	VerRussia VerIndiaHindi = 49
	// Deprecated.
	VerSami VerIndiaHindi = 46
	// Deprecated.
	VerScriptGeneric VerIndiaHindi = 55
	// Deprecated.
	VerSlovak VerIndiaHindi = 57
	// Deprecated.
	VerTaiwan VerIndiaHindi = 53
	// Deprecated.
	VerThailand VerIndiaHindi = 54
	// Deprecated.
	VerTurkishModified VerIndiaHindi = 35
)

func (VerIndiaHindi) String added in v0.6.17

func (e VerIndiaHindi) String() string

type VerNetherlandsComma added in v0.5.1

type VerNetherlandsComma uint32
const (
	// Deprecated.
	VerCanadaComma VerNetherlandsComma = 28
	// Deprecated.
	VerCanadaPoint VerNetherlandsComma = 29
	// Deprecated.
	VerFlemishPoint VerNetherlandsComma = 27
	// Deprecated.
	VerNetherlandsCommaValue VerNetherlandsComma = 26
	// Deprecated.
	VervariantDenmark VerNetherlandsComma = 32
	// Deprecated.
	VervariantNorway VerNetherlandsComma = 31
	// Deprecated.
	VervariantPortugal VerNetherlandsComma = 30
)

func (VerNetherlandsComma) String added in v0.6.17

func (e VerNetherlandsComma) String() string

type VerUS added in v0.5.1

type VerUS uint32
const (
	// Deprecated.
	VerArabic VerUS = 16
	// Deprecated.
	VerAustralia VerUS = 15
	// Deprecated.
	VerBritain VerUS = 2
	// Deprecated.
	VerCyprus VerUS = 23
	// Deprecated.
	VerDenmark VerUS = 9
	// Deprecated.
	VerFinland VerUS = 17
	// Deprecated.
	VerFlemish VerUS = 6
	// Deprecated.
	VerFrCanada VerUS = 11
	// Deprecated.
	VerFrSwiss VerUS = 18
	// Deprecated.
	VerFrance VerUS = 1
	// Deprecated.
	VerGermany VerUS = 3
	// Deprecated.
	VerGrSwiss VerUS = 19
	// Deprecated.
	VerGreece VerUS = 20
	// Deprecated.
	VerIceland VerUS = 21
	// Deprecated.
	VerIsrael VerUS = 13
	// Deprecated.
	VerItaly VerUS = 4
	// Deprecated.
	VerJapan VerUS = 14
	// Deprecated.
	VerMalta VerUS = 22
	// Deprecated.
	VerNetherlands VerUS = 5
	// Deprecated.
	VerNorway VerUS = 12
	// Deprecated.
	VerPortugal VerUS = 10
	// Deprecated.
	VerSpain VerUS = 8
	// Deprecated.
	VerSweden VerUS = 7
	// Deprecated.
	VerTurkey VerUS = 24
	// Deprecated.
	VerUSValue VerUS = 0
	// Deprecated.
	VerYugoCroatian VerUS = 25
)

func (VerUS) String added in v0.6.17

func (e VerUS) String() string

type VerUkraine added in v0.5.1

type VerUkraine uint32
const (
	// Deprecated.
	VerArmenian VerUkraine = 84
	// Deprecated.
	VerAustria VerUkraine = 92
	// Deprecated.
	VerBhutan VerUkraine = 83
	// Deprecated.
	VerBrazil VerUkraine = 71
	// Deprecated.
	VerBreton VerUkraine = 77
	// Deprecated.
	VerBulgaria VerUkraine = 72
	// Deprecated.
	VerCatalonia VerUkraine = 73
	// Deprecated.
	VerCroatia VerUkraine = 68
	// Deprecated.
	VerEngCanada VerUkraine = 82
	// Deprecated.
	VerFrenchUniversal VerUkraine = 91
	// Deprecated.
	VerGeorgian VerUkraine = 85
	// Deprecated.
	VerGermanReformed VerUkraine = 70
	// Deprecated.
	VerGreeceAlt VerUkraine = 64
	// Deprecated.
	VerGujarati VerUkraine = 94
	// Deprecated.
	VerIndiaUrdu VerUkraine = 96
	// Deprecated.
	VerIrishGaelicScript VerUkraine = 81
	// Deprecated.
	VerMacedonian VerUkraine = 67
	// Deprecated.
	VerManxGaelic VerUkraine = 76
	// Deprecated.
	VerMultilingual VerUkraine = 74
	// Deprecated.
	VerNunavut VerUkraine = 78
	// Deprecated.
	VerPunjabi VerUkraine = 95
	// Deprecated.
	VerScottishGaelic VerUkraine = 75
	// Deprecated.
	VerSerbian VerUkraine = 65
	// Deprecated.
	VerSlovenian VerUkraine = 66
	// Deprecated.
	VerSpLatinAmerica VerUkraine = 86
	// Deprecated.
	VerTonga VerUkraine = 88
	// Deprecated.
	VerUkraineValue VerUkraine = 62
	// Deprecated.
	VerVietnam VerUkraine = 97
	// Deprecated.
	VerWelsh VerUkraine = 79
)

func (VerUkraine) String added in v0.6.17

func (e VerUkraine) String() string

type VerUnspecified added in v0.5.1

type VerUnspecified uint32
const (
	KTECResourceID      VerUnspecified = 128
	VerUnspecifiedValue VerUnspecified = 32767
)

func (VerUnspecified) String added in v0.5.1

func (e VerUnspecified) String() string

type VmInvalidBackingFileIDErr

type VmInvalidBackingFileIDErr int32
const (
	VmAddressNotInFileViewErr      VmInvalidBackingFileIDErr = -647
	VmBusyBackingFileErr           VmInvalidBackingFileIDErr = -642
	VmFileViewAccessErr            VmInvalidBackingFileIDErr = -645
	VmInvalidBackingFileIDErrValue VmInvalidBackingFileIDErr = -640
	VmInvalidFileViewIDErr         VmInvalidBackingFileIDErr = -644
	VmInvalidOwningProcessErr      VmInvalidBackingFileIDErr = -648
	VmMappingPrivilegesErr         VmInvalidBackingFileIDErr = -641
	VmNoMoreBackingFilesErr        VmInvalidBackingFileIDErr = -643
	VmNoMoreFileViewsErr           VmInvalidBackingFileIDErr = -646
)

func (VmInvalidBackingFileIDErr) String added in v0.6.17

func (e VmInvalidBackingFileIDErr) String() string

type VmMorePhysicalThanVirtualErr

type VmMorePhysicalThanVirtualErr int32
const (
	VmBadDriver                       VmMorePhysicalThanVirtualErr = -632
	VmKernelMMUInitErr                VmMorePhysicalThanVirtualErr = -629
	VmMemLckdErr                      VmMorePhysicalThanVirtualErr = -631
	VmMorePhysicalThanVirtualErrValue VmMorePhysicalThanVirtualErr = -628
	VmNoVectorErr                     VmMorePhysicalThanVirtualErr = -633
	VmOffErr                          VmMorePhysicalThanVirtualErr = -630
)

func (VmMorePhysicalThanVirtualErr) String added in v0.6.17

type VoidPtr

type VoidPtr = unsafe.Pointer

See: https://developer.apple.com/documentation/coreservices/voidptr

func InvokeThreadEntryUPP deprecated

func InvokeThreadEntryUPP(threadParam unsafe.Pointer, userUPP ThreadEntryUPP) VoidPtr

InvokeThreadEntryUPP.

Deprecated: Deprecated since macOS 10.7.

See: https://developer.apple.com/documentation/coreservices/1574226-invokethreadentryupp

type VolMount added in v0.5.1

type VolMount uint32
const (
	VolMountChangedBit         VolMount = 14
	VolMountChangedMask        VolMount = 0x4000
	VolMountExtendedFlagsBit   VolMount = 7
	VolMountExtendedFlagsMask  VolMount = 0x80
	VolMountFSReservedMask     VolMount = 0xff
	VolMountInteractBit        VolMount = 15
	VolMountInteractMask       VolMount = 0x8000
	VolMountNoLoginMsgFlagBit  VolMount = 0
	VolMountNoLoginMsgFlagMask VolMount = 0x1
	VolMountSysReservedMask    VolMount = 0xff00
)

func (VolMount) String added in v0.5.1

func (e VolMount) String() string

type VolMountInfoHeader

type VolMountInfoHeader [3]uint16

See: https://developer.apple.com/documentation/coreservices/volmountinfoheader VolMountInfoHeader is opaque storage with the size and alignment C gives VolMountInfoHeader: 6 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 6 into.

type VolumeMountInfoHeader

type VolumeMountInfoHeader [4]uint16

See: https://developer.apple.com/documentation/coreservices/volumemountinfoheader VolumeMountInfoHeader is opaque storage with the size and alignment C gives VolumeMountInfoHeader: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type WSClientContext

type WSClientContext [20]uint16

WSClientContext is an optional context that can contain data you want passed to your callback.

See: https://developer.apple.com/documentation/coreservices/wsclientcontext WSClientContext is opaque storage with the size and alignment C gives WSClientContext: 40 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 40 into.

type WSMethodInvocationRef

type WSMethodInvocationRef uintptr

WSMethodInvocationRef is an opaque reference to a web services method invocation.

See: https://developer.apple.com/documentation/coreservices/wsmethodinvocationref

func WSMethodInvocationCreate deprecated

func WSMethodInvocationCreate(url corefoundation.CFURLRef, methodName corefoundation.CFStringRef, protocol_ corefoundation.CFStringRef) WSMethodInvocationRef

WSMethodInvocationCreate creates a reference to a method invocation, containing the URL of the service, the operation name, and the protocol.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576406-wsmethodinvocationcreate

func WSMethodInvocationCreateFromSerialization deprecated

func WSMethodInvocationCreateFromSerialization(contract corefoundation.CFDataRef) WSMethodInvocationRef

WSMethodInvocationCreateFromSerialization creates a method invocation object from an XML serialization.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1576400-wsmethodinvocationcreatefromseri

type WSProtocolHandlerRef

type WSProtocolHandlerRef uintptr

WSProtocolHandlerRef is an opaque reference to a web services protocol handler.

See: https://developer.apple.com/documentation/coreservices/wsprotocolhandlerref

func WSProtocolHandlerCreate deprecated

func WSProtocolHandlerCreate(allocator corefoundation.CFAllocatorRef, protocol_ corefoundation.CFStringRef) WSProtocolHandlerRef

WSProtocolHandlerCreate creates a WSProtocolHandlerRef for use in translating an XML document.

Deprecated: Deprecated since macOS 10.8.

See: https://developer.apple.com/documentation/coreservices/1423434-wsprotocolhandlercreate

type WSTypeID

type WSTypeID = int32

WSTypeID is web Services Core uses the following enumeration when serializing between Core Foundation and XML types. Because CFTypes are defined at runtime, it isn't always possible to produce a static mapping to a particular CFTypeRef. This enum and associated API allows for static determination of the expected serialization.

See: https://developer.apple.com/documentation/coreservices/wstypeid

type WideCharArr

type WideCharArr [11]uint16

See: https://developer.apple.com/documentation/coreservices/widechararr WideCharArr is opaque storage with the size and alignment C gives WideCharArr: 22 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 22 into.

type WritingCode

type WritingCode struct {
	TheScriptCode int16
	TheLangCode   int16
}

WritingCode

[Full Topic] [Full Topic]: https://developer.apple.com/documentation/coreservices/writingcode

type WrongApplicationPlatform

type WrongApplicationPlatform int32
const (
	AppVersionTooOld              WrongApplicationPlatform = -876
	NotAppropriateForClassic      WrongApplicationPlatform = -877
	WrongApplicationPlatformValue WrongApplicationPlatform = -875
)

func (WrongApplicationPlatform) String

func (e WrongApplicationPlatform) String() string

type XLibContainerHeader

type XLibContainerHeader [40]uint16

See: https://developer.apple.com/documentation/coreservices/xlibcontainerheader XLibContainerHeader is opaque storage with the size and alignment C gives XLibContainerHeader: 80 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 80 into.

type XLibExportedSymbol

type XLibExportedSymbol [4]uint16

See: https://developer.apple.com/documentation/coreservices/xlibexportedsymbol XLibExportedSymbol is opaque storage with the size and alignment C gives XLibExportedSymbol: 8 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 8 into.

type XLibExportedSymbolHashSlot

type XLibExportedSymbolHashSlot [2]uint16

See: https://developer.apple.com/documentation/coreservices/xlibexportedsymbolhashslot XLibExportedSymbolHashSlot is opaque storage with the size and alignment C gives XLibExportedSymbolHashSlot: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

type XLibExportedSymbolKey

type XLibExportedSymbolKey [2]uint16

See: https://developer.apple.com/documentation/coreservices/xlibexportedsymbolkey XLibExportedSymbolKey is opaque storage with the size and alignment C gives XLibExportedSymbolKey: 4 bytes. C declares a record here, not a handle, so a pointer-width rendering would hand the framework eight bytes to write 4 into.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL