Skip to content

Instantly share code, notes, and snippets.

@sancarn
Last active August 16, 2020 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sancarn/e3e4540cb670e57b0b999debc8be451d to your computer and use it in GitHub Desktop.
Save sancarn/e3e4540cb670e57b0b999debc8be451d to your computer and use it in GitHub Desktop.

The following functions are hidden functions executable from vba on Mac.

Functions Present in Microsoft Office

/Applications/Microsoft Excel.app/Contents/Frameworks/MicrosoftOffice.framework/MicrosoftOffice

These are callable from VBA, e.g.

Declare Function GetTickCount Lib "/Applications/Microsoft Excel.app/Contents/Frameworks/MicrosoftOffice.framework/MicrosoftOffice" () As Long
Sub main
  Debug.Print GetTickCount()
End Sub

Function declarations from cabos

These are function declarations from what appears to be a VB project for mac: https://zh.osdn.net/projects/cabos/scm/svn/commits/69

You'll notice some are windows libraries, but others are mac specific e.g.

Declare Function CFDictionaryCreate Lib CarbonLib (allocator as Integer, keys as Ptr, values as Ptr, numValues as Integer, keyCallBacks as Ptr, valueCallBacks as Ptr) as Integer

I'm still not entirely sure what CarbonLib constant is (apart from a reference to the Mac Carbon framework...

Functions Present in MicrosoftOLE framework.txt

/Applications/Microsoft\ Office\ 2008/Office/MicrosoftOLE.framework/Versions/12/MicrosoftOLE

Functions in AppleScriptObjC framework.txt

Functions in /System/Library/Frameworks/AppleScriptObjC.framework/AppleScriptObjC

In theory this should allow us to get all other Objective C classes as this is essentially the ObjC bridge. For instance we should be able to call _objc_getClass. Important methods here are:

_malloc
_memcpy
_method_getImplementation
_method_getName
_method_getTypeEncoding
_msgtracer_log_with_keys
_objc_allocateClassPair
_objc_autoreleasePoolPop
_objc_autoreleasePoolPush
_objc_begin_catch
_objc_copyImageNames
_objc_copyProtocolList
_objc_end_catch
_objc_enumerationMutation
_objc_exception_throw
_objc_getAssociatedObject
_objc_getClass
_objc_getProperty
_objc_msgSend
_objc_msgSendSuper2
_objc_registerClassPair
_objc_setAssociatedObject
_objc_setProperty_atomic
_objc_setProperty_nonatomic
_objc_sync_enter
_objc_sync_exit
_objc_terminate
_object_getClass
_object_getInstanceVariable
Const CarbonLib as string = "/System/Library/Frameworks/Carbon.framework/Carbon"
Declare Function GetScriptVariable lib CarbonLib (script as short, selector as short) as short
Declare Function GetScriptManagerVariable lib CarbonLib (selector as short) as short
Declare Function LocaleRefFromLangOrRegionCode lib CarbonLib (LangCode as short, RegionCode as short, LocaleRef as Integer) as short
Declare Function LocaleRefGetPartString lib CarbonLib (locale as Integer, partMask as Integer, maxStringLen as short, partString as Ptr) as short
Declare Function GetLocaleInfoA Lib "kernel32" (Locale As integer, LCType As integer, lpLCData As ptr, cchData As integer) As Integer
Declare Function CFArrayCreateCopy Lib CarbonLib (allocator as Integer, theArray as Integer) as Integer
Declare Function CFArrayGetCount Lib CarbonLib (theArray as Integer) as Integer
Declare Function CFArrayGetValueAtIndex Lib CarbonLib (theArray as Integer, idx as Integer) as Integer
Declare Function CFArrayGetCount Lib CarbonLib (theArray as Integer) as Integer
Declare Function CFArrayCreate Lib CarbonLib (allocator as Integer, values as Ptr, numValues as Integer, callbacks as Ptr) as Integer
Declare Function CFArrayCreate Lib CarbonLib (allocator as Integer, values as Integer, numValues as Integer, callbacks as Ptr) as Integer
Declare Function CFBooleanGetValue Lib CarbonLib (cf as Integer) as Boolean
Declare Function CFBundleCreate Lib CarbonLib (allocator as Integer, bundleURL as Integer) as Integer
Declare Function CFBundleCopyExecutableURL Lib CarbonLib (theBundle as Integer) as Integer
Declare Function CFBundleCopyResourceURL Lib CarbonLib (bundle as Integer, resourceName as Integer, resourceType as Integer, subDirName as Integer) as Integer
Declare Function CFBundleCopyResourceURLInDirectory Lib CarbonLib (bundleURL as Integer, resourceName as Integer, resourceType as Integer, subDirName as Integer) as Integer
Declare Function CFBundleCopyBundleURL Lib CarbonLib (bundle as Integer) as Integer
Declare Function CFBundleCopyResourcesDirectoryURL Lib CarbonLib (theBundle as Integer) as Integer
Declare Function CFBundleGetDataPointerForName Lib CarbonLib (bundle as Integer, symbolName as Integer) as Integer
Declare Function CFBundleGetIdentifier Lib CarbonLib (bundle as Integer) as Integer
Declare Function CFBundleCopyBundleURL Lib CarbonLib (bundle as Integer) as Integer
Declare Function CFBundleGetFunctionPointerForName Lib CarbonLib (bundle as Integer, symbolName as Integer) as Integer
Declare Function CFBundleGetInfoDictionary Lib CarbonLib (bundle as Integer) as Integer
Declare Function CFBundleGetValueForInfoDictionaryKey Lib CarbonLib (bundle as Integer, key as Integer) as Integer
Declare Function CFBundleGetMainBundle Lib CarbonLib () as Integer
Declare Function CFBundleGetBundleWithIdentifier Lib CarbonLib (bundleID as Integer) as Integer
Declare Function CFBundleCopyLocalizedString Lib CarbonLib (bundle as Integer, key as Integer, value as Integer, tableName as Integer) as Integer
Declare Function CFBundleCopyBundleLocalizations Lib CarbonLib (theBundle as Integer) as Integer
Declare Function CFBundleCopyPreferredLocalizationsFromArray Lib CarbonLib (locArray as Integer) as Integer
Declare Function CFDataCreate Lib CarbonLib (allocator as Integer, bytes as CString, length as Integer) as Integer
Declare Function CFDataGetLength Lib CarbonLib (theData as Integer) as Integer
Declare Function CFDataCreate Lib CarbonLib (allocator as Integer, bytes as Ptr, length as Integer) as Integer
Declare Function CFDateCreate Lib CarbonLib (at as Double) as Integer
Declare Function CFDateCreate Lib CarbonLib (allocator as Integer, at as Double) as Integer
Declare Function CFDateGetAbsoluteTime Lib CarbonLib (theDate as Integer) as Double
Declare Function CFDictionaryGetCount Lib CarbonLib (theDict as Integer) as Integer
Declare Function CFDictionaryGetValueIfPresent Lib CarbonLib (theDict as Integer, key as Integer, ByRef value as Integer) as Boolean
Declare Function CFDictionaryContainsKey Lib CarbonLib (theDict as Integer, key as Integer) as Boolean
Declare Function CFDictionaryGetCount Lib CarbonLib (theDict as Integer) as Integer
Declare Function CFDictionaryCreate Lib CarbonLib (allocator as Integer, keys as Ptr, values as Ptr, numValues as Integer, keyCallBacks as Ptr, valueCallBacks as Ptr) as Integer
Declare Function CFDictionaryCreate Lib CarbonLib (allocator as Integer, keys as Integer, values as Integer, numValues as Integer, keyCallBacks as Ptr, valueCallBacks as Ptr) as Integer
Declare Function CFDictionaryCreateCopy Lib CarbonLib (allocator as Integer, theDict as Integer) as Integer
Declare Function CFArrayGetCount Lib CarbonLib (theArray as Integer) as Integer
Declare Function CFArrayCreateMutable Lib CarbonLib (allocator as Integer, capacity as Integer, callbacks as Ptr) as Integer
Declare Function CFLocaleGetSystem Lib CarbonLib () as Integer
Declare Function CFLocaleGetSystem Lib CarbonLib () as Integer
Declare Function CFStringCreateMutable Lib CarbonLib (alloc as Integer, maxLength as Integer) as Integer
Declare Function CFNumberGetValue Lib CarbonLib (number as Integer, theType as Integer, ByRef valuePtr as Integer) as Boolean
Declare Function CFNumberGetValue Lib CarbonLib (number as Integer, theType as Integer, ByRef valuePtr as Double) as Boolean
Declare Function CFPreferencesCopyAppValue Lib CarbonLib (key as Integer, appID as Integer) as Integer
Declare Function CFPreferencesAppSynchronize Lib CarbonLib (appID as Integer) as Boolean
Declare Function CFStringGetLength Lib CarbonLib (theString as Integer) as Integer
Declare Function CFStringGetMaximumSizeForEncoding Lib CarbonLib (length as Integer, enc as Integer) as Integer
Declare Function CFStringGetCString Lib CarbonLib (theString as Integer, buffer as Ptr, bufferSize as Integer, enc as Integer) as Boolean
Declare Function CFStringCreateWithCString Lib CarbonLib (alloc as Integer, cStr as CString,encoding as Integer) as Integer
Declare Function CFTimeZoneCreateWithName Lib CarbonLib (allocator as Integer, name as Integer, tryAbbrev as Boolean) as Integer
Declare Function CFTimeZoneGetName Lib CarbonLib (tz as Integer) as Integer
Declare Function CFTimeZoneIsDaylightSavingsTime Lib CarbonLib (tz as Integer, at as Double) as Boolean
Declare Function CFTimeZoneCopySystem Lib CarbonLib () as Integer
Declare Function CFTimeZoneCopyAbbreviation Lib CarbonLib (tz as Integer, at as Double) as Integer
Declare Function CFTimeZoneGetSecondsFromGMT Lib CarbonLib (tz as Integer, at as Double) as Double
Declare Function CFRetain Lib CarbonLib (ref as Integer) as Integer
Declare Function CFEqual Lib CarbonLib (cf1 as Integer, cf2 as Integer) as Boolean
Declare Function CFGetTypeID Lib CarbonLib (cf as Integer) as Integer
Declare Function CFCopyDescription Lib CarbonLib (cf as Integer) as Integer
Declare Function CFCopyTypeIDDescription Lib CarbonLib (cf as Integer) as Integer
Declare Function CFGetRetainCount Lib CarbonLib (cf as Integer) as Integer
Declare Function CFHash Lib CarbonLib (cf as Integer) as Integer
Declare Function CFURLGetString Lib CarbonLib (anURL as Integer) as Integer
Declare Function CFURLCopyScheme Lib CarbonLib (anURL as Integer) as Integer
Declare Function CFURLCopyNetLocation Lib CarbonLib (anURL as Integer) as Integer
Declare Function CFURLCreateFromFSRef Lib CarbonLib (allocator as Integer, fsRef as Ptr) as Integer
Declare Function CFURLCreateWithBytes Lib CarbonLib (allocator as Integer, relativeURLBytes as CString, length as Integer, encoding as Integer, baseURL as Integer) as Integer
Declare Function CFURLCreateWithBytes Lib CarbonLib (allocator as Integer, URLBytes as CString, length as Integer, encoding as Integer, baseURL as Integer) as Integer
Declare Function CFURLCopyAbsoluteURL Lib CarbonLib (relativeURL as Integer) as Integer
Declare Function CFURLGetBaseURL Lib CarbonLib (anURL as Integer) as Integer
Declare Function CFURLCanBeDecomposed Lib CarbonLib (anURL as Integer) as Boolean
Declare Function CFURLGetFileSystemRepresentation Lib CarbonLib (url as Integer, resolveAgainstBase as Boolean, buffer as Ptr, maxBufLen as Integer) as Boolean
Declare Function CFURLGetFSRef Lib CarbonLib (url as Integer, fsRef as Ptr) as Boolean
Declare Function CFURLCopyLastPathComponent Lib CarbonLib (url as Integer) as Integer
Declare Function CFURLCreateCopyDeletingLastPathComponent Lib CarbonLib (allocator as Integer, url as Integer) as Integer
Declare Function CFURLCreateStringByReplacingPercentEscapes Lib CarbonLib (allocator as Integer, originalString as Integer, charactersToLeaveEscaped as Integer) as Integer
Declare Function CFURLCreateStringByAddingPercentEscapes Lib CarbonLib (allocator as Integer, originalString as Integer, unescape as Integer, escape as Integer, enc as Integer) as Integer
Declare Function CFPropertyListCreateXMLData Lib CarbonLib (allocator as Integer, propertyList as Integer) as Integer
Declare Function CFPropertyListCreateFromXMLData Lib CarbonLib (allocator as Integer, xmlData as Integer, mutabilityOptions as Integer, errorString as Integer) as Integer
Declare Function CFPropertyListCreateDeepCopy Lib CarbonLib (allocator as Integer, propertyList as Integer, mutabilityOption as Integer) as Integer
Declare Function CFPropertyListIsValid Lib CarbonLib (cf as Integer, fmt as Integer) as Boolean
Declare Function CFGetTypeID Lib CarbonLib (cf as Integer) as Integer
Declare Function CFStringGetTypeID Lib CarbonLib () as Integer
Declare Function CFNumberGetTypeID Lib CarbonLib () as Integer
Declare Function CFBooleanGetTypeID Lib CarbonLib () as Integer
Declare Function CFDateGetTypeID Lib CarbonLib () as Integer
Declare Function CFDataGetTypeID Lib CarbonLib () as Integer
Declare Function CFArrayGetTypeID Lib CarbonLib () as Integer
Declare Function CFDictionaryGetTypeID Lib CarbonLib () as Integer
Declare Function CFRetain Lib CarbonLib (cf as Integer) as Integer
Declare Function CFNumberCreate Lib CarbonLib (allocator as Integer, theType as Integer, ByRef valuePtr as Integer) as Integer
Declare Function CFNumberCreate Lib CarbonLib (allocator as Integer, theType as Integer, ByRef valuePtr as Double) as Integer
Declare Function CFStringGetListOfAvailableEncodings Lib CarbonLib () as Ptr
Declare Function CFTimeZoneCopyKnownNames Lib CarbonLib () as Integer
Declare Function CFGetRetainCount Lib CarbonLib (cf as Integer) as Integer
Declare Function CFTimeZoneCopySystem Lib CarbonLib () as Integer
Declare Function FSGetCatalogInfo Lib InterfaceLib (ref as Ptr, whichInfo as Integer, catalogInfo as Ptr, outName as Integer, fsSpec as Integer, parentRef as Integer) as Short
Declare Function FSGetCatalogInfo Lib InterfaceLib (ref as Ptr, whichInfo as Integer, catalogInfo as Ptr, outName as Integer, fsSpec as Integer, parentRef as Integer) as Short
Declare Function FSSetCatalogInfo Lib InterfaceLib (ref as Ptr, whichInfo as Integer, catalogInfo as Ptr) as Short
Declare Function PBHGetVolParmsSync Lib InterfaceLib (paramBlock as Ptr) as Short
Declare Function FSExchangeObjects Lib InterfaceLib (f1 as Ptr, f2 as Ptr) as Integer
Declare Function FSGetVolumeInfo Lib InterfaceLib (volume as Short, volumeIndex as Integer, ByRef actualVolume as Integer, whichInfo as Integer, info as Integer, volumeName as Integer, rootDirectory as Integer) as Short
Declare Function FSGetVolumeInfo Lib InterfaceLib (volume as Short, volumeIndex as Integer, actualVolume as Integer, whichInfo as Integer, info as Ptr, volumeName as Integer, rootDirectory as Integer) as Short
Declare Function PBHGetVolParmsSync Lib InterfaceLib (paramBlock as Ptr) as Short
Declare Function FSCompareFSRefs Lib InterfaceLib (ref1 as Ptr, ref2 as Ptr) as Short
Declare Function FSpExchangeFiles Lib InterfaceLib (f1 as Ptr, f2 as Ptr) as Integer
Declare Function PBHGetVolParmsSync Lib InterfaceLib (paramBlock as Ptr) as Short
Declare Function FSMakeFSRefUnicode Lib InterfaceLib (parentPtr as Ptr, nameLength as Integer, name as CString, enc as Integer, outRef as Ptr) as Short
Declare Function FSGetVolumeInfo Lib InterfaceLib (volume as Short, volumeIndex as Integer, actualVolume as Integer, whichInfo as Integer, info as Integer, volumeName as Integer, rootDirectory as Ptr) as Short
Declare Function FSRefMakePath Lib InterfaceLib (ref as Ptr, path as Ptr, maxPathSize as Integer) as Integer
Declare Function FSGetCatalogInfo Lib InterfaceLib (ref as Ptr, whichInfo as Integer, catalogInfo as Integer, outName as Ptr, fsSpec as Integer, parentRef as Integer) as Short
Declare Function FSGetCatalogInfo Lib InterfaceLib (ref as Ptr, whichInfo as Integer, catalogInfo as Ptr, outName as Integer, fsSpec as Integer, parentRef as Ptr) as Short
Declare Function FSGetCatalogInfo Lib InterfaceLib (ref as Ptr, whichInfo as Integer, catalogInfo as Integer, outName as Ptr, fsSpec as Integer, parentRef as Integer) as Short
Declare Function FSGetCatalogInfo Lib InterfaceLib (ref as Ptr, whichInfo as Integer, catalogInfo as Ptr, outName as Integer, fsSpec as Integer, parentRef as Ptr) as Short
Declare Function FSpMakeFSRef Lib InterfaceLib (source as Ptr, newRef as Ptr) as Short
Declare Function FSGetCatalogInfo Lib InterfaceLib (ref as Ptr, whichInfo as Integer, catalogInfo as Integer, outName as Integer, fsSpec as Integer, parentRef as Integer) as Short
Declare Function FSGetCatalogInfo Lib InterfaceLib (ref as Ptr, whichInfo as Integer, catalogInfo as Integer, outName as Ptr, fsSpec as Integer, parentRef as Integer) as Short
Declare Function FSGetVolumeInfo Lib InterfaceLib (volume as Short, volumeIndex as Integer, actualVolume as Integer, whichInfo as Integer, info as Integer, volumeName as Integer, rootDirectory as Ptr) as Short
Declare Function FSMakeFSRefUnicode Lib InterfaceLib (parentPtr as Ptr, nameLength as Integer, name as CString, enc as Integer, outRef as Ptr) as Short
Declare Function FSMakeFSSpec Lib InterfaceLib (vRefNum as Short, dirID as Integer, filename as Pstring, spec as Ptr) as Short
Declare Function FSMakeFSSpec Lib InterfaceLib (vRefNum as Short, dirID as Integer, filename as Pstring, spec as Ptr) as Short
Declare Function FSGetCatalogInfo Lib InterfaceLib (ref as Ptr, whichInfo as Integer, catalogInfo as Integer, outName as Integer, fsSpec as Ptr, parentRef as Integer) as Short
Declare Function AcquireIconRef Lib kCarbon (theIconRef as Integer) as Short
Declare Function ReleaseIconRef Lib kCarbon (theIconRef as Integer) as Short
Declare Function GetIconRef Lib kCarbon (vRefNum as Short, creator as OSType, icnType as OSType, theIconRef as Ptr) as Short
Declare Function GetIconRefFromFile Lib kCarbon (theFile as Ptr, theIconRef as Ptr, theLabel as Ptr) as Short
Declare Function PlotIconRef Lib kCarbon (theRect as Ptr, align as Short, transform as Short, theIconServicesUsageFlags as Integer, iconRef as Integer) as Short
Declare Function SetThemeBackground Lib kCarbon (inBrush as Integer, inDepth as Integer, inIsColorDevice as Boolean) as Integer
Declare Function NMInstall Lib kCarbon (nmReqPtr as Ptr) As Integer
Declare Function GetResource lib kCarbon (resType as integer, resID as integer) as integer
Declare Function FlashWindowEx Lib "user32" (pfwi As ptr) As integer
Declare Function FlashWindow Lib "user32" (hwnd As integer, bInvert As integer) As integer
Declare Function NMRemove Lib kCarbon (nmReqPtr as Ptr) As Integer
Declare Function FlashWindowEx Lib "user32" (pfwi As ptr) As integer
Declare Function GetMenu Lib "user32" (hWnd As integer) As integer
Declare Function GetSubMenu Lib "user32" (hMenu As integer, nPos As integer) As integer
Declare Function ModifyMenuA Lib "user32" (hMenu As integer, nPosition As integer, wFlags As integer, wIDNewItem As integer, lpString As ptr) As integer
Declare Function ModifyMenuW Lib "user32" (hMenu As integer, nPosition As integer, wFlags As integer, wIDNewItem As integer, lpString As ptr) As integer
Declare Function DrawMenuBar Lib "user32" (hwnd As Integer) As Integer
Declare Function GetSysColor Lib "user32" (nIndex As integer) As integer
Declare Function GetLastError Lib "Kernel32" () as Integer
Declare Function CreateToolhelp32Snapshot Lib "Kernel32" (flags as Integer, id as Integer ) as Integer
Declare Function Process32Next Lib "Kernel32" ( handle as Integer, entry as Ptr ) as Boolean
Declare Function OpenProcess Lib "Kernel32" ( access as Integer, inherit as Boolean, procID as Integer ) as Integer
Declare Function CollapseWindow Lib kCarbon (w as WindowPtr, b as Boolean) as Integer
Declare Function ChangeWindowAttributes Lib kCarbon _
Declare Function IsWindowInStandardState Lib kCarbon (window as WindowPtr, idealSize as Integer, idealStandardState as Integer) as Boolean
Declare Function IsIconic Lib "user32" (ByVal hwnd As Integer) As Integer
Declare Function IsZoomed Lib "user32" (ByVal hwnd As Integer) As Integer
BAGenericObject
BAGenericObjectNoDeleteOSAID
BAObjectManager
AppleScriptObjectiveC
BAObjectProto
BAImmediateData
BADescriptorTranslation
AppleScriptObjC
BAFunctionInvocation
BAReferenceParameter
BAFunctionSignature
BAMethodSignature
BAXMLContext
NSXMLParserDelegate
NSObject
BAMetadataManager
m_ci
m_oid
dealloc
new
getOSAID
class
alloc
init
setComponentInstance:
setOSAID:
sharedManager
scriptComponentInstances
objectForKey:
pointerValue
superclass
valueWithPointer:
setObject:forKey:
scriptOSAIDs
unsignedIntValue
numberWithUnsignedInt:
objectForOSAID:inComponentInstance:
autorelease
standardUserDefaults
integerForKey:
initialize
component
componentInstanceForClass:
setComponentInstance:forClass:
OSAIDForClass:
setOSAID:forClass:
objectWithOSAID:inComponentInstance:
_debugLoggingLevel
pathsForResourcesOfType:inDirectory:
count
countByEnumeratingWithState:objects:count:
UTF8String
drain
loadAppleScriptObjectiveCScripts
getComponentInstance
finalize
initWithAEDescNoCopy:
numberOfItems
arrayWithCapacity:
descriptorAtIndex:
stringValue
addObject:
release
dictionaryWithCapacity:
aeDesc
string
dictionaryWithObjectsAndKeys:
errorWithDomain:code:userInfo:
invokeScriptHandler:forObject:inComponentInstance:args:error:
descriptorWithString:
retain
listDescriptor
invokeScriptHandler:args:error:
valueForUndefinedKey:
localizedDescription
code
self
hasScriptHandler:
insertDescriptor:atIndex:
hasScriptProperty:
setValue:forUndefinedKey:
propertyNames
containsObject:
setterNames
scriptHasSetter:
scriptRespondsToSelector:
respondsToSelector:
stringWithFormat:
exceptionWithName:reason:userInfo:
methodSignatureForSelector:
signatureForProtocolInstanceSelector:
signatureForProtocolClassSelector:
signatureWithObjCTypes:
selector
methodSignature
numberOfArguments
argumentDescriptorAtIndex:
setReturnValueWithDescriptor:
setNullReturnValue
forwardInvocation:
scriptHasGetter:
setReturnValueWithId:inComponent:
_allProperties
_getComponentInstance
_getOSAID
handlerNames
doesNotRecognizeSelector:
dumpProperties:
description
stringByReplacingOccurrencesOfString:withString:
length
rangeOfString:options:range:
hasPrefix:
characterAtIndex:
stringWithUTF8String:
mainBundle
bundleIdentifier
substringToIndex:
capitalizedString
substringFromIndex:
__descriptor
__shim
initWithObject:
_obj
descriptorForKeyword:
data
bytes
isKindOfClass:
descriptorWithTypeCode:
numberWithBool:
boolValue
descriptorWithBoolean:
objCType
floatValue
descriptorWithFloat:
doubleValue
descriptorWithDouble:
intValue
descriptorWithInt32:
initWithDescriptorType:bytes:length:
longLongValue
unsignedLongLongValue
getValue:
descriptorWithDate:
scheme
isEqualToString:
descriptorWithFileURL:
recordDescriptor
allKeys
setDescriptor:forKeyword:
annotatedEncodingForStructEncoding:
descriptorType
container
keyForm
desiredClass
keyData
constantValueForName:
enumCodeValue
objectAtIndex:
integerValue
valueForKey:
int32Value
numberWithInt:
uint32Value
int64Value
numberWithLongLong:
uint64Value
numberWithUnsignedLongLong:
booleanValue
numberWithFloat:
numberWithDouble:
dateValue
coerceToDescriptorType:
fileURLValue
null
keywordForDescriptorAtIndex:
typeCodeValue
numberWithChar:
numberWithUnsignedChar:
numberWithShort:
numberWithUnsignedShort:
numberWithLong:
numberWithUnsignedLong:
valueWithBytes:objCType:
target
array
methodReturnType
signatureForClass:selector:
returnType
getArgumentTypeAtIndex:
getArgument:atIndex:
getArgumentTypeAtIndex_m:
descriptorForFrameSlot:ofType:
getReturnValue:
methodReturnType_m
referenceParameters
modifier
descriptor
initWithEncoding:
addReferenceParameter:
storage
setArgument:atIndex:
methodName
_setArgumentWithDescriptor:atIndex:ofType:
reason
setArgumentWithDescriptor:atIndex:ofType:
setReturnValue:
argumentIdAtIndex:inComponent:
returnValueAsDescriptor
returnValueAsIdInComponent:
setArgumentWithDescriptor:atIndex:
setArgumentWithId:inComponent:atIndex:
initWithOptions:
initWithSignature:
setArgument:atIndex:withEncoding:
isVariadic
pointerAtIndex:
currentHandler
handleFailureInMethod:object:file:lineNumber:description:
invocationWithSignature:
setFunction:
invoke
_signature
_arg_types
_arg_values
_references
_rvalue
_rsize
_function
_seen_arg_max
getArgumentModifierAtIndex:
initWithEncoding:modifier:
_setArgumentWithDescriptor:atIndex:
initWithCString:encoding:
_storage
_encoding
_modifier
_copyValueOfDescriptorType:toBuffer:ofLength:
initWithBytes:length:encoding:
initWithKeyOptions:valueOptions:capacity:
addPointer:
setCount:
replacePointerAtIndex:withPointer:
paramDescriptorForKeyword:
attributeDescriptorForKeyword:
isEqual:
invocationWithMethodSignature:
setTarget:
setSelector:
invokeSuper
performSelector:
signatureForCFunction:
name
userInfo
replaceObjectAtIndex:withObject:
setValue:forKey:
unsignedIntegerValue
descriptorForKeyname:
descriptorWithInt64:
argTypes
setReturnType:
setArgumentType:modifier:atIndex:
addArgumentWithType:modifier:
setArgTypes:
argModifiers
setArgModifiers:
setIsVariadic:
_returnType
_argTypes
_argModifiers
_isVariadic
constants
numberWithInteger:
enums
structs
protocol_classMethods
protocol_instanceMethods
methods
dictionary
functions
performSelector:withObject:
performSelector:withObject:withObject:
isProxy
isMemberOfClass:
conformsToProtocol:
retainCount
zone
hash
debugDescription
parserDidStartDocument:
parserDidEndDocument:
parser:foundNotationDeclarationWithName:publicID:systemID:
parser:foundUnparsedEntityDeclarationWithName:publicID:systemID:notationName:
parser:foundAttributeDeclarationWithName:forElement:type:defaultValue:
parser:foundElementDeclarationWithName:model:
parser:foundInternalEntityDeclarationWithName:value:
parser:foundExternalEntityDeclarationWithName:publicID:systemID:
parser:didStartElement:namespaceURI:qualifiedName:attributes:
parser:didEndElement:namespaceURI:qualifiedName:
parser:didStartMappingPrefix:toURI:
parser:didEndMappingPrefix:
parser:foundCharacters:
parser:foundIgnorableWhitespace:
parser:foundProcessingInstructionWithTarget:data:
parser:foundComment:
parser:foundCDATA:
parser:resolveExternalEntityName:systemID:
parser:parseErrorOccurred:
parser:validationErrorOccurred:
initWithManager:
_m
_currentClass
_currentMethod
_currentProtocol
_currentFunction
_currentArgDepth
_currentSignature
_retvals
addMethodsFromProtocol:isInstanceMethod:isRequiredMethod:
bundlePath
lastPathComponent
stringByDeletingPathExtension
pathForResource:ofType:inDirectory:
pathForBridgeSupportOfType:inBundle:
fileURLWithPath:
initWithContentsOfURL:
setDelegate:
parse
parserError
fileSystemRepresentation
dictionaryWithObjects:forKeys:count:
bundleWithPath:
loadMetadataFromBundle:error:
needsUpdate
images
setWithCapacity:
mutableCopy
minusSet:
loadMetadataFromImagePath:
addMethodsFromAllProtocols
setImages:
setNeedsUpdate:
loadMetadataForLoadedImages
setByAddingObject:
_enums
_constants
_structs
_methods
_protocol_instanceMethods
_protocol_classMethods
_functions
_images
_needsUpdate
_stringByResolvingSymlinksInPathUsingCache:
stringByDeletingLastPathComponent
pathExtension
_BACreateClassForOSAIDInComponent
_BAHandleEvent
_BAObjCIDForOSAIDInComponent
_AECountItems
_AECreateAppleEvent
_AECreateDesc
_AECreateList
_AEDisposeDesc
_AEDuplicateDesc
_AEGetAttributePtr
_AEGetDescData
_AEGetDescDataSize
_AEGetNthDesc
_AEGetParamDesc
_AEGetParamPtr
_AEPutDesc
_AEPutParamDesc
_AEPutParamPtr
_AEPutPtr
_AESizeOfParam
_CFRelease
_CFRetain
_CFStringCreateWithBytes
_CreateObjSpecifier
_FSPathMakeRef
_GetCurrentProcess
_NSAllocateCollectable
_NSClassFromString
_NSFilePathErrorKey
_NSGetSizeAndAlignment
_NSInternalInconsistencyException
_NSInvalidArgumentException
_NSLocalizedDescriptionKey
_NSLog
_NSMapGet
_NSMapInsert
_NSOSStatusErrorDomain
_NSPOSIXErrorDomain
_NSRangeException
_NSSelectorFromString
_NSStringFromClass
_NSStringFromSelector
_NSUndefinedKeyException
_NSZoneFree
_OBJC_CLASS_$_NSAppleEventDescriptor
_OBJC_CLASS_$_NSArray
_OBJC_CLASS_$_NSAssertionHandler
_OBJC_CLASS_$_NSAutoreleasePool
_OBJC_CLASS_$_NSBundle
_OBJC_CLASS_$_NSDate
_OBJC_CLASS_$_NSDictionary
_OBJC_CLASS_$_NSError
_OBJC_CLASS_$_NSException
_OBJC_CLASS_$_NSInvocation
_OBJC_CLASS_$_NSMapTable
_OBJC_CLASS_$_NSMethodSignature
_OBJC_CLASS_$_NSMutableArray
_OBJC_CLASS_$_NSMutableDictionary
_OBJC_CLASS_$_NSMutableSet
_OBJC_CLASS_$_NSNull
_OBJC_CLASS_$_NSNumber
_OBJC_CLASS_$_NSObject
_OBJC_CLASS_$_NSPointerArray
_OBJC_CLASS_$_NSString
_OBJC_CLASS_$_NSURL
_OBJC_CLASS_$_NSUserDefaults
_OBJC_CLASS_$_NSValue
_OBJC_CLASS_$_NSXMLParser
_OBJC_EHTYPE_$_NSException
_OBJC_EHTYPE_id
_OBJC_METACLASS_$_NSObject
_OSACoerceFromDesc
_OSACoerceToDesc
_OSACopyScript
_OSACopySourceString
_OSADispose
_OSAExecuteEvent
_OSAGetHandler
_OSAGetHandlerNames
_OSAGetProperty
_OSAGetPropertyNames
_OSAGetScriptInfo
_OSAGetSendProc
_OSALoadFile
_OSAScriptError
_OSASetActiveProc
_OSASetProperty
_OSASetResumeDispatchProc
_OSASetScriptInfo
_OSASetSendProc
_OpenDefaultComponent
__Block_object_assign
__Block_object_dispose
__DefaultRuneLocale
__NSConcreteGlobalBlock
__NSConcreteStackBlock
__NSMethodExceptionProem
__Unwind_Resume
___CFConstantStringClassReference
___bzero
___error
___maskrune
___objc_personality_v0
___stack_chk_fail
___stack_chk_guard
___stderrp
___strlcat_chk
___strlcpy_chk
__dyld_register_func_for_add_image
__objc_empty_cache
__objc_msgForward
__objc_msgForward_stret
_calloc
_class_addIvar
_class_addMethod
_class_copyMethodList
_class_getClassMethod
_class_getInstanceMethod
_class_getInstanceVariable
_class_isMetaClass
_dladdr
_dlerror
_dlopen
_dlsym
_ffi_call
_ffi_prep_cif
_ffi_type_double
_ffi_type_float
_ffi_type_pointer
_ffi_type_sint16
_ffi_type_sint32
_ffi_type_sint64
_ffi_type_sint8
_ffi_type_uint16
_ffi_type_uint32
_ffi_type_uint64
_ffi_type_uint8
_ffi_type_void
_fprintf
_free
_ivar_getOffset
_malloc
_memcpy
_method_getImplementation
_method_getName
_method_getTypeEncoding
_msgtracer_log_with_keys
_objc_allocateClassPair
_objc_autoreleasePoolPop
_objc_autoreleasePoolPush
_objc_begin_catch
_objc_copyImageNames
_objc_copyProtocolList
_objc_end_catch
_objc_enumerationMutation
_objc_exception_throw
_objc_getAssociatedObject
_objc_getClass
_objc_getProperty
_objc_msgSend
_objc_msgSendSuper2
_objc_registerClassPair
_objc_setAssociatedObject
_objc_setProperty_atomic
_objc_setProperty_nonatomic
_objc_sync_enter
_objc_sync_exit
_objc_terminate
_object_getClass
_object_getInstanceVariable
_protocol_copyMethodDescriptionList
_sel_getName
_sel_registerName
_strcmp
_strdup
_strlen
_strncmp
_strndup
dyld_stub_binder
-[BAGenericObjectNoDeleteOSAID dealloc]
_applescript_allocateClass
+[BAObjectManager initialize]
+[BAObjectManager component]
+[BAObjectManager scriptComponentInstances]
+[BAObjectManager componentInstanceForClass:]
+[BAObjectManager setComponentInstance:forClass:]
+[BAObjectManager scriptOSAIDs]
+[BAObjectManager OSAIDForClass:]
+[BAObjectManager setOSAID:forClass:]
+[BAObjectManager objectForOSAID:inComponentInstance:]
+[BAObjectManager objectWithOSAID:inComponentInstance:]
+[BAObjectManager _debugLoggingLevel]
-[NSBundle(AppleScriptObjectiveC) loadAppleScriptObjectiveCScripts]
+[BAObjectProto getComponentInstance]
-[BAObjectProto _getComponentInstance]
-[BAObjectProto getComponentInstance]
-[BAObjectProto setComponentInstance:]
+[BAObjectProto getOSAID]
-[BAObjectProto _getOSAID]
-[BAObjectProto getOSAID]
-[BAObjectProto setOSAID:]
-[BAObjectProto dealloc]
-[BAObjectProto finalize]
-[BAObjectProto propertyNames]
-[BAObjectProto _allProperties]
-[BAObjectProto setterNames]
_setterForKey
-[BAObjectProto handlerNames]
_applescript_copyMethodNames
+[BAObjectProto invokeScriptHandler:forObject:inComponentInstance:args:error:]
+[BAObjectProto invokeScriptHandler:args:error:]
-[BAObjectProto invokeScriptHandler:args:error:]
+[BAObjectProto hasScriptHandler:]
_osaidHasHandler
-[BAObjectProto hasScriptHandler:]
-[BAObjectProto hasScriptProperty:]
-[BAObjectProto valueForUndefinedKey:]
-[BAObjectProto setValue:forUndefinedKey:]
-[BAObjectProto scriptHasGetter:]
-[BAObjectProto scriptHasSetter:]
-[BAObjectProto scriptRespondsToSelector:]
-[BAObjectProto respondsToSelector:]
-[BAObjectProto doesNotRecognizeSelector:]
-[BAObjectProto methodSignatureForSelector:]
+[BAObjectProto forwardInvocation:]
-[BAObjectProto forwardInvocation:]
-[BAObjectProto dumpProperties:]
-[BAObjectProto description]
_impForEncoding
_applescript_getMethodSignature
-[BAImmediateData initWithObject:]
-[BAImmediateData dealloc]
-[BAImmediateData __descriptor]
_descriptorForObject
-[BAImmediateData __shim]
_mungeCPointer
_descriptorForData
_specifierForObjCInstance
_shimForObject
_dataForDescriptor
__dataForDescriptor
_objcInstanceForSpecifier
___objcInstanceForSpecifier_block_invoke
_objectForData
_objectForDescriptor
-[NSInvocation(AppleScriptObjC) methodName]
-[NSInvocation(AppleScriptObjC) referenceParameters]
-[NSInvocation(AppleScriptObjC) addReferenceParameter:]
_unqualified_type_encoding
-[NSInvocation(AppleScriptObjC) methodReturnType_m]
-[NSInvocation(AppleScriptObjC) getArgumentTypeAtIndex_m:]
-[NSInvocation(AppleScriptObjC) descriptorForFrameSlot:ofType:]
-[NSInvocation(AppleScriptObjC) argumentDescriptorAtIndex:]
___59-[NSInvocation(AppleScriptObjC) argumentDescriptorAtIndex:]_block_invoke
___copy_helper_block_e8_32o
___destroy_helper_block_e8_32o
-[NSInvocation(AppleScriptObjC) argumentIdAtIndex:inComponent:]
-[NSInvocation(AppleScriptObjC) returnValueAsDescriptor]
___56-[NSInvocation(AppleScriptObjC) returnValueAsDescriptor]_block_invoke
-[NSInvocation(AppleScriptObjC) returnValueAsIdInComponent:]
-[NSInvocation(AppleScriptObjC) _setArgumentWithDescriptor:atIndex:ofType:]
-[NSInvocation(AppleScriptObjC) setArgumentWithDescriptor:atIndex:ofType:]
-[NSInvocation(AppleScriptObjC) setArgumentWithDescriptor:atIndex:]
-[NSInvocation(AppleScriptObjC) setArgumentWithId:inComponent:atIndex:]
-[NSInvocation(AppleScriptObjC) setReturnValueWithDescriptor:]
-[NSInvocation(AppleScriptObjC) setReturnValueWithId:inComponent:]
-[NSInvocation(AppleScriptObjC) setNullReturnValue]
-[BAFunctionInvocation initWithSignature:]
-[BAFunctionInvocation dealloc]
+[BAFunctionInvocation invocationWithSignature:]
-[BAFunctionInvocation setFunction:]
-[BAFunctionInvocation setArgument:atIndex:withEncoding:]
_ffi_type_for_encoding
_setPointerAtIndex
-[BAFunctionInvocation setArgument:atIndex:]
-[BAFunctionInvocation invoke]
-[BAFunctionInvocation getReturnValue:]
-[BAFunctionInvocation(AppleScriptObjC) referenceParameters]
-[BAFunctionInvocation(AppleScriptObjC) addReferenceParameter:]
-[BAFunctionInvocation(AppleScriptObjC) _setArgumentWithDescriptor:atIndex:]
-[BAFunctionInvocation(AppleScriptObjC) setArgumentWithDescriptor:atIndex:]
-[BAFunctionInvocation(AppleScriptObjC) returnValueAsDescriptor]
-[BAReferenceParameter initWithEncoding:]
-[BAReferenceParameter initWithEncoding:modifier:]
-[BAReferenceParameter dealloc]
-[BAReferenceParameter storage]
-[BAReferenceParameter descriptor]
-[BAReferenceParameter modifier]
__descriptorForData
_walk_struct
____descriptorForData_block_invoke
___copy_helper_block_e8_32r
___destroy_helper_block_e8_32r
_specifierForCPointer
_skipAggregateName
____dataForDescriptor_block_invoke
___copy_helper_block_e8_32o40o48r56r
___destroy_helper_block_e8_32o40o48r56r
_ffi_type_map
_BAActiveProc
_BAResumeProc
_Invoke
_BAHandleEventInternal
_AEGetParamDescriptor
_BASendProc
__description
_has_family_prefix
_ProcessSpecifierException
___ApplicationSetDataHandler_block_invoke
___ApplicationSetDataHandler_block_invoke.172
+[NSAppleEventDescriptor(AppleScriptObjC) descriptorWithFloat:]
+[NSAppleEventDescriptor(AppleScriptObjC) descriptorWithInt64:]
-[NSAppleEventDescriptor(AppleScriptObjC) floatValue]
-[NSAppleEventDescriptor(AppleScriptObjC) uint32Value]
-[NSAppleEventDescriptor(AppleScriptObjC) int64Value]
-[NSAppleEventDescriptor(AppleScriptObjC) uint64Value]
-[NSAppleEventDescriptor(AppleScriptObjC) integerValue]
-[NSAppleEventDescriptor(AppleScriptObjC) unsignedIntegerValue]
-[NSAppleEventDescriptor(AppleScriptObjC) desiredClass]
-[NSAppleEventDescriptor(AppleScriptObjC) keyForm]
-[NSAppleEventDescriptor(AppleScriptObjC) keyData]
-[NSAppleEventDescriptor(AppleScriptObjC) container]
-[NSAppleEventDescriptor(AppleScriptObjC) descriptorForKeyname:]
-[BAFunctionSignature init]
-[BAFunctionSignature dealloc]
-[BAFunctionSignature numberOfArguments]
-[BAFunctionSignature getArgumentTypeAtIndex:]
-[BAFunctionSignature getArgumentModifierAtIndex:]
-[BAFunctionSignature returnType]
-[BAFunctionSignature setReturnType:]
-[BAFunctionSignature setArgumentType:modifier:atIndex:]
-[BAFunctionSignature addArgumentWithType:modifier:]
-[BAFunctionSignature argTypes]
-[BAFunctionSignature setArgTypes:]
-[BAFunctionSignature argModifiers]
-[BAFunctionSignature setArgModifiers:]
-[BAFunctionSignature isVariadic]
-[BAFunctionSignature setIsVariadic:]
-[BAMethodSignature numberOfArguments]
-[BAMethodSignature returnType]
-[BAMethodSignature getArgumentTypeAtIndex:]
-[BAMethodSignature getArgumentModifierAtIndex:]
-[BAMethodSignature setArgumentType:modifier:atIndex:]
-[BAXMLContext initWithManager:]
-[BAXMLContext dealloc]
-[BAXMLContext parser:didStartElement:namespaceURI:qualifiedName:attributes:]
_type_attribute
-[BAXMLContext parser:didEndElement:namespaceURI:qualifiedName:]
_AddressOfSymbol
+[BAMetadataManager sharedManager]
_BA_dyld_image_added
-[BAMetadataManager addMethodsFromProtocol:isInstanceMethod:isRequiredMethod:]
-[BAMetadataManager addMethodsFromAllProtocols]
-[BAMetadataManager init]
-[BAMetadataManager dealloc]
-[BAMetadataManager pathForBridgeSupportOfType:inBundle:]
-[BAMetadataManager loadMetadataFromBundle:error:]
-[BAMetadataManager loadMetadataFromImagePath:]
-[BAMetadataManager loadMetadataForLoadedImages]
-[BAMetadataManager constantValueForName:]
-[BAMetadataManager signatureForClass:selector:]
-[BAMetadataManager signatureForProtocolInstanceSelector:]
-[BAMetadataManager signatureForProtocolClassSelector:]
-[BAMetadataManager signatureForCFunction:]
-[BAMetadataManager annotatedEncodingForStructEncoding:]
-[BAMetadataManager enums]
-[BAMetadataManager constants]
-[BAMetadataManager structs]
-[BAMetadataManager methods]
-[BAMetadataManager protocol_instanceMethods]
-[BAMetadataManager protocol_classMethods]
-[BAMetadataManager functions]
-[BAMetadataManager images]
-[BAMetadataManager setImages:]
-[BAMetadataManager needsUpdate]
-[BAMetadataManager setNeedsUpdate:]
GCC_except_table10
GCC_except_table31
GCC_except_table50
GCC_except_table58
GCC_except_table2
GCC_except_table3
GCC_except_table7
GCC_except_table35
GCC_except_table40
___block_descriptor_32_e13_@24@?0^v8r*16l
___block_literal_global
___block_descriptor_48_e8_32o_e9_v16@?0^v8l
___block_descriptor_40_e8_32o_e9_v16@?0^v8l
___block_descriptor_40_e8_32r_e21_v40@?0^v8r*16r*24r*32l
___block_descriptor_64_e8_32o40o48r56r_e21_v40@?0^v8r*16r*24r*32l
___block_descriptor_48_e8_32o_e13_@24@?0^v8r*16l
_OBJC_IVAR_$_BAGenericObject.m_ci
_OBJC_IVAR_$_BAGenericObject.m_oid
_OBJC_IVAR_$_BAImmediateData._obj
_OBJC_IVAR_$_BAFunctionInvocation._signature
_OBJC_IVAR_$_BAFunctionInvocation._arg_types
_OBJC_IVAR_$_BAFunctionInvocation._arg_values
_OBJC_IVAR_$_BAFunctionInvocation._seen_arg_max
_OBJC_IVAR_$_BAFunctionInvocation._rvalue
_OBJC_IVAR_$_BAFunctionInvocation._function
_OBJC_IVAR_$_BAFunctionInvocation._rsize
_OBJC_IVAR_$_BAFunctionInvocation._references
_OBJC_IVAR_$_BAReferenceParameter._encoding
_OBJC_IVAR_$_BAReferenceParameter._storage
_OBJC_IVAR_$_BAReferenceParameter._modifier
_OBJC_IVAR_$_BAFunctionSignature._argTypes
_OBJC_IVAR_$_BAFunctionSignature._argModifiers
_OBJC_IVAR_$_BAFunctionSignature._returnType
_OBJC_IVAR_$_BAFunctionSignature._isVariadic
_OBJC_IVAR_$_BAXMLContext._m
_OBJC_IVAR_$_BAXMLContext._currentClass
_OBJC_IVAR_$_BAXMLContext._currentProtocol
_OBJC_IVAR_$_BAXMLContext._currentMethod
_OBJC_IVAR_$_BAXMLContext._currentSignature
_OBJC_IVAR_$_BAXMLContext._currentFunction
_OBJC_IVAR_$_BAXMLContext._currentArgDepth
_OBJC_IVAR_$_BAXMLContext._retvals
_OBJC_IVAR_$_BAMetadataManager._protocol_instanceMethods
_OBJC_IVAR_$_BAMetadataManager._protocol_classMethods
_OBJC_IVAR_$_BAMetadataManager._enums
_OBJC_IVAR_$_BAMetadataManager._constants
_OBJC_IVAR_$_BAMetadataManager._structs
_OBJC_IVAR_$_BAMetadataManager._methods
_OBJC_IVAR_$_BAMetadataManager._functions
_OBJC_IVAR_$_BAMetadataManager._needsUpdate
_OBJC_IVAR_$_BAMetadataManager._images
_OBJC_CLASS_$_BAFunctionInvocation
_OBJC_CLASS_$_BAFunctionSignature
_OBJC_CLASS_$_BAGenericObject
_OBJC_CLASS_$_BAGenericObjectNoDeleteOSAID
_OBJC_CLASS_$_BAImmediateData
_OBJC_CLASS_$_BAMetadataManager
_OBJC_CLASS_$_BAMethodSignature
_OBJC_CLASS_$_BAObjectManager
_OBJC_CLASS_$_BAObjectProto
_OBJC_CLASS_$_BAReferenceParameter
_OBJC_CLASS_$_BAXMLContext
_OBJC_METACLASS_$_BAFunctionInvocation
_OBJC_METACLASS_$_BAFunctionSignature
_OBJC_METACLASS_$_BAGenericObject
_OBJC_METACLASS_$_BAGenericObjectNoDeleteOSAID
_OBJC_METACLASS_$_BAImmediateData
_OBJC_METACLASS_$_BAMetadataManager
_OBJC_METACLASS_$_BAMethodSignature
_OBJC_METACLASS_$_BAObjectManager
_OBJC_METACLASS_$_BAObjectProto
_OBJC_METACLASS_$_BAReferenceParameter
_OBJC_METACLASS_$_BAXMLContext
_sharedManager._sharedMetadataManager
__debugLoggingLevel.level
_component._ci
_scriptComponentInstances._scriptComponentInstances
_scriptOSAIDs._scriptOSAIDs
_BAReferenceParameterKey
_ffi_type_map.ffiMap
_IsAddressedToCurrentProcess.selfPSN
_gOriginalRefcon
_gOriginalSendProc
_MsoFZUncompressFromStream
_MsoFZUncompressMemory
_MsoFZCompressToStream
_MsoFZCompressMemory
_MsoPibGlobalBrokenPicture
_MsoPtvFromBlip
_MsoPtaFromBlipDPI
_MsoPtaFromBlip
_MsoFLoadBlip
_MsoFCreatePngBlip
__ZN8AGIFINFOD1Ev
__ZN8AGIFINFOC1Ev
__ZN8AGIFINFO4PAgpEPK5MSODCPK8IMsoBlipPK13MSOBDRAWPARAM
_MsoUAGIFMinFrameDelay
_MsoUAGIFFrame
_MsoFCreatePngBlipFromBmp
_MsoFCreatePngBlipFromBm
_MsoFAGIF
_MsoFExportPictWithHeader
_MsoFCreatePictBlip
_MsoFSetNoConvPictBmp
_PDFObjToCGImage
_MsoGetPDFPage
_MsoFIsPDFFile
_MsoPDFToPict
_Msojpeg_set_colorspace
_Msojpeg_write_scanlines
_Msojpeg_write_marker
_Msojpeg_std_error
_Msojpeg_start_compress
_Msojpeg_simple_progression
_Msojpeg_set_quality
_Msojpeg_set_defaults
_Msojpeg_finish_compress
_Msojpeg_destroy_compress
_Msojpeg_create_compress
__Z14FCreateGifBlipPP8IMsoBlipPPcPviPFiS4_ES4_
__Z19PDFFromMetafileDataPKvlP14IMFF_Callbacks
__ZTV21IMFF_DefaultCallbacks
__ZTI21IMFF_DefaultCallbacks
__ZN21IMFF_DefaultCallbacks18MFF_FilterProgressEii
__ZN21IMFF_DefaultCallbacks16MFF_MetafileTypeEm
_MsoFGetFiltersInfo
_MsoFInsertPictureDlg
_MsoFIsFilterSupportAvailable
_MsoFreeFiltersInfo
_MsoInitPictDlgParam
_MsoPictFromWMF
_MsoPictFromWMFPtr
_MsoCreateFileFromBlip
_MsoUninitGrFiltersMem
__ZN21IMFF_DefaultCallbacks10MFF_OpcodeEmlPKv
__ZN21IMFF_DefaultCallbacks25MFF_FullOpcodeInformationEP20MFF_OpcodeAttributes
_MsoInitMFData
_MsoCleanMFData
_MsoFCreateMFBlip
_MsoMFDataFromMetafilepict
__Z24UncompressCFDataToStreamPK8__CFDataP7IStreamPFiPvES4_
__Z20UncompressZCFDataRefPK8__CFDataPFiPvES2_
_MsoBfilePurge
_MsoPibFromWzOptionsHtmlImport
_MsoPibFromWzOptions
_MsoPibAdd
_MsoPibFromWz
_MsoFCreatePngBlipFromDib
__ZN3Mso15UTIDescriptions17LoadFromPlistFileEPK7__CFURL
__ZN3Mso15UTIDescriptions37UTTypeCreatePreferredIdentifierForTagEPK10__CFStringS3_S3_
_MsoEndCGRendering
_MsoFBeginCGRendering
_MsoHspNextRoot
_MsoPidgFromHsp
_MsoInitHspcmp
_MsoInitDgsi
_MsoInitDggsi
_MsoHspNextAll
_MsoGetPvAnchorOfHsp
_MsoGetClientDataOfHsp
_MsoFreeRgspp
_MsoFSetPropertyOfHsp
_MsoFIsClsidPicture
_MsoFHtmlSpid
_MsoFGetRelatedShape
_MsoFGetPropertyOfHsp
_MsoFCreateDrawingGroup
_MsoFCompareShapes
_MsoInitDgslsi
_MsoMmBuild
_MsoInitDgvsi
_MsoFAddRcToRgnx
_MsoInitDmsi
_MsoFCreateDisplayManager
_MsoDrawingDownloadIdle
_MsoFWriteFbh
_MsoFExportMailHackImg
_MsoFBlipDoPassThru
_MsoFAddBlipToResaveCache
_MsoFWantImgShapesAttribute
_MsoFHspCanPassThru
_MsoFHspDoPassThru
_MsoInitDghesi
_MsoFBlipCanPassThru
_MsoHrCreateDGHEFromHE
_MsoFCreateArray
_MsoPopinfoGet
_MsoGetPropNinch
_MsoGetPropSetNinch
_MsoGetPropDefault
_MsoFLoadPropName
_MsoFIsValidValue
_MsoFIsPropSetEqual
_MsoFIsValidOpid
_MsoFIsLineStylePropSetEqual
_MsoFIsDefault
_MsoFreeProp
_MsoFCopyProp
_MsoFIsPropEqual
_MsoFIsNinch
_MsoFEnumOPIDEN
_MsoGetPropSetDefault
_MsoFCopyPropSet
_MsoFreePropSet
_MsoInitPropSetOPIDEN
_MsoFCreateHTMLResaveCache
_MsoFMapToGuides
_MsoFSavePropSet
_MsoFLoadPropSet
_MsoFGetAltText
_MsoFUpdateBlipsInSp
_MsoFDrawShape
_MsoSetDcScale
_MsoInitSviAngle
_MsoRcFromAngle
_MsoCrFromTextColor
_MsoFPxCHAFromRT
_MsoFreeFontTbl
_MsoFFixupFill
_MsoFCreateDrawingXMLImport
_MsoFRemoveHspFromShapeKeys
_MsoInitDgxmlisi
_MsoInitXMLWrite
_MsoFGEBlip
_MsoFBlurPixMap
_MsoFShouldWriteHtmlBackground
_MsoFExportBlip
_MsoFWriteHtmlBackground
_MsoFCreateBitmapSurface
_MsoFCreateCGSurface
_MsoFMake2DGE
_MsoRectRotate
__ZN12MsoPathMaker10AngleArcToEiiilli
__ZNK12MsoPathMaker11FHandlePathEv
__ZTV12MsoPathMaker
__ZTI12MsoPathMaker
__ZN12MsoPathMaker9BeginPathEv
__ZN12MsoPathMaker8MoveToExEiiP8tagPOINT
__ZN12MsoPathMaker14FEditingEscapeE13MSOPATHESCAPE
__ZN12MsoPathMaker14FControlEscapeE13MSOPATHESCAPE
__ZN12MsoPathMaker14AngleEllipseToEiiiilli
__ZN12MsoPathMaker13FClientEscapeEPK8tagPOINTii
__ZN12MsoPathMaker12PolyBezierToEPK8tagPOINTi
__ZN12MsoPathMaker11CloseFigureEv
__ZN12MsoPathMaker10PolylineToEPK8tagPOINTi
_MsoPathFree
__ZN12MsoPathMaker8FAddPathEPK8tagPOINTiPKti
__ZN12MsoPathMaker7FEscapeEPK8tagPOINTi13MSOPATHESCAPE
__ZN12MsoPathMaker7EndPathEv
__ZN12MsoPathMaker5ArcToEiiiiiiiiii
__ZN12MsoPathMaker23FQuadraticBezierControlEPK8tagPOINTi
__ZN12MsoPathMaker20FEllipticalQuadrantYEii
__ZN12MsoPathMaker20FEllipticalQuadrantXEii
_MsoGetThumbWithOfficeFilter
_MsoFPlayPictFile
_MsoRenderPICTForThumbnail
_MsoFWrapPdfInPICT
_CrModify
_MsoFGTransformCreate
_MsoHrCreateTimeBehavior
_MsoHrCreateTimeCondition
__ZN11MsoTVariantaSEf
__ZN11MsoTVariant10SetVARIANTER10tagVARIANT
__ZNK11MsoTVariant9GetStringEv
__ZNK11MsoTVariant11GetAsStringEPwi
__ZN11MsoTVariantaSERKS_
__ZNK11MsoTVariant10GetAsFloatEPf
__ZNK6MSOTAV10GetFormulaEv
__ZN11MsoTVariantaSEPKw
__ZN11MsoTVariantC1Ev
__ZN11MsoTVariantC1ERKS_
__ZN11MsoTVariantC1EPKw
__ZN11MsoTVariant5ResetEv
__ZN6MSOTAV10SetFormulaEPKw
__ZN11MsoTVariantaSEi
__ZN11MsoTVariantC1ERK10tagVARIANT
_MsoHrCreateTimeMediaElement
_MsoHrCreateTimeNode
_MsoHrCreateTimeStructure
_MsoExportCGImage
_UpdateDragMoveRdrgtt
_RdrgttCreate
_DestroyRdrgtt
__ZN5DRGTT14UpdateDragMoveEP7tagRECTP8tagPOINT
__ZN5DRGTTD1Ev
__Z10ValGetTmcSj
_MsoFSCItemProc
_MsoPIFUSetIFU
__Z19FDrawBStripInWindowP5HDC__iiiiP6BSTRIPii
__Z15CchAppendUnitWzPwiib
_MsoFCreateEffectsDlg
_MsoWParseProc
_MsoFProcessItemMsg
_MsoWListStt
__Z17FLineStyleChangedll
_MsoFProcessDlgMsg
_MsoPreMatchGradient
__Z16IPibTagFromIndexi
_MsoFLinkedScrollProc
__ZN10TEXTSCROLL8SetRangeEii
_MsoTruncateFileNameWz
_MsoCrSetBrightness
__ZN5DRPCW18FHandleDoubleClickEv
_MsoLGetBrightness
__Z18LHandleScrollEventjjjj
_MsoCrGetBackColorValue
__Z8FInitPicjPvP4_rec
__Z10DefPicProcjP5_sdmpjjjj
__Z18SetupTextureScrollji
__Z23SetTextureScrollPageIncji
__Z14TermScrollBarsj
__Z27FindTextureRowFromScrollTmcPij
_WPicPicture
__ZN10TEXTSCROLL8GetRangeEPiS0_
__Z19SetNewTextureScrollmjj
_MsoFLinkedSpinnerProc
__ZN9DRTEXTURE8IHitTestEP5Point
__Z11FillRectRGBP5HDC__P7tagRECTm
__Z11PibFromUtagm
__ZN9DRTEXTURE18UpdateTextureLabelEPwi
__ZN9DRTEXTURE9FSetOtherEP8IMsoBlipPKwPi
__ZN9DRTEXTUREC1EjP12IMsoFillsDlg
_MsoFCreateColorsDlg
_MsoFCreateFillsDlg
_MsoRgCrGradientPreset
__ZN9DRTEXTURE10FIsVisibleEi
__ZN9DRTEXTURE11FHandleCharEP11EventRecord
__ZN9DRTEXTURE11FValidIRectEi
__ZN9DRTEXTURE11GotoNewLineEcPiS0_S0_
_MsoPibStandard
__ZTV9DRTEXTURE
__ZTS9DRTEXTURE
__ZN9DRTEXTURE12SetScreenSelEi
__ZN9DRTEXTURE13FSetupDrawingEP7tagRECT
__ZN9DRTEXTURE14FHandleLButtonEP11EventRecord
__ZN9DRTEXTURE5FInitEv
__ZN9DRTEXTURE6SetSelEi
__ZN9DRTEXTURE7DrawPicEP5HDC__P7tagRECTii
__ZN9DRTEXTURE7FIsEdgeEi
__ZN9DRTEXTURE7FScrollEii
__ZN9DRTEXTURE9DrawFocusEP5HDC__P7tagRECTii
__ZN9DRTEXTUREC2EjP12IMsoFillsDlg
__ZN9DRTEXTURED0Ev
__ZN9DRTEXTURED1Ev
__ZN9DRTEXTURED2Ev
__ZTI9DRTEXTURE
_MsoFCreateFormatObjectDlg
_EyeDropperTool
_FGetDrEventHandler
_FReleaseDrEventHandler
__ZN4DNGM14QueryInterfaceERK4GUIDPPv
__ZN4DNGM14QueryInterfaceERK4GUIDPPv.eh
__ZN4DNGM9FAddGuideEP7tagRECT
__ZN4DNGM16FSetParentWindowEP15OpaqueWindowPtr
__ZN4DNGM8FEndDragEv
__ZN4DNGMC1EP15OpaqueWindowPtr
__ZN4DNGMD2Ev.eh
__ZN4DNGMD2Ev
__ZN4DNGMD1Ev.eh
__ZN4DNGMD1Ev
__ZN4DNGMD0Ev.eh
__ZN4DNGMD0Ev
__ZN4DNGM12FEndDragMoveEv.eh
__ZN4DNGM14FBeginDragMoveEP7tagRECT
__ZN4DNGM14FBeginDragMoveEP7tagRECT.eh
__ZN4DNGMC2EP15OpaqueWindowPtr.eh
__ZN4DNGMC2EP15OpaqueWindowPtr
__ZN4DNGM12FEndDragMoveEv
__ZN4DNGMC1EP15OpaqueWindowPtr.eh
__ZN4DNGM9FAddGuideEP7tagRECT.eh
__ZN4DNGM8FIsValidEv
__ZN4DNGM8FEndDragEv.eh
_MovDuplicateMovie
_MsoOSResolveLink
_MsoPutMovieIntoHandle
_MsoOSLoadMovie
_MsoFreeMovie
_MsoFReattachSoundDlg
_MsoFReattachMovieDlg
_MsoFMovFromFile
_MsoFIsSoundFile
_MsoFIsMovieFile
_MsoFSerializeMovie
_MsoFDoSoundDlg
_MsoFDoMovieDlg
_MsoFCreateMoviePlayer
_MsoFCanQTOpen
_MsoExtractMoviePath
_MsoFMovieFromHandle
__ZN4DRPC13FSetupDrawingEP7tagRECT
__ZN4DRPC14FHandleRButtonEP6HWND__jjl8tagPOINT
__ZN4DRPC14FHandleLButtonEP11EventRecord
__ZN4DRPC25HpalSelectHalfTonePaletteEP5HDC__
__ZN5DRPCW7DrawPicEP5HDC__P7tagRECTii
__ZN5DRPCW11FHandleCharEP11EventRecord
__ZN4DRPC12FCanGetFocusEv
__ZTV5DRPCW
__ZN4DRPC11HandleFocusEi
__ZTS5DRPCW
__ZTS4DRPC
__ZTI5DRPCW
__ZN5DRPCWD2Ev
__ZN5DRPCWC2EjP12IMsoFillsDlg
__ZN5DRPCW9IGetFocusEv
__ZN5DRPCW9DrawFocusEP5HDC__P7tagRECTii
__ZN5DRPCW8SetFocusEi
__ZN5DRPCW8IHitTestEP5Point
__ZN5DRPCW7IGetSelEv
__ZN5DRPCW6SetSelEi
__ZN5DRPCW6CCountEv
__ZN5DRPCW5GetDcEP5HDC__
__ZTI4DRPC
__ZN5DRPCWD1Ev
__ZN5DRPCW5FInitEv
__ZN5DRPCW18DrawNewPictureWellEP5HDC__P7tagRECTRKiS5_
__ZN5DRPCW14FHandleLButtonEP11EventRecord
__ZN5DRPCW13FSetupDrawingEP7tagRECT
__ZN5DRPCW12FTermDrawingEv
__ZN4DRPC3PrcEv
__ZN4DRPC12FHandleInputEP11EventRecord
__ZTV4DRPC
__ZN5DRPCWD0Ev
__ZN5DRPCWC1EjP12IMsoFillsDlg
__ZN5DRPCW14FMoveSelectionEci
__ZN5DRPCW10InitColorsEv
__ZN4DRPCD2Ev
__ZN4DRPCD1Ev
__ZN4DRPCD0Ev
__ZN4DRPCC2Ej
__ZN4DRPCC1Ej
__ZN4DRPC9IGetFocusEv
__ZN4DRPC9DrawFocusEP5HDC__P7tagRECTii
__ZN4DRPC8IHitTestEP5Point
__ZN4DRPC7IGetSelEv
__ZN4DRPC7DrawPicEP5HDC__P7tagRECTii
__ZN4DRPC6SetSelEi
__ZN4DRPC6CCountEv
__ZN4DRPC5GetDcEP5HDC__
__ZN4DRPC5FInitEv
__ZN4DRPC11FHandleCharEP11EventRecord
__ZN4DRPC12FRedrawFocusEv
__ZN4DRPC12FTermDrawingEv
__ZN4DRPC14SetFocusRedrawEi
_MsoFCreateTextEditDlg
_MsoFCreateInsertTextEffectDlg
_MsoDrTxFGetStyleInfo
_MsoGetGeoTextFromPreset
_MsoFTxEffPreForDgcid
__ZN21MsoAccessibilityGroup10GetMHIViewEv
__ZN21MsoAccessibilityGroupD0Ev
__ZN21MsoAccessibilityGroupD1Ev
__ZTV21MsoAccessibilityGroup
__ZTS21MsoAccessibilityGroup
__ZTI23MsoAccessibilityControl
__ZTI21MsoAccessibilityGroup
__ZTS23MsoAccessibilityControl
__ZN23MsoAccessibilityControlD2Ev
__ZN21MsoAccessibilityGroupD2Ev
__ZN23MsoAccessibilityControlD1Ev
__ZN23MsoAccessibilityControlD0Ev
__ZN23MsoAccessibilityControl8SetTitleEPK10__CFString
__ZN23MsoAccessibilityControl8FGetRectEP7tagRECT
__ZN23MsoAccessibilityControl8FVisibleEv
__ZN23MsoAccessibilityControlC1ER7MHIViewP21MsoAccessibilityGroupyPK10__CFStringN14MAccessibility19SupportedAttributesES8_NS7_16SupportedActionsEP7tagRECTS6_S6_
__ZN21MsoAccessibilityGroupC1ER7MHIViewPK10__CFStringS4_N14MAccessibility19SupportedAttributesES6_NS5_16SupportedActionsE
__ZN21MsoAccessibilityGroup23AddAccessibilityControlEP23MsoAccessibilityControl
__ZN21MsoAccessibilityGroup12FreeChildrenEv
__ZN21MsoAccessibilityGroup26RemoveAccessibilityControlEP23MsoAccessibilityControl
__ZTV23MsoAccessibilityControl
_MsoHrGetILockBytesFromIBS
_MsoHrGetIStorageFromIBS
_MsoHrGetIStreamFromIBS
_MsoHrGetIStreamFromIBSEx
_IID_IZipArchive
_MsoCreateCompatibilityReportPane
_MsoCRFUserScan
_MsoCompatibilityTerminate
_MsoCompatibilityReportPaneDispose
_MsoFCompatibilityInit
_MsoCRUpdateDocDone
_MsoCRSetInfoBar
_MsoCRSetFocusResults
_MsoCRScanFAbort
_MsoCRScanDocument
__ZN4CUnkC2EP8IUnknown
__ZN4CUnkD0Ev
__ZN4CUnkD1Ev
__ZTv0_n12_N4CUnk14QueryInterfaceERK4GUIDPPv
__ZTI4CUnk
__ZN4CUnkD2Ev
__ZTv0_n16_N4CUnk6AddRefEv
__ZN4CUnk14QueryInterfaceERK4GUIDPPv
__ZN4CUnk6AddRefEv
__ZN4CUnk7ReleaseEv
__ZTv0_n20_N4CUnk7ReleaseEv
_MsoReleaseDragImageCookie
_MsoFSetDragImagePicture
_MsoFInitDragImageParams
_MsoSetDragCursor
_MsoFTrackLocalDrag
_MsoFSetDragImageRwnd
_MsoFGetDelayDropDraggedFile
_MsoFCreateDraggedFile
_MsoDestroyDictionary
_MsoFCreateDictionary
_MsoFSetDlgSabReqd
_FindSabIndex
_MsoPreMacSystemModal
_MsoPostMacSystemModal
_MsoAfxPMSessionPageSetupDialogMain
_MsoAfxPMSessionPrintDialogMain
_MsoStopAlert
_MsoFGenericAlertFilter
_FGetNextRingElement
_PmorphOpenMorph
_CloseMorph
_FGetFirstRingEntry
_FGetLemma
_FGetNextRingEntry
_MsoPIOLDocOtherGet
_MsoFIsInFileSysWzPersistentName
_MsoMakeWzAbsFromWzBaseWzRel
_MsoWzGetTempFilename
_MsoMakeWzRelFromWzBaseWzAbs
_MsoCreateNewIOLDocFromPFSRef
_MsoCreateIOLDocTempFromWzDisplayName
_MsoCreateIOLDocFromWzPersistentName
_MsoCreateIOLDocFromPFSSpec
_MsoCreateIOLDocFromPFSRef
_MsoCreateIOLDocFromMoniker
_MsoFUseMacPathChars
_MsoFIsURL
_GetPredefinedPropertyByPKey
_MsoHrLoadMetroThumbnail
_MsoHrSaveMetroThumbnail
_GetPredefinedPropertyByElemName
_MsoHrGetDocPropertiesPkg
_MsoHrCreateDocProperties
_MsoHrDerefPropVariant
_MsoHrPropVariantToString
_MsoBase64EncodeW
_MsoHrStringToPropVariant
_MsoBase64DecodeW
_MsoHrRemoveAllDrpsEx
_MsoHrModifyDrp
_MsoHrGetLinkedDrps
_MsoHrGetDrpFlavor
_MsoHrGetDrp
_MsoHrGetAllDrps
_MsoHrFindDrp
_MsoHrEndModifyDrp
_MsoHrCreateDrp
_MsoHrCountDrps
_MsoHrBeginModifyDrp
_MsoFAnyDrpsExist
_MsoHrRemoveDrp
_MsoFIsGalleryAvailable
_MsoFReturnMedia
_MsoFGetMedia
_MsoFInitDguisi
_MsoFCreateDrawingUserInterface
_MsoPactDtk
_MsoPactAp
_MsoPactDtkNq
__MsoPactNew
_MsoFreeActMem
_MsoPactPcaNq
_MsoDcpDoActs
_MsoReversePact
_MsoFreePact
_MsoPactPca
_MsoPkwdlLookupL
_MsoFRemoveTkLookupName
_MsoWLookupKwdl
_MsoFreePkwtb
_MsoPkwdAddTkLookupName
_MsoPkwdLookupName
_MsoPkwtbNew
_MsoPkwdlhLookupL
_MsoOcv_cast_as
_MsoOcv_compound_stmt
_MsoOcv_decrement
_MsoOcv_dereference
_MsoOcv_divide
_MsoOcv_log_and
_MsoOcv_log_not
_MsoOcv_log_or
_MsoOcv_eql
_MsoOcv_get_char
_MsoOcv_get_double
_MsoOcv_get_float
_MsoOcv_get_int
_MsoOcv_minus
_MsoOcv_get_ldouble
_MsoOcv_get_long
_MsoOcv_set_ushort
_MsoOcv_mod
_MsoOcv_mult
_MsoOcv_not_eql
_MsoOcv_plus
_MsoOcv_progn
_MsoOcv_get_short
_MsoOcv_set_char
_MsoOcv_set_double
_MsoOcv_get_uchar
_MsoOcv_get_uint
_MsoOcv_get_ulong
_MsoOcv_get_ushort
_MsoOcv_gtr_eql
_MsoOcv_gtr_than
_MsoOcv_set_ulong
_MsoOcv_set_uint
_MsoOcv_if
_MsoOcv_set_float
_MsoOcv_set_uchar
_MsoOcv_set_short
_MsoOcv_increment
_MsoOcv_inline_if
_MsoOcv_less_eql
_MsoOcv_set_ldouble
_MsoOcv_less_than
_MsoOcv_set_long
_MsoPocvPushVarArgs
_MsoOcv_unary_plus
_MsoOcv_set_int
_MsoOcv_unary_minus
_MsoOcv_shift_r
_MsoOcv_shift_l
_MsoOcv_addr_of
_MsoOcv_let
_MsoOcv_assign
_MsoOcv_bitwise_and
_MsoOcv_bitwise_not
_MsoOcv_bitwise_or
_MsoOcv_bitwise_xor
_MsoRulvElement
_MsoAutoClearIrul
_MsoClearChangedEventsForRulevt
_MsoClearEventsForRulevts
_MsoClearRules
_MsoDelayScheduleIrul
_MsoFActivateIrul
_MsoFAddPruldepDependent
_MsoFAliasPrulPrul
_MsoFDeactivateIrul
_MsoFDefineIntegerKwdEvent
_MsoFDefineStringKwdEvent
_MsoFDelPruldepDependent
_MsoFDeleteIrul
_MsoFEvalIrulImmediately
_MsoFInitRules
_MsoFInitStaticRuls
_MsoFRulNotify
_MsoFRulNotifyImmediately
_MsoFreeRuleMem
_MsoIrulPickDeferred
_MsoScheduleIrul
_MsoEvaluateEvents
_MsoDelayScheduleIrulFrom
_MsoPrulNew
_MsoPushDelayedEvalForRulevt
_MsoPushLprulDependents
_MsoPvlprulsMirror
_MsoReActivateIruls
_MsoRestorePersistentDelayedRules
_MsoSetActiveRuls
_MsoSetAllElementsToRulv
_MsoSetElementRulv
_MsoSetEventTypeRulevt
_MsoSetRulNotify
_MsoSignalEventIrul
_MsoSignalEventIrulFrom
_MsoFValidURLPwch
_MsoDtkStartFromDcp
_MsoCpLimOfDtk
_MsoDtkFindPrevToken
_MsoDtkFindRgirul
_MsoPrultkFromDtk
_MsoDtkFromTokenDtki
_MsoDtkiFromTokenDtk
_MsoIMatchIrul
_MsoFTokenWas
_MsoAlertIds
_MsoAlertBlockedFileOpen
_MsoAlertIdsWz1
_MsoAlertWtz
_MsoAlertWz
_MsoAlidFromIbtn
_MsoFStdError
_MsoMbToMcpAlertParams
_MsoAlertSz
_MsoAlertWz2
_MsoHrGetByteStreamFromFileMFO
_MsoHrGetTempFileByteStreamEx
_MsoHrGetByteStreamFromFile
_MsoFIsFileMakerFile
_MsoFCreateFMCON
_MsoFFileMakerNavFileFilter
_MsoFPathIsFMServerURL
_MsoFIsFileMaker7File
_MsoIchFileInFMURL
_MsoDestroyFMCON
_MsoFUnflattenFMWizData
_MsoPvFlattenFMWizData
_MsoFMWDDispose
_MsoFFMWDDuplicate
_MsoFFMImpWizWithWizData
_MsoFFMImpWiz
_FruCopyProc
_MsoFindAndUpgradeFromRgFRU
_FCommentPdfDpi
_MsoFillDcObj
_MsoInitDc
_MsoAbortCallback
_MsoSetMetafileDcBounds
_MsoFillCGDc
_MsoInitBdp
_FCommentPDF
_FCommentPDFEnd
_MsoInitAbort
_MsoFillDc
_MsoCleanDc
_MsoHpalCreate
_MsoHpalSelect
_MsoBPaletteGray
_MsoHpalOffice
_MsoGetHinstIntl
_MsoGetHinstMso
_vcSystemDialog
_MsoHtGetString
_MsoFReconvCreate
_MsoCreateInfoBar
_MsoDestroyInfoBar
_MsoHrGetIBSFromIStreamEx
_MsoHrGetIBSFromILockBytes
_WC_SUCCEEDED
_MsoLoadCutoffYear
_MsoSaveCutoffYear
_MsoCpgFromLid
_MsoMacCpgFromChs
_MsoChsFromLid
_MsoLoadKeepFourDigitYears
_MsoSaveKeepFourDigitYears
_MsoCpgFromChs
_MsoCwchGetAltChar
_MsoCwchNormFuzzy
_MsoFGuidFromWz
_MsoFValidLid
_MsoFLoadBStrip
_MsoFGetInfoBStrip
_MsoHbstripFromPixMap
_MsoFDrawBStripAsButton
_MsoFreeBStrip
_MsoAlertRangeError
_MsoCFStringRefLoad
_MsoCchLoadWz
_MsoFLoadSz
_MsoFLoadWtz
_MsoFLoadWz
_MsoIdslMacFromStt
_MsoWzIndexRight
_MsoLookupSz
_MsoParseIntWz
_MsoChsFromCpg
_MsoWzDecodeDouble
_MsoInsertWz
_MsoCwchDecodeEmuWithUnit
_MsoDpvParseEmuWzWithUnit
_MsoEmuFromUnit
_MsoFLoadStz
_MsoFAllXmlWS
_MsoParseUIntWz
_MsoRgwchCopy
_MsoICompWzInvariant
_MsoFValidNCNameRgwch
_MsoFRgwchNeedsXmlEscaping
_MsoRgchCopy
__ZN12XmlCharacter15isStartNameCharEw
__ZN12XmlCharacter10isNameCharEw
_UnicodeToUTF8
_MsoTextOutW
_MsoSzIndex
_MsoRgwchWtAppend
_MsoRgwchIndexRight
_MsoPwchStrStrFast
_MsoParseIntSz
_MsoParseHexUIntWz
_MsoParseHexIntSz
_MsoLookupWz
_MsoHrEscapeXmlRgwch
_MsoHrUnescapeXmlRgwch
_MsoParseHexIntWz
_MsoParseTimeWz
_MsoWzDecodeTime
_MsoLookupWtz
_MsoLookupSttRgwch
_MsoLookupSt
_MsoHrUnescapeXmlRgwch2
_MsoHrEscapeXmlRgwch2
_MsoFsFromWch
_MsoRgwchAppend
_MsoFsCpgFromCpg
_MsoFoldWidth
_MsoFXmlNeedsEscaping
_MsoFValidXmlPxch
_MsoDpvParseWzWithDecimalPlaces
_MsoDecodeBase64W
_MsoCwchDecodeEmuWithEMUPerUnitWithDecimal
_MsoCwchDecodeDoubleWithDecimalPlaces
_MsoCpgFromFsCpg
_MsoCopyStrings
_MsoCchInsertWzCount
_MsoCchInsertWzCore
_MsoCchInsertIdsWz
_MsoCchLoadSz
_MsoFLoadInt
_MsoAlertRangeErrorWithEMUPerUnit
_MsoAlertRangeErrorWithDecimal
_MsoFIsPackageFileFO
_MetroHrPreProcessStorage
_MsoHrOpenArchiveEx
_MsoFIsPackageByteStream
_MsoFIsPackageHeader
_MsoFIsPackageFile
_MsoHrOpenPackage
_MsoUninitPackageLibrary
_MetroHrReadStorageFromPart
_MsoFInitPackageLibrary
_MsoHrGetMemoryByteStream
_MetroFGetClsidFromContentType
_MetroFPartTypeIs
_MetroFUniquePartType
_MetroFValidContentType
_MetroFValidContentTypeWz
_MetroFValidPartChar
_MetroHrGetRelationshipType
_MetroFValidPartType
_MetroGetContentTypeForXlPart
_MetroContentTypeFromWz
_MetroGetPartFromRelationshipType
_MetroHrGetContentTypeForExt
_MetroWzGetContentType
_MetroWzGetDefaultContentType
_MetroWzGetRelationshipType
_MetroWzGetUnknownContentType
_MsoGetMetroNaming
_MsoHrGetContentTypePrefixLength
_MsoFIsXmlContentType
_MetroGetPartTypeFromStorage
__ZN11CXmlStorageD2Ev
__ZN11CXmlStorage13startDocumentEv
__ZN11CXmlStorage14QueryInterfaceERK4GUIDPPv
__ZN11CXmlStorage6AddRefEv
__ZN11CXmlStorage6DetachEv
__ZN11CXmlStorage7ReleaseEv
__ZN11CXmlStorageC2Ev
_MetroHrCreateSAXReader
_MsoHrCreateXmlStorage
__ZN11CXmlStorage11CheckDetachEl
__ZN11CXmlStorage11endDocumentEv
__ZN17CNamespaceManagerD2Ev
__ZN17CNamespaceManagerD1Ev
__ZN17CNamespaceManagerD0Ev
__ZN17CNamespaceManagerC2Ev
__ZN17CNamespaceManagerC1Ev
__ZN17CNamespaceManager7ReleaseEv
__ZN17CNamespaceManager6AddRefEv
__ZN17CNamespaceManager10InitializeEi
__ZN11CXmlStorageD1Ev
_MsoXmltkLookupElement
_MsoFGetPwchFromXns
_MsoFGetPwchFromXmltkav
_MsoXmltkaLookupAttribute
_MsoFGetPwchFromXmltka
_MsoXmltkavLookupXmltka
_MsoXnsLookupNamespace
_MsoXnsLookupNamespacePrefix
_MsoXmltkavLookupAttributeValue
_MsoFGetPwchFromXmltk
_MsoEnableMsaxPointerCaches
_HrCreateMsoSaxWriter
_MsoFGetPwchPrefixFromXns
_MsoInvalMsaxPointerCaches
_MsoHrCreateMsoSaxReader
_MetroHrConvertPackage
_MetroHrOpenAndRepairPackage
_MsoHrCanonicalizePathWz
_MsoFValidItemName
_MsoHrRefinePartNameInPlace
_MsoHrWzValidateUrl
_MsoHrValidatePartName
_MsoHrRefinePartName
_MsoFValidPartName
_MsoFWzIsValidNCName
_MsoFNavLoadOpenAsStz
_MsoNavWarnLeavingForCompatibilityReport
_MsoNavSetSaveAsOptionsButtonItem
_MsoNavSetHelpLinkItem
_MsoNavSetCompatibilitySummary
_MsoNavGotoTemplateFolder
_MsoNavPutFile
_MsoNavPreviewProc
_MsoNavNoteNoCompatibilityConcerns
_MsoNavInsertSaveAsFormatHeading
_MsoFMultiFileOpen
_MsoNavGenericEventHandler
_MsoFNavUpdateCurdir
_MsoNavFinish
_MsoNavGetFile
_MsoPfuipbInit
_MsoNavChooseFolder
_MsoNavDlgTerm
_MsoGetDITLBounds
_MsoFWordFSRef
_MsoFOfficeFSRef
_MsoNavCreateRunPutFileSS
_MsoNavGetControlForMouseDown
_MsoNavGotoCurdir
_MsoFNavLoadSaveAsBadCharactersWtz
_MsoNavGotoThemeFolder
_MsoHrBoolFromVariant
_MsoHrWtz255FromBstr
_MsoInitOfficeModule
_FEnsureOfficeSettingsObject
_MsoUninitOffice
_MsoTermOfficeModule
_MsoHrLoadTypeLib
_MsoBeginBoot
_MsoCreateSplashScreen
_MsoEndBoot
_MsoEndSplashScreen
_MsoFFirstRunRegistration
_MsoFGetDefaultTheme
_MsoFRDialogBegin
_MsoFRDialogTerm
_MsoFSetHelpMode
_MsoGetFrenchMode
_MsoGetFsrOffice
_MsoGetLanguage
_MsoGetLocale
_MsoHrCheckMsoTypeLibReference
_MsoHrCoSetTaskNewPtr
_MsoHwndDlgCur
_MsoOffice
_MsoSetDefaultLanguage
_MsoSetFRIDialogText
_MsoFInitOffice
_MsoSetFrenchMode
_MsoUninitThread
_MsoGetBundleMSO
_MsoRfGetRefNumMSO
_MsoInitShrGlobal
__ZN18MetroOpenPkgParamsC1Ev
__ZN18MetroOpenPkgParamsC2Ev
_MetroFIsOfficeAppName
__ZN18MetroOpenPkgParamsC2EP11IByteStream
_MsoHrConvertStringsInStream
__ZN18MetroOpenPkgParamsC1EP11IByteStream
_MetroInvalidatePartKey
_MetroFPackageNeedsConversion
_MsoHrConvertStringsInByteStream
__ZN18MetroOpenPkgParamsC1E8MetroAppP11IByteStreamP16IPreservePackage
_MsoHrCopyPackageToIBS
_MsoUninitPlayback
_MsoFAddPlaybackKevt
_MsoAddVkToKevt
_MsoDestroyKevt
_MsoFPlaybackPending
_MsoFInitPlayback
__ZN22MetroRelatedPartParamsC1E13MetroPartType16MetroContentType
__ZNK10MetroRelId9FNotEmptyEv
__ZN22MetroRelatedPartParamsC1E13MetroPartTypePKv16MetroContentType
__ZNK10MetroRelId3GetEv
__ZNK10MetroRelId6GetCchEv
__ZN10MetroRelId4FSetEPKwj
__ZN10MetroRelIdC1Ev
_EndSdm
_HdcBeginSdmPaint
_EndSdmPaint
_MsoFSdmEventFilter
_MsoPpvSdmAllocCb
_PwrGetBottomTopMost
_MsoUnlockShrGlobals
_MsoUninitShrGlobals
_MsoFLockShrGlobals
_MsoPlaySound
_MsoFGetSoundState
_MsoSetSoundStateAndPrompt
_MsoSetSoundState
_MsoSetToolbarCursorMode
_MsoConvertIndex
_MsoFCreateNewGenericContainer
_MsoFRestoreCtrl
_MsoGetLabelFromTbid
_MsoWPicContainer
_MsoFCreateButtonEx
_MsoFEditBtnFace
_MsoNCActivate
_MsoFCreateControl
_MsoFActivateControl
_MsoGetTooltipOverrideFromTcid
_MsoGetLabelFromTcid
_MsoFLoadControl
_MsoFSaveControl
_MsoFSetWindowToolbarSet
_MsoFActivatetWindowToolbarSet
_MsoGetValidTBPos
_MsoFCreateToolbarSet
_MsoFLoadToolbarSet
_MsoFMoveAwayTBS
_MsoPitchTbsSwatchCaches
_MsoDxySizeDefaultFromTct
_MsoFGetTbShowKbdShortcuts
_MsoSetTbShowKbdShortcuts
_MsoFSetButtonSize
_MsoDrawDDCheckMark
_MsoDrawOneBorder
_MsoFCvFromMsoBrush
_MsoFDrawRulerNum
_MsoFGetButtonSize
_MsoFGetFontSettings
_MsoFPtInTBWnd
_MsoGetDropdownFontHeight
_MsoGetPaintRectangle
_MsoGetRulerNumSize
_MsoGetToolbarMargin
_MsoGetToolbarMetrics
_MsoOfficeOwnsMenuBar
_MsoRenderSolidPaintRectangle
_MsoRenderThemedColorSwatch
_MsoTbbodRenderPaintColorIcon
_MsoGetOrientedFont
_MsoRenderColorSDMDropdown
_MsoRenderColorSwatch
_MsoFShowTooltip
_MsoSetupTooltipTextPsql
_MsoDeletePsql
_MsoPsqlNew
_MsoDrawTooltipTextPsql
_MsoPrcSetRc
_MsoFEncrypt
_MsoFGetFullPathFromFileObj
_MsoFGetFullPathFromFss
_MsoFEnsureOleInited
_MsoFGetDirectoryID
__Z21HrCreateMSXMLInstanceRK4GUIDS1_PPv
_MsoFSaveDc
_MsoFindFirstFile
_MsoMapPoints
_MsoInitDgvfdsc
_HwndGetWindowWrapper
_MsoFGetTempFSSpec
_MsoZoomRect
_MsoRestoreDc
_MsoOffsetRc
_MsoGetScreenRect
_MsoFGetTooltips
_MsoOleUninitialize
_MsoFGetFullPathFromFsr
_MsoSortLongs
_MsoHobjSelectUI
_MsoFGetAndSetFlag
_MsoFForceWholeRectOnScreen
_MsoFRunAppByFsr
_MsoMessageBoxExA
_MsoFDrawBtnTcid
_MsoDrawText
_MsoFSetTooltips
_MsoFGetColorString
_MsoFGetColorStringEx
_MsoFGetSplitMenuColorString
_MsoDoVBACompatibilityAlert
_MsoFContactGetMap
_MsoFContactGetNext
_MsoFContactIsInList
_MsoFContactMergeLists
_MsoFContactRegisterCallback
_MsoFContactRemoveFromList
_MsoFContactSetFieldRgwch
_MsoFContactSetHasFRUFromWord
_MsoFContactUnregisterCallbackId
_MsoFContactUpdate
_MsoFGetCategoryInformation
_MsoFInAlpacaFrameworkCall
_MsoFTaskGetCompletedByGUID
_MsoFTaskGetPriorityByGUID
_MsoFTaskSetPriorityByGUID
_MsoFidContactAddressIndex
_MsoFidContactEmailIndex
_MsoFidContactPhoneIndex
_MsoGetContactIdNil
_MsoFContactGetHasFRUFromWord
_MsoAlpacaDisableReminders
_MsoAlpacaEnableReminders
_MsoCchContactGetFieldRgwch
_MsoContactCacheDisplayNames
_MsoContactUncacheDisplayNames
_MsoFAlpacaAvail
_MsoFAlpacaAvailDB
_MsoFAlpacaCidFromIContact
_MsoFAlpacaCloneRecurrence
_MsoFAlpacaCloseAllWindows
_MsoFAlpacaCopyIdentityGUID
_MsoFAlpacaCreateRecurringSchedule
_MsoFAlpacaDisposeRecurrence
_MsoFAlpacaGetRecurringSchedule
_MsoFAlpacaInitDLL
_MsoFAlpacaNotAvail
_MsoFAlpacaOpenAddressBook
_MsoFAlpacaOpenAddressBookContact
_MsoFAlpacaPreInitDLL
_MsoFAlpacaPreInitDLLComplete
_MsoFAlpacaRegisterModalDialogCallback
_MsoFAlpacaRemoveRecurringSchedule
_MsoFAlpacaSetRecurrence
_MsoFAlpacaSummarizeRecurrence
_MsoFCategoryDeallocateEnumInfo
_MsoFCategoryGetFirst
_MsoFCategoryGetNext
_MsoFContactAdd
_MsoFContactCreate
_MsoFContactDeallocateContactList
_MsoFContactDrivingDirections
_MsoFContactGetAllContacts
_MsoFContactGetContactsInCategory
_MsoFContactGetFieldIval
_MsoFContactGetFieldLabel
_MsoFContactGetFirst
_MsoIndexContactAddressFid
_MsoIndexContactEmailFid
_MsoIndexContactPhoneFid
_MsoFAlpacaHandleEvent
_MsoFDocSumGetArrayElement
_MsoFDocSumDeleteHeadingPair
_MsoFDocSumSetInt
_MsoFDocSumGetDocPart
_MsoFDocSumDeleteArrayElement
_MsoFDocSumSetArrayElement
_MsoFDocSumDeleteArray
_MsoFDocSumDeleteAllHeadingPair
_MsoFCDocSumHeadingPairs
_MsoFDocSumSetBool
_MsoFDocSumCreateGUID
_MsoFCbDocSumString
_MsoFDocSumSetGUID
_MsoFDocSumGetArrayElementCount
_MsoFDocSumInsertHeadingPair
_MsoFDocSumInsertDocPart
_MsoFDocSumGetString
_MsoFDocSumGetBool
_MsoOfficeDirtyDSIObj
_MsoFCDocSumDocPartsByHeading
_MsoFLinkValsChanged
_MsoFDwDocSumGetInt
_MsoFDocSumShouldSave
_MsoFDocSumSetString
_MsoDestroyThumbnail
_MsoOpenDocFile
_MsoOpenDocFileFileObj
_MsoLoadThumbnail
_MsoPreviewThumbnail
_MsoAppSetAutomationSecurity
_MsoLoadMetroThumbnail
_MsoPreviewThumbnailCG
_MsoAppGetAutomationSecurity
_MsoWzGetShortcutExtension
_MsoFIsShortcutName
_MsoResolveShortcut
_MsoFHasMailSupport
_MsoFAlpacaSendMail
_MsoFExecWWWHelp
_MsoFLaunchMailApp
_MsoFSendMail
_MsoFSendMailGetTempFile
_MsoFSendMailMhtml
_MsoGetWWWCmdInfo
_MsoOSTypeDefaultMailClient
_MsoProjectPaletteCreate
_MsoProjectPaletteIsProjectPaletteWindow
_MsoProjectPaletteDispose
_MsoFOfficeDestroyObjects
_MetroHrLoadDocPropertiesPkg
_MetroHrSaveDocPropertiesPkg
_MsoDwOfficeLoadProperties
_MsoDwOfficeSaveProperties
_MsoDwOfficeSavePropertiesEx
_MsoFOfficeCloneDSIObj
_MsoFOfficeCloneSIObj
_MsoFOfficeCloneUDObj
_MsoFOfficeCreateAndInitObjects
_MsoSumInfoSetUseOSModDate
_MsoFOfficeShowPropDlg
_MsoLpvOfficeCopyValToBuffer
_MsoFRemovePrivateProperties
_MsoFGetCustomPropCollection
_MsoConvertMinTo100ns
_MsoConvert100nsToMin
_MsoFGetBuiltinPropCollection
_MsoFCreateRemindSetDlg
_MsoFCreateTaskDlg
_MsoScrapbookGetCurrentClipping
_MsoScrapbookGetWindowRef
_MsoScrapbookInit
_MsoScrapbookIsScrapbookWindow
_MsoScrapbookSetEnabledState
_MsoHrScrapbookGetClipboard
_MsoScrapbookAddFlavorToClipping
_MsoScrapbookBeginClippingIteration
_MsoScrapbookClippingHasFlavor
_MsoScrapbookCountSelectedClippings
_MsoScrapbookCreate
_MsoScrapbookCreateNewClippingFromMacScrap
_MsoScrapbookDispose
_MsoScrapbookEndClippingIteration
_MsoScrapbookGetClippingFlavorCount
_MsoScrapbookGetClippingFlavorData
_MsoScrapbookGetClippingFlavorDataHandle
_MsoScrapbookGetClippingFlavorSize
_MsoScrapbookGetCopyEverything
_MsoScrapbookGetEnabledState
_MsoHrScrapbookInstallOleHooks
_MsoHrScrapbookFlush
_MsoHrScrapbookSetClipboard
_MsoScrapbookAdvanceClippingIterator
_MsoScrapbookReleaseClipping
_MsoScrapbookCreateNewClipping
_MsoScrapbookClearClipping
_MsoFSumInfoShouldSave
_MsoFSumInfoSetInt
_MsoFSumInfoGetTime
_MsoFSumInfoGetString
_MsoFSumInfoShouldSaveThumbnail
_MsoFDwSumInfoGetInt
_MsoFSumInfoSetTime
_MsoFCbSumInfoString
_MsoOfficeDirtySIObj
_MsoFSumInfoSetThumbnail
_MsoFreeThumbnailData
_MsoSumInfoSetSaveThumbnail
_MsoFSumInfoGetThumbnail
_MsoFSumInfoSetString
_MsoLpudiUserDefCreateIterator
_MsoFUserDefShouldSave
_MsoFUserDefIteratorNext
_MsoFUserDefIteratorName
_MsoFUserDefIsHidden
_HashWzToInt
_MsoFCbUserDefIteratorVal
_MsoPrivacyOOM
_MsoPrivacyMacros
_MsoFWriteInfo
_MsoFUserDefIteratorIsLinkInvalid
_MsoFUserDefIteratorIsLink
_MsoFUserDefIteratorChangeVal
_MsoFReadInfo
_MsoFReadDefInfo
_MsoFIdentitySetInfo
_MsoFIdentityGetInfoXstz
_MsoFIdentityGetContactID
_MsoFIdentityEdit
_MsoFGetUserDefIteratorName
_MsoFExpandPseudoFields
_MsoFCwchUserDefIteratorName
_MsoFCbUserDefIteratorName
_MsoFUserDefAddProp
_MsoUdtypesUserDefType
_MsoLpvoidUserDefGetPropVal
_MsoFCbUserDefPropVal
_MsoFCUserDefNumProps
_MsoFUserDefDeleteProp
_MsoFUserDefIteratorValid
_MsoFUserDefChangeVal
_MsoFUserDefDestroyIterator
_MsoUdtypesUserDefIteratorType
_MsoOfficeDirtyUDObj
_MsoLpvoidUserDefGetIteratorVal
_MsoFUserSaysWizardIsSafe
_MsoHrSnarfWordDocument
_MsoHrEnumZipArchive
_MsoRegSetSingleIntWebOption
_MsoRegSetSingleStrWebOption
_MsoReleaseDocSpecWebOptions
_MsoRegGetSingleIntWebOption
_MsoRegGetSingleStrWebOption
_MsoRegSetSingleBoolWebOption
_MsoRegGetSingleBoolWebOption
_MsoFRegSetSingleEnumWebOption
_MsoFactoryGetDefaultDocSpecWebOptions
_MsoGetWebOptScreenSize
_MsoRegGetDefaultDocSpecWebOptions
_MsoRegGetDefaultHTMLFontInfo
_MsoRegGetGlobalWebOptions
_MsoRegGetSingleDefaultEnumWebOption
_MsoRegGetSingleDefaultIntWebOption
_MsoRegGetSingleEnumWebOption
_MsoRegisterMTests
_MsoCacheTkText
_MsoTkLexTextCpLim
_MsoCchCopyTextOfDtk
_MsoAppendRultkFormat
_MsoCopyTkTextToCache
_MsoDcpCurrAdjustedLexs
_MsoLFromDtk
_MsoPcaOfDtk
_MsoXchLexPeekChar
_MsoResetLexState
_MsoWchLexGetNextBufferDoc
_MsoLexSetPos
_MsoTkGenericFromWch
_MsoPxchLastNonWs
_MsoDeleteHlinkInsertDropdownUser
_MsoHrHlinkGetErrorString
_MsoFSetWebToolbarPos
_MsoFGetWebToolbarPos
_MsoFCreateWebToolbarHelper
_MsoFCreateHlinkInsertDropdownUser
_MsoFGetEmailSubjectInURL
_MsoHrHlinkCreateEditFile
_MsoFSetEmailSubjectInURL
_MsoFCreateAuthorHlinkDlg
_MsoHrHlinkResolveMonikerForData
_MsoHrHlinkOnNavigate
_MsoHrHlinkFsrToFileURL
_MsoHrHlinkNavigate
_MsoHrHlinkGetStringReferenceW
_MsoHrHlinkSetStringReferenceW
_MsoHrHlinkGetTargetFrameNameW
_MsoHrHlinkSaveToStream
_MsoHrHlinkCreateExtensionServices
_MsoHrHlinkCreateBrowseContext
_MsoHrHlinkClone
_MsoHrHlinkUpdateStackItem
_MsoHrRegisterMediaTypeClass
_MsoHrHLBCSetInitialHlinkW
_MsoHrExtServSetAuthenticateDataW
_MsoHrExtServSetAdditionalHeadersW
_MsoFQueryGetUrlData
_MsoCFRegisterMimeFormat
_MsoHrHlinkGetFriendlyNameW
_MsoHrHlinkCreateFromMoniker
_MsoHrHlinkFspToFileURL
_MsoHrHlinkMacFilePathToFileURL
_MsoHrHlinkResolveStringForData
_MsoHrHlinkCreateFromString
_MsoHrHlinkRetrieveFromData
_MsoHrHlinkParseDisplayName
_MsoHrHlinkSetFriendlyNameW
_MsoHrHlinkSetTargetFrameNameW
_MsoHrHlinkQueryAsyncBkgrndThrdOpInProgress
_MsoHrHlinkPreprocessMoniker
_MsoHrHlinkNavigateToStringReference
_MsoHrHlinkCreateFromData
_MsoHrHlinkQueryCreateFromData
_MsoHrHlinkFileURLToMacFilePath
_MsoHrHlinkProcessAsyncBkgrndThrdCall
_MsoHrHlinkTranslateURL
_MsoSetCpgPreferredForUrl
_MsoCpgBestForWzUrl
_MsoFDisplayTemplatePreview
_MsoSetUserTemplatesPath
_MsoSetSharedTemplatesPath
_MsoIGetNewFile
_MsoGetUserTemplatesPath
_MsoGetSharedTemplatesPath
_off_sqm_app_quit
_off_sqm_app_launch
_HrApplyMSXMLSecuritySettings
_MsoFEncryptProperties
_MsoHrEncryptedStgOpenStorage
_MsoHrEncryptedStgCreateStorageEx
_MsoHrDrmIsProtected
_MsoHrDrmIsFileProtected
_MsoHrCreateEncryptedStream
_MsoFIsPropertiesEncrypted
_MsoFIsEncryptedMetroStg
_MsoFIsEncryptedMetroFile
_MsoHrGetEncryptedStream
_SAllocRgwchCwch
_FreeS
_FreeSl
_SAlloc
_SAllocRgchCch
_SAllocRgwchCwchEllipse
_SAllocRgwchCwchEncode
_SAppendRgchCchRealloc
_SAppendRgwch
_SAppendRgwchCwchEncode
_SAppendRgwchEllipseRealloc
_SAppendRgwchRealloc
_SAppendUint
_SAppendWchRealloc
_SCopyRgchCch
_SCopyRgwchRealloc
_SCopyWzDecode
_SReallocCore
_SlAlloc
_SlAllocRgchCch
_SlAllocRgwchCwch
_SlAllocRgwchCwchEncode
_SlAppendRgchCchRealloc
_SlAppendRgwchCwchEncode
_SlAppendRgwchRealloc
_SlAppendUint
_SlAppendWchRealloc
_SlCopyRgchCch
_SlCopyRgwchRealloc
_SlCopyWzDecode
_SlReallocCore
_MsoCrc32Compute
_MsoOleoHrEnumCultures
_MsoOleoHrEnumCulturesByCultureParent
_MsoOleoHrEnumDataKeys
_MsoOleoHrEnumDataTables
_MsoOleoHrDataTableCount
_MsoOleoHrEnumDttmFormats
_MsoOleoHrEnumScripts
_MsoOleoHrEnumScriptsByCulture
_MsoOleoHrGetCalendarCount
_MsoOleoHrGetScriptCount
_MsoOleoHrGetCalendarProperties
_MsoOleoHrGetCalidFromHcal
_MsoOleoHrGetCultureCount
_MsoOleoHrGetCultureCountByCultureParent
_MsoOleoHrGetCultureProperties
_MsoOleoHrGetCultureTagFromHculture
_MsoOleoHrDataKeyCount
_MsoOleoHcultureHrBestMatchWz
_MsoOleoHcultureHrBestMatch
_MsoOleoCchHrGetScriptTagFromHscr
_MsoOleoCchHrGetNlsInfo
_MsoOleoCchHrGetCultureTagFromHculture
_MsoOleoCchHrGetCultureTagByVersion
_MsoGetCultureTagFromLcid
_MsoOleoHrGetLcidFromHculture
_MsoOleoHrGetIOleo
_MsoOleoHrGetHscrFromSid
_MsoOleoHrGetHscrFromScriptTagWz
_MsoOleoHrGetHscrFromScriptTag
_MsoOleoHrGetScriptCountByCulture
_MsoOleoHrGetScriptProperties
_MsoOleoHrGetScriptTagFromHscr
_MsoOleoHrGetHcalDefaultFromHculture
_MsoOleoHrGetHscrDefaultFromHculture
_MsoOleoHrGetHcultureParentFromHculture
_MsoOleoHrGetHcultureFromLcid
_MsoOleoHrGetHcultureFromCultureTagWz
_MsoOleoHrGetDataValuesRef
_MsoOleoHrGetSidFromHscr
_MsoOleoHrGetHcultureFromCultureTag
_MsoOleoHrGetHcalFromCalid
_MsoOleoHrGetSupportedCultures
_MsoOleoHrPrioritizeCultures
_MsoOleoHrReleaseDataValuesRef
_MsoOleoHrEnumCalendars
_MsoCreateAcetateTopView
_MsoFreeAcetateManager
_MsoPiamGetAcetateManager
_MsoHrRegisterAcetateUser
_MsoEnableNextGenCrypto
_VerifyPassword
_ValidateVerifierInfo
_MsoPeadMetroGetDefault
_MsoPeadGetDefault
_MsoPeadClone
_MsoFreePead
_MsoFVerifyPassword
_MsoFValidateVerifierInfo
_MsoFLoadCryptSessionEx
_MsoFLoadCryptSession
_MsoFCreatePasswordVerifier
_MsoFCreateCryptSessionEx
_MsoFCreateCryptSession
_MsoFCopyVerifierInfo
_MsoFConvertVerifierInfo
_MsoFAllocateAndInitializeVerifierInfoFromFile2
_MsoFAllocateAndInitializeVerifierInfoFromFile
_MsoFAllocateAndInitializeVerifierInfo
_MsoDeleteVerifierInfo
_DeleteVerifierInfo
_CreatePasswordVerifier
_AllocateAndInitializeVerifierInfoFromFile
_AllocateAndInitializeVerifierInfo
_MsoFEncryptionInfoSpecifiesDocumentEncryptor
_MsoWzToWzMathAlpha
_MsoWchMathAlphaToWch
_MsoWzMathAlphaRun
_MsoWzMathAlphaToWz
_FTranslateScp
_FreeNilLbe
_PaintDftLbx
_FFreeDataDftLbx
_FSetFirstLbx
_FSetCursorLbx
_UpdateLbx
_FSetSelectedLbx
_FGetLbxLbe
_FSetLbxLbe
_SetLbxLbePpv
_PpvGetLbxLbe
_IlbeGetCursorLbx
_PpvDemandLbxLbe
_HlbxCreateLbg
_DeleteLbxLbe
_ClbeGetLbx
_PictlGetLbx
_SetLbxLbg
_FUsesMacPopupLbx
_WUser2Lbx
_ClbeGetSelectedLbx
_FIsPopupLbxTracking
_FAddLbxLbe
_FFreeDataLbx
_GetLbxLbg
_GetSelectedLbx
_FSetLbxClbe
_InitCab
_FreeCab
_GetCabWtz
_FSetCabWt
_GetCabWt
_FSetCabWz
_HcabAlloc
_GetCabRgb
_InitCabWords
_HcabDupeCab
_NinchCab
_FreeCabData
_GetCabWz
_FSetCabRgb
_CbCabArg
_TmcToFontID
_MsoSDMGetTextDimensionsTmc
__ZN16MsoSOverlapFrameC1ER21IMsoSAutoLayoutDialogP18MsoSCompositeFrame
__ZN14MsoSTableFrameC1ER21IMsoSAutoLayoutDialogiiP18MsoSCompositeFrame
__ZN14MsoSHorizFrameC1ER21IMsoSAutoLayoutDialogP18MsoSCompositeFrame
__ZN13MsoSVertFrameC1ER21IMsoSAutoLayoutDialogP18MsoSCompositeFrame
__ZN17MsoSListEditFrameC1ER21IMsoSAutoLayoutDialogjjP18MsoSCompositeFrame
__ZN13MsoSCtrlFrameC1ER21IMsoSAutoLayoutDialogjP18MsoSCompositeFrame
__ZN22MsoSCtrlContainerFrameC1ER21IMsoSAutoLayoutDialogjP18MsoSCompositeFrame
__ZN16MsoSTabCtrlFrameC2ER21IMsoSAutoLayoutDialogjjP18MsoSCompositeFrame
_MsoFAutoLayoutCurDlg
__ZN16MsoSTabCtrlFrameC1ER21IMsoSAutoLayoutDialogjjP18MsoSCompositeFrame
_MsoSDMDALSetCurDlgClientSize
_MsoSDMDALAutoLayoutCleanup
__ZN16MsoSTabCtrlFrameC1ER21IMsoSAutoLayoutDialogjP18MsoSCompositeFrame
__ZN17MsoSGroupBoxFrameC1ER21IMsoSAutoLayoutDialogjP18MsoSCompositeFrame
__ZN17MsoSNumInputFrameC1ER21IMsoSAutoLayoutDialogjP18MsoSCompositeFrame
_MsoFGetIMsoSAutoLayoutDialog
_WRenderSeparatorLine
_PrepareMacRds
_FInsertEditTextTmc
_SetMultiStyleEditTmc
_FInsertStyleEditTextTmc
_FGetEditStyleRunTmc
_ApplyEditTextStyleTmc
_FDlgShrunk
_FShrinkRefEdit
_SetFdlgOfHdlgCur
_MsoWPicAppearanceMgrProc
_PpvDemandSdmLbx
_WindowOfDlgCur
_FIsDialogWindow
_EnableDlg
_MsoTmcUnderPt
_PpvDemandSdmLbxVal
_ClearWindowDlg
_FIsDlgDying
_ShowDlg
_SabGetDlg
_TmcEndedHdlg
_WRefQueryCur
_FSetDlgSab
_HcabQueryCur
_HdlgQueryCur
_ResizeDlgEx
_PpvAllocLboxCb
_FKillDlgFocus
_FStartDlgPhdlg
_HdlgGetCur
_HdlgGetFocus
_HdlgStartDlg
_ResizeDlg
_UpdateWindowDlg
_FreeLboxPpv
_HdlgSetFocusDlg
_FSendDlm
_TmcDoDlgDli
_HcabFromDlg
_FVisibleDlg
_HidOfDlg
_FInitSdm
_FIsOfficeDlg
_FModalDlg
_FRestoreDlg
_FReturnDlgControl
_FSetDlgHid
_MoveDlg
_MsoFSetHMsoinstOfSdm
_FRestoreTmc
_EndDlg
_HdlgSetCurDlg
_MsoSetIdleFilter
_PtLargestPropPageOfDlg
_SdmScaleRec
_SetLargestPropPagePtOfDlg
_FFreeDlg
_EnsureVisibleDlgRec
_LUserFromCtrl
_SdmFInUndetermine
_UpdateTabSelection
_FSetupTabSwitcher
_FValidateDlgTsw
_IselGetSwitcher
_SetSwitcherIsel
_WPicTabSwitcherBorder
_WPicTabSwitcher
_GetTmcSwitcherRec
_IEntryListBoxCursorTmc
_MsoFCreateMCPCtrlTmc
_AddListBoxEntry
_EnableTmc
_FEnabledTmc
_LUserFromTmc
_MsoPIMcpCtrlGetTmc
_SetTmcLUser
_SetTmcText
_SetTmcVal
_TmtGetTmc
_ValGetTmc
_EndListBoxUpdate
_GetTmcRec
_RedisplayTmc
_MsoInvalidateTmc
_MsoSetSliderTmc
_FSetTmcLargeVal
_SetScrollRangeTmc
_SetTmcFontStyle
_SetVisibleTmc
_GetListBoxEntry
_IEntryFindListBox
_FIsVisibleTmc
_SetTmcTxs
_HlbxFromTmc
_BeginListBoxUpdate
_SetTmcRec
_CchGetTmc
_CchGetTmcText
_GetScrollRangeTmc
_GetTmcText
_SetFocusTmc
_TmcGetFocus
_CchGetListBoxEntry
_AddListBoxEntryA
_CchGetTmcTextA
_CompleteComboTmc
_CselListBoxTmc
_EnableListBoxEntry
_MsoSetButtonIconTmc
_FSetTmcLargeValMixed
_FlashButtonTmc
_LimitTextTmc
_MsoControlRefGetTmc
_GetListBoxEntryA
_GetTmcLargeVal
_GetTmcTextA
_IEntryFindListBoxA
_MsoFreeMCPCtrlTmc
_InsertListBoxEntryA
_MsoFRenderThemeBorderTmc
_MsoSetButtonTypeTmc
_MsoSetTruncTmc
_NotifyEditTmc
_SdmTmcAddSubview
_SdmTmcSetBitmapImageId
_SetTmcFontId
_SetClientPasteEditTmc
_SetDlgCaptionA
_SetLightFontTmc
_CentryListBoxTmc
_InsertListBoxEntry
_DeleteListBoxEntry
_SetReadOnlyTmc
_SetSecretEditTmc
_SetTmcAXMinMaxValue
_SetTmcAXTitle
_SetTmcAXTitleFromLabelTmc
_SetTmcAXValue
_SetTmcAXValueDouble
_SetTmcTextA
_SetTmcTxsNoFocus
_StartListBoxUpdate
_TmcGetAccelerator
_TmcGetDefault
_TxsGetTmc
_SetDefaultTmc
_MsoFRunningSDMDAL
_SetSubDlgExtraSize
_LWctQuery
_FValidTmc
_FIsCurDlgCompositing
_HdlgFromWindow
_WindowFromDlg
_MsoEnableCmdKeyShowAccel
_WindowSwapSdmParent
_SdmSendControlHitTmc
_MsoFEnableAccelCurDlg
_MsoSetPopupLbxMark
_SetDlgCaption
_WPicChildDlg
_SwitchChildDlg
_HdlgStartChildDlgEx
_MOffsetRect
_MUnionRgn
_MSetRectRgn
_MInsertMenu
_MFrameRect
_MDrawText
_MDeleteMenu
_MCopyRgn
_MInsetRect
_MFindWindow
_MPtInRect
_MSetRect
_MGetCurrentProcess
_MAppendMenu
_MGetMenu
_MLineTo
_MLoadResource
_MOffsetRgn
_MShowWindow
_MWaitNextEvent
_MsoFCleanupLastCsbChunk
_MsoDeleteMsoclb
_MsocsbCreateForHes
_MsoclbCreateFromPistm
_MsoWcbtOfHbk
_MsoPistmChunkFromClb
_MsoPistmBinForCsbFbi
_MsoFStartImportMsoclb
_MsoFEndAndDeleteCsb
_MsoSetPcvsLong
_MsoPpxCloneCvsList
_MsoFAddCvsToList
_MsoCchFillRgwchCSSNumber
_MsoSetPcvsColorref
_MsoFreeCvsList
_MsoSetPcvsLiteral
_MsoFHTMLExportStyleProperty
_MsoPpxcvsConsolidateUnknown
_MsoPpxAllocCvsList
_MsoFreeUnknownCss
_MsoFreeCvs
_MsoFSetPcvsRgwch
_MsoFMergeCvsLists
_MsoPvCloneUnknownCss
_MsoPistmCreateEstream
_MsoHrCreateFstreamFO
_MsoHrCreateFstreamW
_MsoFCustomPropertiesToXml
_MsoFKeepLinkForCfHtml
_MsoFWchNeedsXmlNCRCore
_MsoFlushPxuhi
_MsoFreePpxuhi
_MsoHrCreateHTMLExportSet
_MsoHrCreateIMsoHTMLFileNameTable
_MsoInitHecd
_MsoInitHicd
_MsoInitHesui
_MsoInitPrpv
_MsoIuhiCopyAppendIuhi
_MsoIuhiCopyIuhi
_MsoSetWPPOriginalFileName
_MsoWzExtFromHetn
_MsoWzFromIhtk
_MsoFRefinePwch
_MsoFRefinePetk
_MsoFColorFromRgwch
_MsoEscapeURL
_MsoDeleteFileW
_MsoCchWzFromColor
_MsoFFIdentifyFileFragment
_MsoHrSetupHTMLImport
_MsoFreePrpv
_MsoFreePxetkData
_MsoFWzIsSafeToSave
_MsoHrCompressStgToStm
_MsoHrReadStgFromOds
_MsoHrResolveWzUrlToStmForRead
_MsoHrUncompressStmToStg
_MsoHrWriteStgToOds
_MsoRewindStream
_MsoFHTMLExportOleObjectXml
_MsoCopyStream
_MsoFHTMLProcessXmlOleObject
_MsoFGetCountOfThemes
_MsoFColorSchemeNameFromIndex
_MsoFCreateWebThemeDlg
_MsoFGetCountOfColorSchemes
_MsoFGetCurrentTheme
_MsoFGetDefaultThemeParams
_MsoFGetFriendlyTheme
_MsoFSetCurrentTheme
_MsoFSetDefaultTheme
_MsoFThemeIndexFromName
_MsoFThemeNameFromIndex
_MsoFGetFullPath
_MsoFRelWzUrlToAbsWzUrl
_MsoIxtkAppFromRgwchTokenize
_MsoConvertXmlNCRs
_MsoLaunchBrowserOnFile
_MsoFDetokenizeIxtkToRgwchCore
_MsoWzDeclarationFromXmlns
_MsoWzDefaultNameFromHetk
_MsoWzFilesLocal
_MsoWzFromBool
_MsoWzFromXmlnsCore
_MsoReplaceFileW
_MsoHetkFromWzPath
_MsoFHTMLExportXmlTagStart
_MsoFRelPathToAbsPath
_MsoFConvertWzToWCVariant
_MsoCheckForBrowser
_MsoCchDeclarationFromXmlns
_MsoUnescapeWz
_MsoFCodePageIsAutoDetect
_MsoFCreateWebOptionsDlg
_MsoFGetWebPageFontsObject
_MsoScriptOfCodePage
_MsoWebOptionsRecording
_MsoFRgwchIsWinPath
_MsoHrIsSafeProtocol
_MsoHrCreateUrlFromCanonicalUrl
_MsoHrCreateUrl
_MsoGetTempFileNameW
_MsoHrCreateUrlFromUserRgwch
_MsoHrCreateUrlFromUser
_MsoFFetchSzForCp
_MsoCpFromRgchContentType
_MsoFreePsct
_MsoFCopyPsct
_MsoBuildLowPriorityPcssr
_MsoPwzFromIcvk
_MsoPwzFromIcpk
_MsoIhtkCurrentTag
_MsoFAbsolutePath
_MsoFHlinkFixLinkPihl
_MsoFFixLinkPihl
_MsoFGetPathIMsoOLDocument
_MsoWzFixLinkWz
_MsoWzPrependHyperlinkBase
_MsoWzFixLinkTrgtWz
_MsoWzHlinkFixLinkWz
_MsoWzHlinkFixLinkTrgtWz
_MsoFIsNotUrl
_MsoFHlinkPrependHyperlinkBase
_MsoHrRegisterDocPropsUser
_MsoFCreateXmlError
_ILookupTrieRgwch
_MsoFDetermineRootNamespaceFromIstm
_MsoFGetUriFromWzSchemaFile
_MsoFAddSchemaToLibrary
_MsoFCreateSchemaInfo
_MsoFCreateDataStore
_MsoFreeMsomxsierr
_DrawTextA
_GetDateFormatA
_CreateDialogParamA
_EndDialog
_DialogBoxIndirectParamA
_GetDlgItemTextA
_IsDlgButtonChecked
_SendDlgItemMessageA
_GetDlgItem
_GetDlgCtrlID
_DialogBoxParamA
_CheckDlgButton
_GetDialogBaseUnits
_DefWindowProcA
_EnumWindows
_EnumChildWindows
_SetFocus
_SetWindowWord
_GetWindowWord
_SetClassLongA
_SetWindowLongA
_GetWindowLongA
_WindowFromPoint
_ChildWindowFromPoint
_TranslateMDISysAccel
_DefMDIChildProcA
_DefFrameProcA
_DestroyMenu
_GetSystemMenu
_WlmEnableMenuItem
_WlmCheckMenuItem
_RemoveMenu
_ModifyMenuA
_GetSubMenu
_GetMenuStringA
_GetMenuItemID
_GetMenuItemCount
_AppendMenuA
_AfxDeleteMenu
_WlmGetMenuKeyGlyphNameStz
_LoadMenuA
_AfxDrawMenuBar
_PostQuitMessage
_GetMessagePos
_AfxGetDoubleClickTime
_GetTickCount
_GetMessageTime
_LoadStringA
_EnableScrollBar
_SetScrollRange
_GetScrollPos
_SetScrollInfo
_GetScrollInfo
_ShowScrollBar
_GetScrollRange
_SetScrollPos
_WlmInitEx
_WlmInit
__WlmStartup
_EndDeferWindowPos
_BringWindowToTop
_AfxMoveWindow
_DeferWindowPos
_BeginDeferWindowPos
_SetWindowPos
_GetSysColorBrush
_SystemParametersInfoA
_GetSystemMetrics
_UnwrapWindow
_GetWrapperWindow
_GetWindowWrapper
_WrapWindowMinimalA
_WrapWindowA
_GetHIViewFromHWND
_GetWrapperContainerWindow
_WlmSizeWindow
_TranslateMessage
_VkKeyScanA
_EnableKeyboardMapping
_MapVirtualKeyA
_FindWindowA
_GetVersion
_SetParent
_AdjustWindowRect
_CallWindowProcA
_DrawFocusRect
_FlashWindow
_GetForegroundWindow
_GetVersionExA
_GetWindowPlacement
_GetWindowTextLengthA
_GetWindowThreadProcessId
_IsIconic
_IsWindowEnabled
_IsZoomed
_SetWindowPlacement
_ClientToScreen
_ScreenToClient
_GetWindow
_SetWindowTextA
_MapWindowPoints
_GetWindowTextA
_GetClientRect
_AfxIsWindowVisible
_GetWindowRect
_AfxGetParent
_GetFocus
_GetCapture
_RegisterWindowMessageA
_AdjustWindowRectEx
_GetActiveWindow
_ReleaseCapture
_SetCapture
_SetActiveWindow
_ClientToGrafPort
_EnableWindow
_IsChild
_GetDesktopWindow
_IsWindow
_SetForegroundWindow
_IsForeignWindow
_CopyAcceleratorTableA
_TranslateAcceleratorA
_LoadAcceleratorsA
_DestroyAcceleratorTable
_LoadBitmapA
_GetCaretBlinkTime
_ShowCaret
_HideCaret
_SetCaretPos
_CreateCaret
_DestroyCaret
_RegisterClassA
_UnregisterClassA
_GetClassNameA
_GetClassInfoA
_SetClipboardData
_RegisterClipboardFormatA
_GetPriorityClipboardFormat
_GetClipboardData
_EmptyClipboard
_CloseClipboard
_IsClipboardFormatAvailable
_OpenClipboard
_ImportMacScrapToClipboard
_GetClipboardFormatNameA
_CreateWindowExA
_AfxShowCursor
_AfxGetCursor
_CreateCursor
_DestroyCursor
_GetCursorPos
_AfxSetCursor
_LoadCursorA
_GetWindowDC
_GetDC
_InvalidateWindowDCs
_GetDCEx
_ReleaseDC
_DragAcceptFiles
_DragFinish
_DragQueryFileW
_DragQueryPoint
_DestroyWindow
_WinHelpW
_CallNextHookEx
_UnhookWindowsHookEx
_SetWindowsHookExA
_CallWindowsHook
_LoadIconA
_CreateIcon
_CreateIconIndirect
_DestroyIcon
_DrawIcon
_CopyImage
_GetAsyncKeyState
_GetKeyState
_SetKeyboardState
_GetKeyboardState
_MessageBeep
_TrackPopupMenu
_SetAppFontMenu
_RemoveMessages
_InSendMessage
_GetMessageA
_FWLMMessageFromMacKeyEvent
_FSetWLMEventState
_AfxOSEventAvail
_AfxEventAvail
_PeekMessageA
_QueueEvent
_TrackMouseLocationHwndWithOptions
_TrackMouseLocationHwnd
_WrapEvent
_DispatchMessageA
_WLM_FlushMessages
_WlmGetDispatchCount
_SendMessageA
_UpdateMenuBar
_PostMessageA
_EndPaint
_BeginPaint
_RealizePalette
_SelectPalette
_GetPropA
_RemovePropA
_SetPropA
_ScrollHwnd
_ScrollDC
_ScrollWindowEx
_AfxShowWindow
_KillTimer
_SetTimer
_InvalidateRect
_ValidateRect
_RedrawWindow
_UpdateWindow
_GetUpdateRect
_GetUpdateRgn
_InvalidateRgn
_RenderWindow
_ValidateRgn
_InvalidateWindow
_GlobalHandle
_GlobalAlloc
_LocalReAlloc
_GlobalMemoryStatus
_GlobalFlags
_GlobalCompact
_GetWrapperHandle
_GetHandleWrapper
_GetFreeSpace
_CheckoutHandle
_CheckinHandle
_WrapHandle
_GlobalReAlloc
_LocalFree
_LocalAlloc
_UnwrapHandle
_GlobalUnlock
_GlobalSize
_GlobalLock
_GlobalFree
_SetDefaultCreatorType
_WrapFileHandle
__lwrite
_CopyFileW
_GetTempFileNameW
__lclose
__llseek
__lopenW
_SetFileTime
_CreateFileW
__lread
_WriteFile
_MoveFileExW
_CopyFileFO
_SetDefaultFileType
_SetFilePointer
_AfxGetFileSize
_SetFileAttributesW
__lcreatW
_GetTempPathW
_GetFileType
_DeleteFileW
_GetFileAttributesW
_MoveFileExFO
_OpenFileW
_ReadFile
_CloseHandle
_FreeLibrary
_GetCurrentProcessId
_WrapInstance
_GetMacInstanceInformation
_GetWlmConnInitData
_SetBundleOfInstance
_AfxGetCurrentProcess
_GetModuleHandleW
__WlmConnInit
_GetModuleFileNameW
_DisableThreadLibraryCalls
_LoadLibraryExW
_LoadLibraryW
_UnwrapInstanceEx
_WrapMachInstance
__WlmMain
_GetProcAddress
_SizeofResource
_LockResource
_AfxLoadResource
_FindResourceA
_FreeResource
_InterlockedCompareExchange
_DeleteCriticalSection
_EnterCriticalSection
_InitializeCriticalSection
_LeaveCriticalSection
_InterlockedDecrement
_InterlockedIncrement
_InterlockedExchange
_CompareFileTime
_FileTimeToLocalFileTime
_FileTimeToSystemTime
_SystemTimeToFileTime
_LocalFileTimeToFileTime
_GetLocalTime
_GetSystemTime
_ImmGetTSMDocumentID
_ImmSetOpenStatus
_ImmReleaseContext
_ImmNotifyIME
_ImmGetOpenStatus
_ImmGetContext
_ImmGetCompositionString
_ImmDestroyContext
_ImmCreateContext
_ImmAssociateContext
_ImmUseInputWindowForMac
_ImmTerminateForMac
_ImmInitializeForMac
_IME_TSMEventHandler
_WlmDebug
_GlobalFindAtomA
_GlobalDeleteAtom
_GlobalGetAtomNameA
_GetAtomNameA
_DeleteAtom
_AddAtomA
_GlobalAddAtomA
_GetSysColor
_GetWinDebugInfo
_FatalAppExitA
_DebugBreak
_SetWinDebugInfo
_SetErrorMode
_OutputDebugStringA
_WlmEnsureMemAvail
_WlmAllocHandle
_WlmMemory
_GetPrivateProfileStringA
_GetPrivateProfileIntA
_ClosePrivateProfile
_WritePrivateProfileStringA
_SubtractRect
_IntersectRect
_IsRectEmpty
_AfxOffsetRect
_AfxSetRect
_AfxPtInRect
_AfxUnionRect
_AfxEqualRect
_InflateRect
_CopyRect
_SetRectEmpty
_lstrcpyn_sA
_lstrcmpA
_WideCharToMultiByte
_IsCharLowerA
_IsCharUpperA
_IsCharAlphaA
_CharUpperBuffA
_IsCharAlphaNumericA
_MultiByteToWideChar
_lstrcatA
_lstrcpy_sA
_CharLowerBuffA
_OemToChar_sA
_CharToOem_sA
_CharLowerA
_CharUpperA
_lstrcmpiA
_WlmVersionA
__GetProcessSig
_GetSaveFileNameW
_GetFileTitleW
_GetOpenFileNameW
_WLM_WinRectToHIRect
_UnWrapViewInWLMWrapper
_WrapViewInWLMWrapper
_IsViewAWLMView
_Arc
_BitBlt
_PatBlt
_SetStretchBltMode
_ImageGWorldOnToCGContext
_StretchBlt
_OffscreenDCBlt
_SetBitmapReadOnly
_GetBitmapDimensionEx
_SetBitmapBits
_CreateCompatibleBitmap
_GetBitmapBits
_CreateBitmapIndirect
_CheckinPixMap
_CreateMacPixMap
_CreateBitmap
_CheckoutPixMap
_SetBrushOrgEx
_GetBrushOrgEx
_CreateSolidBrush
_CreateBrushIndirect
_CreatePatternBrush
_SetPleaseDoNotHelpMe
_GetDeviceCaps
_CreateCompatibleDC
_DeleteDC
_UnwrapPort
_WrapPort
_RestoreDC
_SetGraphicsMode
_WrapContext
_SetCGClientContextHdc
_RewrapPort
_RestoreHDCHWndMapping
_UnwrapContext
_ResetMacDC
_MapHwndAndHdcToNewHdc
_InvalidatePort
_GetPleaseDoNotHelpMe
_GetGraphicsMode
_CheckinPort
_FPortCheckedOut
_CheckoutPort
_FHdcMetafile
_CreateOffscreenDC
_CreateICA
_CreateDCA
_CopyDCState
_GetCGClientContextHdc
_EndCGDrawingHdc
_BeginCGDrawingHdc
_SaveDC
_CreateDIBitmap
_StretchDIBits
_SetDIBits
_GetDIBits
_GetGlyphOutlineA
_GetOutlineTextMetricsA
_GetTextCharset
_GetTextExtentExPointW
_GetTextExtentPointW
_MsoHrATSUIScriptFreeCache
_MsoHrATSUIScriptShape
_MsoHrATSUIScriptPlace
_GetTextExtentPoint32A
_GetMacFontInformation
_ExtTextOutW
_GetTextMetricsA
_MsoATSUCreateTextLayoutWithTextPtr
_GetFontData
_MsoFMeasureTextImage
_CreateFontA
_GetCharABCWidthsA
_GetCharWidthA
_TranslateCharsetInfo
_SetTextAlign
_SetPicComment
_MsoOssPcwchFirstClusterRgwch
_TextOutA
_FVertWch
_CreateFontIndirectA
_EnumFontsMinimalEx
_MsoGetRunCharWidthsWEx
_EnumFontFamiliesA
_EnumFontsA
_EnumFontsMinimalA
_ExtTextOutA
_GetTextFaceA
_GetTextExtentPointA
_GetTextAlign
_UnwrapPictPort
_CheckinPict
_WrapPictPort
_PlayMetaFile
_CreateMetaFileCPicture
_WrapPict
_UnwrapPict
_CopyMetaFileW
_DeleteMetaFile
_CreateMetaFileW
_CloseMetaFile
_CheckoutPict
_MulDiv
_SetTextColor
_SetBkMode
_GetBkMode
_GdiSetBatchLimit
_SetBkColor
_GetNearestColor
_SetPixel
_GetTextColor
_AfxGetPixel
_GetBkColor
_GetObjectA
_UnrealizeObject
_DeleteObject
_GetCurrentObject
_GetStockObject
_GetObjectType
_SelectObject
_GetPaletteEntries
_CreatePalette
_GetROP2
_SetROP2
_LineDDA
_GetCurrentPositionEx
_CreatePenIndirect
_MoveToEx
_CreatePen
_AfxLineTo
_Polyline
_CreatePolygonRgn
_AfxPolygon
_EndPage
_EndDocPM
_Escape
_CheckinPM
_AbortDocPM
_CheckoutPM
_StartDocPM
_StartPage
_AfxFrameRect
_HilightRect
_AfxFillRect
_AfxInvertRect
_RectVisible
_ExtSelectClipRgn
_GetClipBox
_AfxSetRectRgn
_CreateRectRgnIndirect
_GetRgnBox
_UnwrapRgn
_ExcludeClipRect
_AfxOffsetRgn
_CheckinRgn
_CheckoutRgn
_CombineRgn
_CreateRectRgn
_AfxEqualRgn
_AfxFillRgn
_IntersectClipRect
_RectInRegion
_AfxInvertRgn
_AfxPaintRgn
_CreateRoundRectRgn
_IntersectClipRgn
_PtInRegion
_WrapRgn
_SelectClipRgn
_Ellipse
_Rectangle
_RoundRect
_GetClipRgn
_GetWindowOrgEx
_LPtoDP
_SetMapMode
_SetViewportExtEx
_SetViewportOrgEx
_OffsetWindowOrgEx
_GetWindowExtEx
_SetWindowExtEx
_GetViewportExtEx
_SetWindowOrgEx
_DPtoLP
_LPtoGP
_OffsetViewportOrgEx
_GetMapMode
_ScaleViewportExtEx
_GetViewportOrgEx
__Z8FSL_StopPv
__Z8FSL_OpenPK5FSRefRPv
__Z34FSL_UnRegisterSoundStoppedCallbackPvPFvS_S_E
__Z19FSL_SetDoubleBufferPvl
__Z32FSL_RegisterSoundStoppedCallbackPvPFvS_S_ES_
__Z10FSL_ResumePv
__Z11FSL_ConvertPK5FSRefR13FSL_SoundInfoS1_PK12HFSUniStr255
__Z12FSL_AddTrackPvPK5FSRefii
__Z13FSL_IsPlayingPv
__Z13FSL_SetVolumePvf
__Z15FSL_GetDurationPv
__Z15FSL_IsSoundFilePK5FSRef
__Z8FSL_PlayPvb
__Z8FSL_OpenPclRPv
__Z9FSL_CloseRPv
__Z9FSL_PausePv
__Z8FSL_OpenRPv
_AECoerceDesc
_AECountItems
_AECreateAppleEvent
_AECreateDesc
_AECreateList
_AEDisposeDesc
_AEDuplicateDesc
_AEGetDescData
_AEGetDescDataSize
_AEGetNthDesc
_AEGetNthPtr
_AEGetParamDesc
_AEGetParamPtr
_AEInitializeDesc
_AEInteractWithUser
_AEProcessAppleEvent
_AEPutAttributePtr
_AEPutDesc
_AEPutParamDesc
_AEPutParamPtr
_AESend
_AESizeOfNthItem
_ATSFontGetHorizontalMetrics
_ATSFontGetVerticalMetrics
_ATSUClearAttributes
_ATSUClearLayoutControls
_ATSUCreateAndCopyStyle
_ATSUCreateStyle
_ATSUCreateTextLayoutWithTextPtr
_ATSUDirectGetLayoutDataArrayPtrFromLineRef
_ATSUDirectGetLayoutDataArrayPtrFromTextLayout
_ATSUDirectReleaseLayoutDataArrayPtr
_ATSUDisposeStyle
_ATSUDisposeTextLayout
_ATSUDrawText
_ATSUGetAttribute
_ATSUGetRunStyle
_ATSUGetStyleRefCon
_ATSUGetTextLayoutRefCon
_ATSUGetUnjustifiedBounds
_ATSUGlyphGetCubicPaths
_ATSUGlyphGetIdealMetrics
_ATSUGlyphGetScreenMetrics
_ATSUMatchFontsToText
_ATSUMeasureTextImage
_ATSUNextCursorPosition
_ATSUSetAttributes
_ATSUSetFontFeatures
_ATSUSetLayoutControls
_ATSUSetRunStyle
_ATSUSetSoftLineBreak
_ATSUSetStyleRefCon
_ATSUSetTextLayoutRefCon
_ATSUSetTransientFontMatching
_AXStreamTerminate
_AXUIElementCreateWithHIObjectAndIdentifier
_AXValueCreate
_ActivateControl
_ActivatePalette
_ActivateTSMDocument
_ActivateWindow
_AddDataBrowserItems
_AddDataBrowserListViewColumn
_AddDragItemFlavor
_AddIconToSuite
_AddMovieSelection
_AddNestedViewToSubView
_AddPt
_AddResource
_AppendMenu
_AppendMenuItemTextWithCFString
_AppendResMenu
_ApplyThemeBackground
_AutoSizeDataBrowserListViewColumns
_BackColor
_BeginUpdate
_BlockMove
_BlockMoveData
_Button
_CFAbsoluteTimeGetCurrent
_CFArrayAppendValue
_CFArrayApplyFunction
_CFArrayCreate
_CFArrayCreateMutable
_CFArrayCreateMutableCopy
_CFArrayGetCount
_CFArrayGetTypeID
_CFArrayGetValueAtIndex
_CFArrayRemoveValueAtIndex
_CFArraySetValueAtIndex
_CFBooleanGetTypeID
_CFBooleanGetValue
_CFBundleCloseBundleResourceMap
_CFBundleCopyBundleURL
_CFBundleCopyInfoDictionaryInDirectory
_CFBundleCopyLocalizedString
_CFBundleCopyResourceURL
_CFBundleCopyResourceURLsOfType
_CFBundleCreate
_CFBundleCreateBundlesFromDirectory
_CFBundleGetFunctionPointerForName
_CFBundleGetIdentifier
_CFBundleGetMainBundle
_CFBundleGetTypeID
_CFBundleLoadExecutable
_CFBundleOpenBundleResourceMap
_CFDataAppendBytes
_CFDataCreate
_CFDataCreateMutable
_CFDataGetBytePtr
_CFDataGetLength
_CFDateFormatterCreate
_CFDateFormatterCreateStringWithAbsoluteTime
_CFDateFormatterGetFormat
_CFDateFormatterSetFormat
_CFDictionaryAddValue
_CFDictionaryApplyFunction
_CFDictionaryContainsKey
_CFDictionaryCreate
_CFDictionaryCreateMutable
_CFDictionaryGetCount
_CFDictionaryGetKeysAndValues
_CFDictionaryGetTypeID
_CFDictionaryGetValue
_CFDictionaryGetValueIfPresent
_CFDictionaryRemoveAllValues
_CFDictionaryRemoveValue
_CFGetRetainCount
_CFGetTypeID
_CFLocaleCopyCurrent
_CFNumberCreate
_CFNumberGetValue
_CFPlugInCreate
_CFPlugInFindFactoriesForPlugInTypeInPlugIn
_CFPlugInInstanceCreate
_CFPreferencesGetAppIntegerValue
_CFPropertyListCreateFromXMLData
_CFRelease
_CFRetain
_CFShow
_CFStringAppend
_CFStringAppendCString
_CFStringAppendCharacters
_CFStringCompare
_CFStringCreateCopy
_CFStringCreateMutable
_CFStringCreateMutableCopy
_CFStringCreateWithCString
_CFStringCreateWithCharacters
_CFStringCreateWithFormat
_CFStringCreateWithPascalString
_CFStringCreateWithSubstring
_CFStringDelete
_CFStringFind
_CFStringFindAndReplace
_CFStringFindWithOptions
_CFStringGetBytes
_CFStringGetCString
_CFStringGetCharacterAtIndex
_CFStringGetCharacters
_CFStringGetCharactersPtr
_CFStringGetIntValue
_CFStringGetLength
_CFStringGetMaximumSizeForEncoding
_CFStringGetPascalString
_CFStringGetSystemEncoding
_CFStringGetTypeID
_CFStringHasPrefix
_CFStringHasSuffix
_CFStringNormalize
_CFStringReplace
_CFStringReplaceAll
_CFStringTrimWhitespace
_CFTimeZoneCopyDefault
_CFTimeZoneGetSecondsFromGMT
_CFURLCopyAbsoluteURL
_CFURLCopyFileSystemPath
_CFURLCopyHostName
_CFURLCopyLastPathComponent
_CFURLCopyPassword
_CFURLCopyPathExtension
_CFURLCopyScheme
_CFURLCopyUserName
_CFURLCreateCopyAppendingPathComponent
_CFURLCreateCopyAppendingPathExtension
_CFURLCreateCopyDeletingLastPathComponent
_CFURLCreateDataAndPropertiesFromResource
_CFURLCreateFromFSRef
_CFURLCreateStringByAddingPercentEscapes
_CFURLCreateStringByReplacingPercentEscapes
_CFURLCreateWithBytes
_CFURLCreateWithFileSystemPath
_CFURLCreateWithFileSystemPathRelativeToBase
_CFURLCreateWithString
_CFURLGetFSRef
_CFURLGetPortNumber
_CFURLGetString
_CFUUIDGetConstantUUIDWithBytes
_CFUUIDGetUUIDBytes
_CGAffineTransformConcat
_CGAffineTransformIdentity
_CGAffineTransformInvert
_CGAffineTransformMakeRotation
_CGAffineTransformMakeScale
_CGAffineTransformMakeTranslation
_CGAffineTransformRotate
_CGAffineTransformScale
_CGAffineTransformTranslate
_CGBitmapContextCreate
_CGBitmapContextCreateImage
_CGBitmapContextGetBitsPerPixel
_CGBitmapContextGetData
_CGBitmapContextGetHeight
_CGBitmapContextGetWidth
_CGColorCreate
_CGColorRelease
_CGColorSpaceCreateDeviceGray
_CGColorSpaceCreateDeviceRGB
_CGColorSpaceCreateIndexed
_CGColorSpaceCreatePattern
_CGColorSpaceCreateWithName
_CGColorSpaceRelease
_CGColorSpaceRetain
_CGContextAddArc
_CGContextAddArcToPoint
_CGContextAddLineToPoint
_CGContextAddLines
_CGContextAddPath
_CGContextAddRect
_CGContextBeginPage
_CGContextBeginPath
_CGContextBeginTransparencyLayer
_CGContextClearRect
_CGContextClip
_CGContextClipToRect
_CGContextClipToRects
_CGContextClosePath
_CGContextConcatCTM
_CGContextDrawImage
_CGContextDrawPDFDocument
_CGContextDrawPDFPage
_CGContextDrawPath
_CGContextEOClip
_CGContextEndPage
_CGContextEndTransparencyLayer
_CGContextFillPath
_CGContextFillRect
_CGContextFlush
_CGContextGetCTM
_CGContextGetClipBoundingBox
_CGContextGetPathBoundingBox
_CGContextMoveToPoint
_CGContextRelease
_CGContextRestoreGState
_CGContextRetain
_CGContextRotateCTM
_CGContextSaveGState
_CGContextScaleCTM
_CGContextSetAlpha
_CGContextSetFillColor
_CGContextSetFillColorSpace
_CGContextSetFillPattern
_CGContextSetFont
_CGContextSetFontSize
_CGContextSetGrayFillColor
_CGContextSetGrayStrokeColor
_CGContextSetInterpolationQuality
_CGContextSetLineCap
_CGContextSetLineDash
_CGContextSetLineJoin
_CGContextSetLineWidth
_CGContextSetMiterLimit
_CGContextSetRGBFillColor
_CGContextSetRGBStrokeColor
_CGContextSetShadow
_CGContextSetShouldAntialias
_CGContextSetShouldSmoothFonts
_CGContextSetStrokeColor
_CGContextSetStrokeColorSpace
_CGContextSetStrokeColorWithColor
_CGContextSetStrokePattern
_CGContextSetTextDrawingMode
_CGContextSetTextPosition
_CGContextShowGlyphsWithAdvances
_CGContextStrokePath
_CGContextStrokeRect
_CGContextSynchronize
_CGContextTranslateCTM
_CGDataConsumerCreate
_CGDataProviderCreate
_CGDataProviderCreateWithCFData
_CGDataProviderCreateWithData
_CGDataProviderRelease
_CGDataProviderRetain
_CGDisplayBounds
_CGDisplayCurrentMode
_CGFontCreateWithPlatformFont
_CGFontRelease
_CGGetDisplaysWithPoint
_CGGetDisplaysWithRect
_CGImageCreate
_CGImageCreateWithImageInRect
_CGImageCreateWithJPEGDataProvider
_CGImageCreateWithMaskingColors
_CGImageCreateWithPNGDataProvider
_CGImageDestinationAddImage
_CGImageDestinationCreateWithDataConsumer
_CGImageDestinationFinalize
_CGImageGetHeight
_CGImageGetWidth
_CGImageRelease
_CGImageRetain
_CGImageSourceCopyTypeIdentifiers
_CGMainDisplayID
_CGPDFContextCreate
_CGPDFDocumentAllowsPrinting
_CGPDFDocumentCreateWithProvider
_CGPDFDocumentCreateWithURL
_CGPDFDocumentGetMediaBox
_CGPDFDocumentGetNumberOfPages
_CGPDFDocumentGetPage
_CGPDFDocumentIsEncrypted
_CGPDFDocumentRelease
_CGPDFDocumentRetain
_CGPDFPageGetBoxRect
_CGPDFPageGetDrawingTransform
_CGPDFPageGetRotationAngle
_CGPSConverterConvert
_CGPSConverterCreate
_CGPaletteCreateDefaultColorPalette
_CGPaletteCreateWithDisplay
_CGPaletteGetColorAtIndex
_CGPaletteGetNumberOfSamples
_CGPaletteRelease
_CGPathAddArc
_CGPathAddArcToPoint
_CGPathAddCurveToPoint
_CGPathAddLineToPoint
_CGPathAddPath
_CGPathAddRect
_CGPathApply
_CGPathCloseSubpath
_CGPathCreateMutable
_CGPathGetBoundingBox
_CGPathIsEmpty
_CGPathMoveToPoint
_CGPathRelease
_CGPatternCreate
_CGPatternRelease
_CGPatternRetain
_CGPostKeyboardEvent
_CGRectContainsPoint
_CGRectEqualToRect
_CGRectGetHeight
_CGRectGetMaxX
_CGRectGetMaxY
_CGRectGetMidX
_CGRectGetMidY
_CGRectGetMinX
_CGRectGetMinY
_CGRectGetWidth
_CGRectInset
_CGRectIntersection
_CGRectIsEmpty
_CGRectIsNull
_CGRectOffset
_CGRectStandardize
_CGRectUnion
_CLSIDFromProgID
_CLSIDFromString
_CLSID_DOMDocument50
_CLSID_MXNamespaceManager50
_CLSID_MXXMLWriter50
_CLSID_OLEGenericObject
_CLSID_OLEGenericPackage
_CLSID_SAXAttributes50
_CLSID_SAXXMLReader50
_CLSID_XMLSchemaCache50
_CTabChanged
_CallInScrapPromises
_CallMeWhen
_CallNextEventHandler
_CanDocBeOpened
_CanQuickTimeOpenDataRef
_CancelCallBack
_ChangeDragBehaviors
_ChangeMenuItemAttributes
_ChangeWindowAttributes
_ChangeWindowGroupAttributes
_ChangedResource
_CharExtra
_CharNextA
_CharWidth
_CharacterByteType
_CharacterType
_ClearCurrentScrap
_ClearMenuBar
_ClearScrap
_ClipCGContextToRegion
_ClipRect
_CloseComponent
_CloseConnection
_ClosePicture
_CloseResFile
_CloseRgn
_CoCreateGuid
_CoDisconnectObject
_CoGetMalloc
_CoInitialize
_CoSetTaskNewPtr
_CoTaskMemAlloc
_CoTaskMemFree
_CoUninitialize
_CollapseWindow
_Color2Index
_CompactMem
_CompareText
_ContextualMenuSelect
_ConvertEventRefToEventRecord
_ConvertFromPStringToUnicode
_ConvertMovieToDataRef
_CopyBits
_CopyDeepMask
_CopyEvent
_CopyMenuItemTextAsCFString
_CopyMovieSelection
_CopyPixMap
_CopyPixPat
_CopyRgn
_CopyWindowTitleAsCFString
_Count1Resources
_CountMenuItems
_CountSubControls
_CreateBindCtx
_CreateCGContextForPort
_CreateCGImageFromPixMaps
_CreateCompDescriptor
_CreateDataBrowserControl
_CreateErrorInfo
_CreateEvent
_CreateFileMoniker
_CreateILockBytesOnHGlobal
_CreateIconControl
_CreateLogicalDescriptor
_CreateNewMenu
_CreateNewPort
_CreateNewWindow
_CreateObjSpecifier
_CreateProgressBarControl
_CreateRangeDescriptor
_CreateRootControl
_CreateSliderControl
_CreateStaticTextControl
_CreateStreamOnHGlobal
_CreateTextToUnicodeInfoByEncoding
_CreateUserPaneControl
_CurResFile
_DTInstall
_DataBrowserChangeAttributes
_DataBrowserGetMetric
_DataHGetDataRef
_DataHSetDataRefExtension
_DateToSeconds
_DeactivateControl
_Debugger
_Delay
_DeleteArrayCore
_DeleteCore
_DeleteMenu
_DeleteMenuItem
_DeleteMenuItems
_DeleteMovieSegment
_DeltaPoint
_DetachResource
_DeviceLoop
_DiffRgn
_DisableControl
_DisableMenuItem
_DisableScreenUpdates
_DisposeAEIdleUPP
_DisposeATSCubicClosePathUPP
_DisposeATSCubicCurveToUPP
_DisposeATSCubicLineToUPP
_DisposeATSCubicMoveToUPP
_DisposeATSUDirectLayoutOperationOverrideUPP
_DisposeCCursor
_DisposeCIcon
_DisposeCTable
_DisposeCallBack
_DisposeColorChangedUPP
_DisposeControl
_DisposeControlActionUPP
_DisposeControlKeyFilterUPP
_DisposeDataBrowserAddDragItemUPP
_DisposeDataBrowserDrawItemUPP
_DisposeDataBrowserItemCompareUPP
_DisposeDataBrowserItemDataUPP
_DisposeDataBrowserItemDragRgnUPP
_DisposeDataBrowserItemHelpContentUPP
_DisposeDataBrowserItemNotificationUPP
_DisposeDataBrowserTrackingUPP
_DisposeDeferredTaskUPP
_DisposeDeviceLoopDrawingUPP
_DisposeDialog
_DisposeDrag
_DisposeEventHandlerUPP
_DisposeEventLoopTimerUPP
_DisposeGWorld
_DisposeHandle
_DisposeIOCompletionUPP
_DisposeIconActionUPP
_DisposeIconSuite
_DisposeMenu
_DisposeModalFilterUPP
_DisposeMovie
_DisposeNavEventUPP
_DisposeNavObjectFilterUPP
_DisposeNavPreviewUPP
_DisposePalette
_DisposePixMap
_DisposePixPat
_DisposePort
_DisposeQDArcUPP
_DisposeQDBitsUPP
_DisposeQDCommentUPP
_DisposeQDGetPicUPP
_DisposeQDLineUPP
_DisposeQDOpcodeUPP
_DisposeQDOvalUPP
_DisposeQDPolyUPP
_DisposeQDRRectUPP
_DisposeQDRectUPP
_DisposeQDRgnUPP
_DisposeQDStdGlyphsUPP
_DisposeQDTextUPP
_DisposeQDTxMeasUPP
_DisposeRgn
_DisposeSndCallBackUPP
_DisposeTSMTEPostUpdateUPP
_DisposeTSMTEPreUpdateUPP
_DisposeTimerUPP
_DisposeTrackMedia
_DisposeUserEventUPP
_DisposeWindow
_DoDragDropMac
_DragGrayRgn
_Draw1Control
_DrawControls
_DrawDialog
_DrawMenuBar
_DrawPicture
_DrawText
_DrawThemeEditTextFrame
_DrawThemeFocusRect
_DrawThemeListBoxFrame
_DrawThemePrimaryGroup
_DrawThemeSeparator
_DrawThemeTextBox
_EmbedControl
_EmptyHandle
_EmptyRect
_EmptyRgn
_EnableControl
_EnableMenuItem
_EnableScreenUpdates
_EndUpdate
_EnsureLastCallDeallocRegistration
_EnterMovies
_EqualPt
_EqualRect
_EqualRgn
_EqualString
_EraseRect
_EraseRgn
_EventAvail
_ExitToShell
_ExtendFileTypeList
_FAppMFOFromAppSig
_FMCreateFontFamilyIterator
_FMDisposeFontFamilyIterator
_FMGetATSFontRefFromFont
_FMGetFontFamilyFromName
_FMGetFontFamilyName
_FMGetFontFamilyTextEncoding
_FMGetFontFormat
_FMGetFontTable
_FMGetNextFontFamily
_FMidEastSystem
_FSClose
_FSCloseFork
_FSCloseIterator
_FSCompareFSRefs
_FSCreateFileUnicode
_FSCreateResFile
_FSDeleteObject
_FSFindFolder
_FSFlushFork
_FSGetCatalogInfo
_FSGetCatalogInfoBulk
_FSGetDataForkName
_FSGetForkCBInfo
_FSMakeFSRefUnicode
_FSMakeFSSpec
_FSNewAlias
_FSNewAliasMinimal
_FSOpenFork
_FSOpenIterator
_FSOpenResFile
_FSRead
_FSReadFork
_FSResolveAlias
_FSResolveAliasFile
_FSResolveAliasFileWithMountFlags
_FSSetCatalogInfo
_FSWrite
_FSpCreateResFile
_FSpDirCreate
_FSpGetFInfo
_FSpMakeFSRef
_FSpOpenDF
_FSpOpenResFile
_FSpSetFInfo
_FSzFromWz
_FetchFontInfo
_FillParseTable
_FillRect
_FindControl
_FindControlUnderMouse
_FindDialogItem
_FindFolder
_FindNextComponent
_FindSpecificEventInQueue
_FindSymbol
_FindWindow
_FindWordBreaks
_Fix2Long
_Fix2X
_FixDiv
_FixMul
_FixRatio
_FixRound
_FlushSpecificEventsFromQueue
_FontMetrics
_FontScript
_FontToScript
_ForEachIconDo
_ForeColor
_FrameOval
_FrameRect
_FrameRoundRect
_FreeMem
_FrontWindow
_GDeviceChanged
_GUID_NULL
_Gestalt
_Get1IndResource
_Get1NamedResource
_Get1Resource
_GetACP
_GetAppFont
_GetApplicationEventTarget
_GetApplicationTextEncoding
_GetAvailableWindowPositioningBounds
_GetBackColor
_GetBestControlRect
_GetBevelButtonMenuValue
_GetCCursor
_GetCIcon
_GetCPFromMacScript
_GetCPixel
_GetCTSeed
_GetCTable
_GetCaretTime
_GetClip
_GetComponentInfo
_GetCompressionInfo
_GetCompressionName
_GetControlBounds
_GetControlData
_GetControlEventTarget
_GetControlFeatures
_GetControlHilite
_GetControlKind
_GetControlMaximum
_GetControlMinimum
_GetControlOwner
_GetControlPopupMenuHandle
_GetControlProperty
_GetControlReference
_GetControlRegion
_GetControlValue
_GetControlViewSize
_GetConvertStg
_GetCurrentEventButtonState
_GetCurrentEventKeyModifiers
_GetCurrentEventLoop
_GetCurrentEventTime
_GetCurrentKeyModifiers
_GetCurrentProcess
_GetCurrentScrap
_GetCurrentThread
_GetCursor
_GetDataBrowserHasScrollBars
_GetDataBrowserItemCount
_GetDataBrowserItemDataButtonValue
_GetDataBrowserItemDataProperty
_GetDataBrowserItemPartBounds
_GetDataBrowserListViewHeaderDesc
_GetDataBrowserScrollPosition
_GetDataBrowserSelectionAnchor
_GetDataBrowserTableViewColumnCount
_GetDataBrowserTableViewColumnProperty
_GetDataBrowserTableViewItemRow
_GetDataBrowserTableViewNamedColumnWidth
_GetDataBrowserTableViewRowHeight
_GetDateTime
_GetDblTime
_GetDeviceList
_GetDialogFromWindow
_GetDialogItem
_GetDialogItemAsControl
_GetDialogPort
_GetDialogWindow
_GetDiskFragment
_GetDropLocation
_GetEOF
_GetErrorInfo
_GetEventClass
_GetEventKind
_GetEventParameter
_GetEventTime
_GetFNum
_GetFPos
_GetFontInfo
_GetFontName
_GetForeColor
_GetFrontProcess
_GetFrontWindowOfClass
_GetGDevice
_GetGWorld
_GetGWorldDevice
_GetGWorldPixMap
_GetGlobalMouse
_GetGraphicsImporterForDataRef
_GetGraphicsImporterForFile
_GetGray
_GetGrayRgn
_GetHGlobalFromILockBytes
_GetHGlobalFromStream
_GetHandleSize
_GetIcon
_GetIconFromSuite
_GetIconRef
_GetIconRefFromFile
_GetIconSuite
_GetIndString
_GetIndexedSubControl
_GetIntlResource
_GetIntlResourceTable
_GetItemCmd
_GetItemIcon
_GetItemStyle
_GetKeyboardFocus
_GetKeys
_GetLastError
_GetLocaleInfoA
_GetMBarHeight
_GetMCEntry
_GetMacScriptFromCP
_GetMainDevice
_GetMainEventLoop
_GetMainEventQueue
_GetMatrixType
_GetMaxDevice
_GetMcpStringBundleFile
_GetMediaDataHandler
_GetMediaDataHandlerDescription
_GetMediaHandler
_GetMediaHandlerDescription
_GetMediaSampleDescription
_GetMenu
_GetMenuEventTarget
_GetMenuHandle
_GetMenuID
_GetMenuItemHierarchicalID
_GetMenuItemRefCon
_GetMenuItemText
_GetMenuTitle
_GetMouse
_GetMovieBox
_GetMovieDuration
_GetMovieImporterForDataRef
_GetMovieIndTrack
_GetMovieIndTrackType
_GetMoviePict
_GetMoviePosterPict
_GetMoviePreferredRate
_GetMovieRate
_GetMovieSelection
_GetMovieTime
_GetMovieTimeBase
_GetMovieTimeScale
_GetMovieTrackCount
_GetMovieUserData
_GetMovieVolume
_GetMoviesError
_GetNamedResource
_GetNextDevice
_GetNextProcess
_GetNextUserDataType
_GetNextWindow
_GetNextWindowOfClass
_GetPen
_GetPenState
_GetPicture
_GetPixBaseAddr
_GetPixBounds
_GetPixDepth
_GetPixMapInfo
_GetPixPat
_GetPixRowBytes
_GetPort
_GetPortBackColor
_GetPortBackPixPat
_GetPortBitMapForCopyBits
_GetPortBounds
_GetPortChExtra
_GetPortFillPixPat
_GetPortForeColor
_GetPortGrafProcs
_GetPortOpColor
_GetPortPenLocation
_GetPortPenMode
_GetPortPenPixPat
_GetPortPixMap
_GetPortSpExtra
_GetPortTextFace
_GetPortTextFont
_GetPortTextMode
_GetPortTextSize
_GetPortVisibleRegion
_GetProcessBundleLocation
_GetProcessInformation
_GetQDGlobalsBlack
_GetQDGlobalsGray
_GetQDGlobalsScreenBits
_GetQDGlobalsThePort
_GetQDGlobalsWhite
_GetRegionBounds
_GetResAttrs
_GetResInfo
_GetResource
_GetResourceSizeOnDisk
_GetRootControl
_GetScrapFlavorCount
_GetScrapFlavorData
_GetScrapFlavorFlags
_GetScrapFlavorInfoList
_GetScrapFlavorSize
_GetScriptManagerVariable
_GetScriptVariable
_GetSharedLibrary
_GetSheetWindowParent
_GetSoundDescriptionExtension
_GetSoundHeaderOffset
_GetSubViewInLayoutViewAtPosition
_GetSuperControl
_GetSystemDefaultLangID
_GetTextEncodingBase
_GetThemeBrushAsColor
_GetThemeDrawingState
_GetThemeFont
_GetThemeMetric
_GetThemeTextColor
_GetThemeTextDimensions
_GetThemeWindowRegion
_GetTimeBaseFlags
_GetTrackDataSize
_GetTrackMedia
_GetUserData
_GetUserFocusWindow
_GetWRefCon
_GetWTitle
_GetWVariant
_GetWindowAttributes
_GetWindowBounds
_GetWindowClass
_GetWindowEventTarget
_GetWindowFromPort
_GetWindowGreatestAreaDevice
_GetWindowGroup
_GetWindowGroupAttributes
_GetWindowGroupOfClass
_GetWindowKind
_GetWindowList
_GetWindowPort
_GetWindowPortBounds
_GetWindowProperty
_GetWindowPropertySize
_GetWindowRegion
_GlobalToLocal
_GoToBeginningOfMovie
_GraphicsExportDoExport
_GraphicsExportSetDepth
_GraphicsExportSetInputGWorld
_GraphicsExportSetOutputDataReference
_GraphicsExportSetOutputFileTypeAndCreator
_GraphicsExportSetResolution
_GraphicsImportExportImageFileToDataRef
_GraphicsImportGetDefaultMatrix
_GraphicsImportGetImageCount
_GraphicsImportGetNaturalBounds
_GraphicsImportSetDataReference
_GraphicsImportSetImageIndex
_HGetFInfo
_HGetState
_HICreateTransformedCGImage
_HIImageViewCreate
_HIImageViewSetImage
_HIMovieViewChangeAttributes
_HIMovieViewGetAttributes
_HIMovieViewGetControllerBarSize
_HIMovieViewGetMovieController
_HIMovieViewPause
_HIMovieViewPlay
_HIMovieViewSetMovie
_HIObjectCreate
_HIObjectDynamicCast
_HIObjectGetEventTarget
_HIObjectOverrideAccessibilityContainment
_HIObjectRegisterSubclass
_HIObjectSetAccessibilityIgnored
_HIShapeCreateIntersection
_HIShapeCreateWithQDRgn
_HIShapeCreateWithRect
_HIShapeIsEmpty
_HIShapeReplacePathInCGContext
_HIThemeApplyBackground
_HIThemeDrawButton
_HIThemeDrawFocusRect
_HIThemeDrawFrame
_HIThemeDrawGenericWell
_HIThemeDrawSeparator
_HIThemeDrawTextBox
_HIThemeGetTextDimensions
_HIViewAddSubview
_HIViewApplyLayout
_HIViewChangeFeatures
_HIViewConvertPoint
_HIViewConvertRect
_HIViewCreateOffscreenImage
_HIViewDisposeTrackingArea
_HIViewDrawCGImage
_HIViewFindByID
_HIViewGetBounds
_HIViewGetFeatures
_HIViewGetFirstSubview
_HIViewGetFocusPart
_HIViewGetFrame
_HIViewGetLayoutInfo
_HIViewGetNextView
_HIViewGetPartHit
_HIViewGetRoot
_HIViewGetSubviewHit
_HIViewGetSuperview
_HIViewGetViewForMouseEvent
_HIViewGetWindow
_HIViewIsLatentlyVisible
_HIViewIsVisible
_HIViewNewTrackingArea
_HIViewPlaceInSuperviewAt
_HIViewRemoveFromSuperview
_HIViewRender
_HIViewScrollRect
_HIViewSetFirstSubViewFocus
_HIViewSetFrame
_HIViewSetLayoutInfo
_HIViewSetNeedsDisplay
_HIViewSetNeedsDisplayInRect
_HIViewSetNeedsDisplayInRegion
_HIViewSetVisible
_HIViewSetZOrder
_HIViewSimulateClick
_HIViewSubtreeContainsFocus
_HIWindowFlush
_HLock
_HLockHi
_HNoPurge
_HPurge
_HSetState
_HUnlock
_HandAndHand
_HandToHand
_HandleControlClick
_HandleControlKey
_HandleControlSetCursor
_HideControl
_HideCursor
_HideDialogItem
_HideDragHilite
_HideWindow
_HiliteColor
_HiliteControl
_HiliteMenu
_HlinkClone
_HlinkCreateBrowseContext
_HlinkCreateExtensionServices
_HlinkCreateFromData
_HlinkCreateFromMoniker
_HlinkCreateFromString
_HlinkFileURLToMacFilePath
_HlinkGetBkgrndThreadOpsMgr
_HlinkGetSpecialReference
_HlinkIsShortcut
_HlinkMacFilePathToFileURL
_HlinkMacInitialize
_HlinkMacUninitialize
_HlinkNavigate
_HlinkNavigateToStringReference
_HlinkOnNavigate
_HlinkParseDisplayName
_HlinkPreprocessMoniker
_HlinkQueryCreateFromData
_HlinkResolveMonikerForData
_HlinkResolveShortcutToString
_HlinkResolveStringForData
_HlinkSetSpecialReference
_HlinkTranslateURL
_HlinkUpdateStackItem
_HoldMemory
_HomeResFile
_HrFileObjToURL
_HrSetupRegistryAdd
_ICGetPref
_ICLaunchURL
_ICStart
_ICStop
_IID_DocumentProperties
_IID_DocumentProperty
_IID_IBindCtx
_IID_IBindStatusCallback
_IID_IByteStream
_IID_IDocPropertyEnumerator
_IID_IFlushable
_IID_IHlink
_IID_IHlinkBkgrndThreadOpsClient
_IID_IHlinkMacHost
_IID_IHlinkSite
_IID_ILockBytes
_IID_IMXAttributes
_IID_IMXNamespaceManager
_IID_IMXWriter
_IID_IMetroProgress
_IID_IMetroSAXXMLReader
_IID_IMetroXmlUser
_IID_IMoniker
_IID_IMsoArray
_IID_IMsoAuthorHlinkDlg
_IID_IMsoBlip
_IID_IMsoButtonUser
_IID_IMsoCSSImportAdvancedUser
_IID_IMsoCSSImportUser
_IID_IMsoCanvasUser
_IID_IMsoControl
_IID_IMsoControlContainer
_IID_IMsoControlSite
_IID_IMsoControlUser
_IID_IMsoDMIBindStatusCallback
_IID_IMsoDispAdjustments
_IID_IMsoDispCallOut
_IID_IMsoDispColor
_IID_IMsoDispCommandBar
_IID_IMsoDispCommandBarButton
_IID_IMsoDispCommandBarComboBox
_IID_IMsoDispCommandBarControl
_IID_IMsoDispCommandBarControls
_IID_IMsoDispCommandBarPopup
_IID_IMsoDispCommandBars
_IID_IMsoDispConnectorFormat
_IID_IMsoDispFillFormat
_IID_IMsoDispFreeformBuilder
_IID_IMsoDispGroupShapes
_IID_IMsoDispLineFormat
_IID_IMsoDispNode
_IID_IMsoDispNodes
_IID_IMsoDispPictureFormat
_IID_IMsoDispShadowFormat
_IID_IMsoDispShape
_IID_IMsoDispShapeRange
_IID_IMsoDispShapes
_IID_IMsoDispTextEffectFormat
_IID_IMsoDispTextFrame
_IID_IMsoDispThreeDFormat
_IID_IMsoDisplayElementSet
_IID_IMsoDisplayManager
_IID_IMsoDocProperties
_IID_IMsoDocProperty
_IID_IMsoDrawing
_IID_IMsoDrawingGroup
_IID_IMsoDrawingHTMLExport
_IID_IMsoDrawingSelection
_IID_IMsoDrawingUserInterface
_IID_IMsoDrawingView
_IID_IMsoDrawingViewGroup
_IID_IMsoDrawingXMLImport
_IID_IMsoDropdownUser
_IID_IMsoDynamicGuidesManager
_IID_IMsoEaselUser
_IID_IMsoEmbeddedToolbarSite
_IID_IMsoExpandingGridUser
_IID_IMsoGaugeUser
_IID_IMsoHTMLExport
_IID_IMsoHTMLExportSet
_IID_IMsoHTMLFileNameTable
_IID_IMsoHTMLImport
_IID_IMsoHTMLImportUser
_IID_IMsoHTMLPropertyBag
_IID_IMsoHlinkInsertDropdownUser
_IID_IMsoInfoBarObject
_IID_IMsoLabelUser
_IID_IMsoListUser
_IID_IMsoMacControlUser
_IID_IMsoManifestEventHandler
_IID_IMsoMenuUser
_IID_IMsoMoviePlayer
_IID_IMsoOLDocument
_IID_IMsoOLDocument2
_IID_IMsoOwnerDropdownUser
_IID_IMsoOwnerListUser
_IID_IMsoPaneUser
_IID_IMsoRedirectedMoniker
_IID_IMsoReducedHTMLImport
_IID_IMsoRule
_IID_IMsoSaxReader
_IID_IMsoSaxReaderClient
_IID_IMsoSaxWriter
_IID_IMsoSchemaInfo
_IID_IMsoSpinnerUser
_IID_IMsoString
_IID_IMsoSwatchUser
_IID_IMsoTabUser
_IID_IMsoThemeList
_IID_IMsoTimeAnimateBehavior
_IID_IMsoTimeAnimateColorBehavior
_IID_IMsoTimeAnimateEffectBehavior
_IID_IMsoTimeAnimateMotionBehavior
_IID_IMsoTimeAnimateRotationBehavior
_IID_IMsoTimeAnimateScaleBehavior
_IID_IMsoTimeAnimationValueList
_IID_IMsoTimeBehavior
_IID_IMsoTimeCommandBehavior
_IID_IMsoTimeCondition
_IID_IMsoTimeIterateData
_IID_IMsoTimeList
_IID_IMsoTimeMediaElement
_IID_IMsoTimeNode
_IID_IMsoTimePropertyFixedList
_IID_IMsoTimePropertyList
_IID_IMsoTimeSequenceNode
_IID_IMsoTimeSetBehavior
_IID_IMsoTimeStringList
_IID_IMsoTimeStructure
_IID_IMsoToolbar
_IID_IMsoToolbarSet
_IID_IMsoToolbarSetUser
_IID_IMsoToolbarUser
_IID_IMsoUrl
_IID_IMsoWebOptionsDlg
_IID_IMsoWebToolbarHelper
_IID_IMsoXmlDataStore
_IID_IMsoXmlDataStore2
_IID_IMsoXmlDataStoreEnum
_IID_IMsoXmlDataStoreItem
_IID_IMsoXmlDataStoreItemListener
_IID_IMsoXmlDataStoreLocator
_IID_IMsoXmlDataStoreUndoListener
_IID_IMsoXmlError
_IID_IPackage
_IID_IPart
_IID_IPartEnumerator
_IID_IRelationship
_IID_IRelationshipEnumerator
_IID_IRelationshipSource
_IID_IRelationships
_IID_ISAXAttributes
_IID_ISAXContentHandler
_IID_ISAXErrorHandler
_IID_ISAXLexicalHandler
_IID_ISAXLocator
_IID_ISAXXMLReader
_IID_ISimpleUnknown
_IID_IStorage
_IID_IStream
_IID_IUnknown
_IID_IUnknownInProc
_IID_IWebPageFont
_IID_IWebPageFonts
_IID_IXMLDOMAttribute
_IID_IXMLDOMDocument
_IID_IXMLDOMDocument2
_IID_IXMLDOMDocument3
_IID_IXMLDOMElement
_IID_IXMLDOMNode
_IID_IXMLDOMParseError2
_IID_IXMLDOMProcessingInstruction
_IID_IXMLDOMSchemaCollection2
_IdenticalText
_IdleControls
_Index2Color
_InitCursor
_InitDataBrowserCallbacks
_InitDataBrowserCustomCallbacks
_InsTime
_InsXTime
_InsertMenu
_InsertMenuItem
_InsertMenuItemTextWithCFString
_InsetRect
_InsetRgn
_InstallEventHandler
_InstallEventLoopTimer
_InvalWindowRect
_InvalWindowRgn
_InvertColor
_InvertRect
_InvertRgn
_InvokeColorChangedUPP
_InvokeEventHandlerUPP
_InvokeNavEventUPP
_InvokeQDArcUPP
_InvokeQDBitsUPP
_InvokeQDCommentUPP
_InvokeQDGetPicUPP
_InvokeQDLineUPP
_InvokeQDOpcodeUPP
_InvokeQDOvalUPP
_InvokeQDPolyUPP
_InvokeQDRRectUPP
_InvokeQDRectUPP
_InvokeQDRgnUPP
_InvokeQDStdGlyphsUPP
_InvokeQDTextUPP
_InvokeQDTxMeasUPP
_IsAntiAliasedTextEnabled
_IsCmdChar
_IsControlActive
_IsControlEnabled
_IsControlHilited
_IsControlVisible
_IsDBCSLeadByte
_IsDBCSLeadByteScript
_IsDialogEvent
_IsEqualGUID
_IsMenuItemEnabled
_IsMovieDone
_IsOutline
_IsPortOffscreen
_IsPortPictureBeingDefined
_IsRegionRectangular
_IsShowContextualMenuEvent
_IsUserCancelEventRef
_IsValidCodePage
_IsValidIconRef
_IsValidPort
_IsValidWindowPtr
_IsWindowActive
_IsWindowCollapsed
_IsWindowHilited
_IsWindowLatentVisible
_IsWindowToolbarVisible
_IsWindowVisible
_KBGetLayoutType
_KeyScript
_KeyTranslate
_KillControls
_KillPicture
_LACloseAnalysisContext
_LAGetEnvironmentRef
_LAMorphemeAnalysis
_LAOpenAnalysisContext
_LIBID_Excel
_LIBID_Graph
_LIBID_Office
_LMGetCurApName
_LMGetCurApRefNum
_LMGetFractEnable
_LMGetHiliteMode
_LMGetHiliteRGB
_LMGetKbdType
_LMGetKeyRepThresh
_LMGetKeyThresh
_LMGetSysMap
_LMGetTheGDevice
_LMSetHiliteMode
_LSCopyItemInfoForRef
_LSCopyKindStringForRef
_LSFindApplicationForInfo
_LSOpenApplication
_LSOpenFSRef
_LSSetExtensionHiddenForRef
_LaunchApplication
_Line
_LineTo
_LoadRegTypeLib
_LoadResource
_LoadScrap
_LoadTypeLibFSp
_LocalToGlobal
_LockPixels
_LockPortBits
_LowercaseText
_MCEnableEditing
_MCGetControllerBoundsRect
_MPCreateTask
_MPTerminateTask
_MakeITable
_MakeRGBPat
_MaxBlock
_McpActiveWindow
_McpAlertAppModalRalco
_McpAppendPDFData
_McpAssertShipAssertFailedf
_McpBeginAppModalStateForWindow
_McpBeginCGContextForPort
_McpBeginCGContextForWindow
_McpBottomFloatingWindow
_McpBringToFront
_McpBrushGetRgb
_McpCFSanitizeForFilename
_McpCFStringCopyValueForAppInfoDictionaryKey
_McpCFStringCreateWithWz
_McpCGImageFromHpm
_McpCchFileObjGetName
_McpCchFileObjGetPath
_McpCchGetLocaleInfoFromNlsTables
_McpCchWzFromCFString
_McpCfsCopyLabelForTbid
_McpCfsCopyLabelForTcid
_McpCfsCopyTooltipOverrideForTcid
_McpCfsFileObjCopyName
_McpCfsFileObjCopyPath
_McpCfsFileObjCopyPathExtension
_McpChangeSpecialToolbarGrowStateAttributes
_McpCheckFlag
_McpClearFlags
_McpClearOverlayWindow
_McpCopyBits
_McpCopyCFStringForLid
_McpCopyCGImageForIconID
_McpCopyCGImageFromBundlePNG
_McpCopyCGImageFromMainBundlePNG
_McpCopyCGImageFromMcpBundlePNG
_McpCopyDateStringForCFAbsoluteTime
_McpCopyDateStringForUTCDateTime
_McpCopyFontMenu
_McpCreateAlertContext
_McpCreateBorderlessWindow
_McpCreateBorderlessWindowWithLayout
_McpCreateCGPatternFromPixMap
_McpCreateCheckListDataBrowser
_McpCreateControlContainer
_McpCreateMLTEEditControl
_McpCreateNewWindow
_McpCreateNewWindowWithLayout
_McpCreatePDFFromPict
_McpCreatePDFObj
_McpCreatePDFObjWithData
_McpCreateToolbar
_McpCreateToolbarSet
_McpCreateUniToolbarEmbeddingView
_McpDecryptCDInfo
_McpDestroyDeepFSIterator
_McpDestroyGCStackOfPort
_McpDestroyIMcpCtrl
_McpDestroyIMcpMR
_McpDestroyTooltip
_McpDisableTimers
_McpDispTBCBDataFromIMcpControl
_McpDispTBCDDDataFromIMcpControl
_McpDisposeHandleCore
_McpDisposeMcpWindow
_McpDisposePtrCore
_McpDisposeWindow
_McpDmCScreens
_McpDmFClipRectToScreen
_McpDmFForceRectOnScreen
_McpDmFGetRectGreatestAreaDevice
_McpDmFGetScreenInfo
_McpDmFRegisterNotifyProc
_McpDmFRemoveNotifyProc
_McpDmGdHGetScreen
_McpDmSrGetNthScreen
_McpDragWindow
_McpDrawBtnFrameInContext
_McpDrawNewPictureWell
_McpDrawPicture
_McpEnableTimers
_McpEndAppModalStateForWindow
_McpEndCGContextForPort
_McpEndCGContextForWindow
_McpEndCustomizeToolbar
_McpFBuildCMLinkableTextLinkTag
_McpFCFStringFromWtz
_McpFCFStringFromWz
_McpFClassicApp
_McpFCreateControl
_McpFCreateDeepFSIterator
_McpFCreateIMcpCtrl
_McpFCreateIMcpMR
_McpFDeleteFileObject
_McpFDispatchEventRef
_McpFEnsureMFODirExists
_McpFFSRefMatchesExtension
_McpFFSRefMatchesFileName
_McpFFileObjExists
_McpFFileObjIsDirectory
_McpFFileObjIsFile
_McpFFileObjSameVolumeObject
_McpFGetFSRefDirt
_McpFGetFileNameWzFromFSRef
_McpFGetMFODirt
_McpFGetNextDeepFSIteratorFile
_McpFGetWysiwygMenuStatus
_McpFInitMcp
_McpFLangRegionFromLid
_McpFLaunchBrowserOnFSRef
_McpFLaunchFWLink
_McpFLidFromLangRegion
_McpFMarkMemCore
_McpFMenuItemIsThemeFont
_McpFRefillTooltip
_McpFRegisterToolboxClientPrefsCallbacks
_McpFSetWysiwygMenuStatus
_McpFValidSystemTime
_McpFidCMTIGetDefaultFont
_McpFileObjCopyCFURL
_McpFileObjCreateAEDesc
_McpFileObjCreateAlias
_McpFileObjCreateCopy
_McpFileObjCreateDirectory
_McpFileObjCreateFile
_McpFileObjCreateFromAlias
_McpFileObjCreateFromCFURL
_McpFileObjCreateFromFSRef
_McpFileObjCreateFromFSRefUnicode
_McpFileObjCreateFromFSRefWz
_McpFileObjCreateFromFSSpec
_McpFileObjCreateFromMcpFileObjWz
_McpFileObjCreateFromVRefNumWz
_McpFileObjCreateMutable
_McpFileObjCreateParent
_McpFileObjCreateResFile
_McpFileObjDeleteDirectoryContents
_McpFileObjDeleteObject
_McpFileObjGetCatalogInfo
_McpFileObjGetFSRef
_McpFileObjGetFSSpec
_McpFileObjMoveObjectOnVolume
_McpFileObjOpenDF
_McpFileObjOpenRF
_McpFileObjRelease
_McpFileObjRenameUnicode
_McpFileObjRetain
_McpFileObjSetCatalogInfo
_McpFileObjSetPermissions
_McpFindWindow
_McpFrontDocWindow
_McpFrontWindow
_McpGCGetPropertiesFromPort
_McpGCNew
_McpGCRelease
_McpGCSetPropertiesIntoPort
_McpGCSetTextFace
_McpGCSetTextFont
_McpGCSetTextSize
_McpGCStackPop
_McpGCStackPushGC
_McpGCStackRelease
_McpGetAlphaFromBtnState
_McpGetBtnPalette
_McpGetBuildFromBundle
_McpGetBundleWithIdentifierPersistent
_McpGetCFAbsoluteTimeFromFileTime
_McpGetCFAbsoluteTimeFromSystemTime
_McpGetControlDefaults
_McpGetCurDirStore
_McpGetCurNavFolderAEDesc
_McpGetFileTimeFromCFAbsoluteTime
_McpGetFileTimeFromUTCDateTime
_McpGetFileVersion
_McpGetFontFromFontFamilyInstance
_McpGetFontMenu
_McpGetGCStackOfPort
_McpGetGenericPort
_McpGetIMcpCtrlFromControl
_McpGetLayerState
_McpGetLocalizedLang
_McpGetNewDialog
_McpGetPDFDataPtr
_McpGetPDFDataSize
_McpGetPDFObjDataConsumer
_McpGetPDFObjDataProvider
_McpGetParentWindowsSheetWindow
_McpGetPlexAvailableOLooks
_McpGetRectFromCGPDFContext
_McpGetRuntimeCodePage
_McpGetRuntimeLang
_McpGetSFSaveDisk
_McpGetSpecialToolbarGrowStateAttributes
_McpGetSystemLang
_McpGetSystemTimeFromCFAbsoluteTime
_McpGetToolbarDefaults
_McpGetToolboxClientPrefsCallbacks
_McpGetTopLevelLayoutViewForWindow
_McpGetUTCDateTimeFromFileTime
_McpGetWindowLayer
_McpGetWindowOverlay
_McpGetWindowProperty
_McpGetWindowStandardState
_McpGetWindowUserState
_McpGlobalToLocalPoints
_McpGlobalToViewLocalHIPoints
_McpGlobalToViewLocalPoints
_McpHIViewGetFrameInWindowCoords
_McpHIViewSetFrameInWindowCoords
_McpHIWindowSetToolbarView
_McpHideWindow
_McpHiliteWindow
_McpIFromPwch
_McpIGetNewFile
_McpIconIDFromTCID
_McpIconSizeFromIconID
_McpInForeground
_McpInitializeBundle
_McpInvokeSpecialToolbarBoundsCheckCallback
_McpIsFontMenuUpToDate
_McpIsMcpWindow
_McpIsOwnerWindow
_McpIsProxyEvent
_McpIsRuntimeEastAsian
_McpIsWindow
_McpIsWindowModal
_McpLcidGetLocalization
_McpLinkUIElements
_McpLocalToGlobalPoints
_McpMapCGPDFContextToRect
_McpModalWindowPresent
_McpMoveWindow
_McpMutableFileObjSetFromFSRef
_McpMutableFileObjSetFromFSRefUnicode
_McpMutableFileObjSetFromFSRefWz
_McpMutableFileObjSetFromFSSpec
_McpMutableFileObjSetFromMcpFileObj
_McpMutableFileObjSetFromMcpFileObjWz
_McpMutableFileObjSetFromVRefNumUnicode
_McpMutableFileObjSetFromVRefNumWz
_McpNewHandleClearCore
_McpNewHandleCore
_McpNewPtrClearCore
_McpNewPtrCore
_McpNullActiveDoc
_McpOssIterateDirectory
_McpPitoolboxCur
_McpPlotTBIconFromTCIDInContext
_McpPlotTBIconInContext
_McpPlotTBIconWithBlanking
_McpQuitApplicationEventLoop
_McpRegisterEventRecordCallback
_McpReleaseCGPDFContextForRect
_McpReleaseMemCore
_McpReleasePDFObj
_McpRttpCreateTooltip
_McpRunApplicationEventLoop
_McpSSFSetup
_McpSSGetSSState
_McpSSGetSuspendStackData
_McpSSPopStackFrame
_McpSSPushStackFrame
_McpSSRegisterMessageProc
_McpSSResumeBegin
_McpSSResumeEnd
_McpSSSuspend
_McpSelectWindow
_McpSendBehind
_McpSetCGBrushToCGPattern
_McpSetCGBrushToPixPat
_McpSetCurDirStore
_McpSetCurNavFolderAEDesc
_McpSetCursor
_McpSetFlags
_McpSetLayer
_McpSetParentWindow
_McpSetSFSaveDisk
_McpSetSpecialToolbarBoundsCheckCallback
_McpSetTabState
_McpSetWindowBounds
_McpSetWindowModality
_McpSetWindowProperty
_McpSetWindowStandardState
_McpSetWindowToolbarSet
_McpSetWindowUserState
_McpShowHelp
_McpShowHide
_McpShowWindow
_McpSizeWindow
_McpSyncContextToQD
_McpTSMActivateTSMDocument
_McpTSMDeactivateTSMDocument
_McpTSMDeleteTSMDocument
_McpTSMFixTSMDocument
_McpTSMKeyScript
_McpTSMNewTSMDocument
_McpTerminateBundle
_McpUninitMcp
_McpViewLocalToGlobalPoints
_McpWaitNextEvent
_McpWindowIsDocument
_McpWtzFromCFString
_McpWzFromCFString
_McpZoomWindow
_MeasureText
_MemError
_MenuSelect
_ModalDialog
_MopFMapMemorySzPath
_MopGetDisplayDPI
_MopUnmapMemory
_MoreMasterPointers
_Move
_MoveControl
_MoveHHi
_MoveTo
_MoveWindow
_MovieExportSetSampleDescription
_MovieExportToHandle
_MovieImportGetDestinationMediaType
_MoviesTask
_MsoCbBufSizeCwch
_MsoCbSizePpv
_MsoCbSizePv
_MsoCchDecodeURL
_MsoCchEncodeURL
_MsoCchSzLen
_MsoCchWtLen
_MsoCchWtzLen
_MsoCchWzLen
_MsoCompareStringA
_MsoCompareStringW
_MsoCpCchSzLenFromWz
_MsoCpRgchToRgwch
_MsoCwchParseRomanIntWz
_MsoDALFDlgIsValid
_MsoDALGetMetric
_MsoDeletePxCore
_MsoEmptyPxCore
_MsoFAllocMemCore
_MsoFAllocPxCore
_MsoFAlphaNumWch
_MsoFAlphaWch
_MsoFApplyBrush
_MsoFByteLoad
_MsoFByteSave
_MsoFClonePxCore
_MsoFCompactPxCore
_MsoFDigitCh
_MsoFDigitWch
_MsoFEnsureSpacePxCore
_MsoFGetBrush
_MsoFGetLaunchPref
_MsoFGetMyTemplatesDirMFO
_MsoFGetSharedTemplateDirMFO
_MsoFGetUserTemplateDirMFO
_MsoFGrowPxCore
_MsoFHexDigitWch
_MsoFInitPxCore
_MsoFInsertNewPxCore
_MsoFInsertPxCore
_MsoFLongLoad
_MsoFLongSave
_MsoFLookupPx
_MsoFLookupSortPx
_MsoFPpvReallocCore
_MsoFPuncWch
_MsoFReallocMemCore
_MsoFRemovePx
_MsoFResizePxCore
_MsoFRgchEqual
_MsoFRgwchEqual
_MsoFSetSharedTemplateDirMFO
_MsoFSetUserTemplateDirMFO
_MsoFSharedIsInitialized
_MsoFSharedLock
_MsoFSharedUnlock
_MsoFSpaceCh
_MsoFSpaceWch
_MsoFSzEqual
_MsoFWordLoad
_MsoFWordSave
_MsoFWtzEqual
_MsoFWtzLoad
_MsoFWtzSave
_MsoFWzEqual
_MsoFreeMemCore
_MsoFreePpvCore
_MsoFreePvCore
_MsoFreePxCore
_MsoGetStringTypeExW
_MsoHrSimpleQueryInterface
_MsoHrSimpleQueryInterface2
_MsoIAppendNewPxCore
_MsoIAppendPxCore
_MsoIAppendUniquePxCore
_MsoICompRgwchCchInvariant
_MsoIDigitValueOfWch
_MsoIInsertSortPxCore
_MsoMemcmp
_MsoMemcpy
_MsoMemmove
_MsoMemset
_MsoMovePx
_MsoMultiByteToWideChar
_MsoParseDoubleWz
_MsoPpvAllocCore
_MsoPvAllocCore
_MsoPvCallocExCore
_MsoPvReallocCore
_MsoPvShAllocCore
_MsoPwchStripAmpersandsWtz
_MsoPwchStripWtz
_MsoQuickSort
_MsoQuickSortPx
_MsoReleaseSz
_MsoRgchToRgwch
_MsoRgwchIndex
_MsoRgwchLowerFast
_MsoRgwchRIndex
_MsoRgwchToCpRgch
_MsoRgwchToRgch
_MsoSgnRgchCompare
_MsoSgnRgwchCompare
_MsoSgnSzCompare
_MsoSgnWtzCompare
_MsoSgnWzCompare
_MsoShFreePv
_MsoSharedSetInitialized
_MsoStCchCopy
_MsoStToSzCch
_MsoStealPxCore
_MsoStrcmp
_MsoSzCchAppend
_MsoSzCchCopy
_MsoSzDecodeInt
_MsoSzDecodeUint
_MsoSzMarkWtz
_MsoSzMarkWz
_MsoSzToStCch
_MsoSzToWtzCch
_MsoSzToWzCch
_MsoUTF8ToUnicode
_MsoUnicodeToUTF8
_MsoValHexCh
_MsoWchStripAccent
_MsoWchStripDiacritic
_MsoWchToLower
_MsoWchToLowerLid
_MsoWchToUpper
_MsoWchToUpperInvariant
_MsoWideCharToMultiByte
_MsoWtCchCopy
_MsoWtzCchAppend
_MsoWtzCchCopy
_MsoWtzToSzCch
_MsoWtzToWzCch
_MsoWzCchAppend
_MsoWzCchCopy
_MsoWzClone
_MsoWzDecodeInt
_MsoWzDecodeUIntFill
_MsoWzDecodeUint
_MsoWzFromWtz
_MsoWzIndex
_MsoWzLower
_MsoWzMarkSz
_MsoWzRgwchCchCopy
_MsoWzStrStr
_MsoWzStrStrEx
_MsoWzToStCch
_MsoWzToSzCch
_MsoWzToWtzCch
_MsoWzUpper
_Munger
_NADisposeNoteChannel
_NANewNoteChannel
_NAPlayNote
_NAPrerollNoteChannel
_NAResetNoteChannel
_NASetController
_NASetInstrumentNumber
_NASetNoteChannelVolume
_NAStuffToneDescription
_NATask
_NLAssertShipAssertFailedf
_NLAssertShipAssertFailedfcc
_NLBeginEncryptWithContext
_NLCreateDigest
_NLCreateSymmetricContext
_NLCreateSymmetricKey
_NLDecryptWithContext
_NLDeleteContext
_NLDisposeDigest
_NLEncryptMoreWithContext
_NLEncryptWithContext
_NLFreeKey
_NLGetCFAllocator
_NLGetRandomBytes
_NMInstall
_NMRemove
_NSetPalette
_NavCompleteSave
_NavCreateChooseFileDialog
_NavCreateChooseFolderDialog
_NavCreateGetFileDialog
_NavCreatePutFileDialog
_NavCustomControl
_NavDialogDispose
_NavDialogGetReply
_NavDialogGetSaveFileName
_NavDialogRun
_NavDialogSetSaveFileExtensionHidden
_NavDialogSetSaveFileName
_NavDisposeReply
_NavGetDefaultDialogCreationOptions
_NewAEIdleUPP
_NewATSCubicClosePathUPP
_NewATSCubicCurveToUPP
_NewATSCubicLineToUPP
_NewATSCubicMoveToUPP
_NewATSUDirectLayoutOperationOverrideUPP
_NewAlias
_NewArrayCore
_NewCallBack
_NewColorChangedUPP
_NewControl
_NewControlActionUPP
_NewControlKeyFilterUPP
_NewControlUserPaneDrawUPP
_NewCore
_NewDataBrowserAddDragItemUPP
_NewDataBrowserDrawItemUPP
_NewDataBrowserHitTestUPP
_NewDataBrowserItemCompareUPP
_NewDataBrowserItemDataUPP
_NewDataBrowserItemDragRgnUPP
_NewDataBrowserItemHelpContentUPP
_NewDataBrowserItemNotificationUPP
_NewDataBrowserTrackingUPP
_NewDeferredTaskUPP
_NewDeviceLoopDrawingUPP
_NewDrag
_NewEventComparatorUPP
_NewEventHandlerUPP
_NewEventLoopTimerUPP
_NewGWorld
_NewHandle
_NewHandleClear
_NewIOCompletionUPP
_NewIconActionUPP
_NewIconSuite
_NewMenu
_NewModalFilterUPP
_NewMovie
_NewMovieFromDataRef
_NewMovieFromHandle
_NewMovieFromProperties
_NewNavEventUPP
_NewNavObjectFilterUPP
_NewNavPreviewUPP
_NewPalette
_NewPixMap
_NewPixPat
_NewQDArcUPP
_NewQDBitsUPP
_NewQDCommentUPP
_NewQDGetPicUPP
_NewQDLineUPP
_NewQDOpcodeUPP
_NewQDOvalUPP
_NewQDPolyUPP
_NewQDPutPicUPP
_NewQDRRectUPP
_NewQDRectUPP
_NewQDRgnUPP
_NewQDStdGlyphsUPP
_NewQDTextUPP
_NewQDTxMeasUPP
_NewRgn
_NewSndCallBackUPP
_NewString
_NewTSMTEPostUpdateUPP
_NewTSMTEPreUpdateUPP
_NewThread
_NewThreadEntryUPP
_NewTimerUPP
_NewUserEventUPP
_OffsetRect
_OffsetRgn
_OleConvertIStorageToOLESTREAM
_OleConvertOLESTREAMToIStorage
_OleCreateCustomScrapDataObject
_OleFlushClipboard
_OleInitialize
_OleLoadFromStream
_OleSetClipboardEx2
_OleSetCustomPutScrap
_OleSetCustomZeroScrap
_OleUninitialize
_OleoCchHrCopyNlsInfo
_OleoHcultureHrBestMatch
_OleoHrDataKeyCount
_OleoHrDataTableCount
_OleoHrEnumCalendars
_OleoHrEnumCultures
_OleoHrEnumCulturesByCultureParent
_OleoHrEnumDataKeys
_OleoHrEnumDataTables
_OleoHrEnumDttmFormats
_OleoHrEnumScripts
_OleoHrEnumScriptsByCulture
_OleoHrGetCalendarCount
_OleoHrGetCalendarProperties
_OleoHrGetCalidFromHcal
_OleoHrGetCultureCount
_OleoHrGetCultureCountByCultureParent
_OleoHrGetCultureProperties
_OleoHrGetCultureTagFromHculture
_OleoHrGetCultureTagFromLcid
_OleoHrGetDataValuesRef
_OleoHrGetHcalDefaultFromHculture
_OleoHrGetHcalFromCalid
_OleoHrGetHcultureFromCultureTag
_OleoHrGetHcultureFromLcid
_OleoHrGetHcultureParentFromHculture
_OleoHrGetHscrDefaultFromHculture
_OleoHrGetHscrFromScriptTag
_OleoHrGetHscrFromSid
_OleoHrGetIOleo
_OleoHrGetLcidFromHculture
_OleoHrGetScriptCount
_OleoHrGetScriptCountByCulture
_OleoHrGetScriptProperties
_OleoHrGetScriptTagFromHscr
_OleoHrGetSidFromHscr
_OleoHrGetSupportedCultures
_OleoHrPrioritizeCultures
_OleoHrReleaseDataValuesRef
_OpColor
_OpenADataHandler
_OpenADefaultComponent
_OpenCPicture
_OpenComponent
_OpenDataBrowserContainer
_OpenDefaultComponent
_OpenPicture
_OpenRgn
_PBCloseSync
_PBDTGetAPPLSync
_PBDTGetIconSync
_PBDTGetPath
_PBFlushVolSync
_PBGetCatInfoAsync
_PBGetCatInfoSync
_PBGetEOFSync
_PBGetFPosSync
_PBHGetVInfoSync
_PBHGetVolParmsSync
_PBHGetVolSync
_PBHOpenDenySync
_PBReadAsync
_PBReadSync
_PBSetEOFSync
_PBSetFPosSync
_PBWriteSync
_PLstrcmp
_PLstrrchr
_PMCreatePageFormat
_PMCreateSession
_PMGetAdjustedPageRect
_PMGetAdjustedPaperRect
_PMGetOrientation
_PMGetResolution
_PMRelease
_PMRetain
_PMSessionBeginDocument
_PMSessionBeginDocumentNoDialog
_PMSessionBeginPage
_PMSessionBeginPageNoDialog
_PMSessionDefaultPageFormat
_PMSessionEndDocument
_PMSessionEndDocumentNoDialog
_PMSessionEndPage
_PMSessionEndPageNoDialog
_PMSessionError
_PMSessionGetDocumentFormatSupported
_PMSessionGetGraphicsContext
_PMSessionPageSetupDialogMain
_PMSessionPrintDialogMain
_PMSessionSetDocumentFormatGeneration
_PMSessionSetError
_PMSessionValidatePageFormat
_PMSetJobNameCFString
_PaintRect
_PaintRgn
_ParamText
_PenMode
_PenNormal
_PenPat
_PenSize
_PicComment
_PickColor
_PinRect
_PixPatChanged
_PlayThemeSound
_PlotCIcon
_PlotIconRef
_PlotIconSuite
_PopUpMenuSelect
_PortChanged
_PortSize
_PostEventToQueue
_PrerollMovie
_PrimeTime
_ProofCanProofLang
_ProofInit
_PropVariantClear
_PropVariantCopy
_Pt2Rect
_PtInRect
_PtInRgn
_PtrToHand
_PurgeMem
_PurgeSpace
_PutMovieIntoHandle
_PutScrapFlavor
_QDGetPictureBounds
_QDGlobalToLocalPoint
_QDLocalToGlobalPoint
_QDPictCreateWithProvider
_QDPictDrawToCGContext
_QDPictGetBounds
_QDPictGetResolution
_QDPictRelease
_QTGetDataHandlerFullPathCFString
_QTNewDataReferenceFromFSRef
_QTNewDataReferenceFromFSRefCFString
_QTSetComponentProperty
_QuitAppModalLoopForWindow
_RGBBackColor
_RGBForeColor
_ReadClassStg
_ReadPartialResource
_RealFont
_ReallocateHandle
_ReceiveNextEvent
_RecoverHandle
_RectInRgn
_RectRgn
_RegCloseKey
_RegOpenKey
_RegQueryValueEx
_RegisterAppearanceClient
_RegisterApplicationForMouseMoveEvents
_RegisterHIViewForMouseMoveEvents
_RegisterIconRefFromFSRef
_RegisterMediaTypeClass
_RegisterMimeFormat
_RegisterTypeLibFSp
_RegisterWindowForMouseMoveEvents
_ReleaseEvent
_ReleaseIconRef
_ReleaseResource
_ReleaseStgMedium
_RemoveControlProperty
_RemoveDataBrowserItems
_RemoveEventFromQueue
_RemoveEventHandler
_RemoveEventLoopTimer
_RemoveResource
_RemoveUserData
_RemoveWindowProperty
_RepositionWindow
_ResError
_ReserveMem
_ResizePalette
_ResolveAlias
_ResolveAliasFile
_RetainEvent
_RevealDataBrowserItem
_RevertTextEncodingToScriptInfo
_RmvTime
_RunAppModalLoopForWindow
_SafeArrayAccessData
_SafeArrayCopy
_SafeArrayCreate
_SafeArrayDestroy
_SafeArrayGetDim
_SafeArrayGetElement
_SafeArrayGetLBound
_SafeArrayGetUBound
_SafeArrayUnaccessData
_SameProcess
_SectRect
_SectRgn
_SelectWindow
_SendControlMessage
_SendEventToEventTarget
_SetA5
_SetAntiAliasedTextEnabled
_SetAutomaticControlDragTrackingEnabledForWindow
_SetBevelButtonGraphicAlignment
_SetCCursor
_SetCPixel
_SetClip
_SetControlAction
_SetControlBounds
_SetControlData
_SetControlFontStyle
_SetControlMaximum
_SetControlMinimum
_SetControlProperty
_SetControlReference
_SetControlTitle
_SetControlTitleWithCFString
_SetControlValue
_SetControlViewSize
_SetControlVisibility
_SetCurrentA5
_SetDataBrowserCallbacks
_SetDataBrowserCustomCallbacks
_SetDataBrowserHasScrollBars
_SetDataBrowserItemDataBooleanValue
_SetDataBrowserItemDataButtonValue
_SetDataBrowserItemDataDrawState
_SetDataBrowserItemDataIcon
_SetDataBrowserItemDataItemID
_SetDataBrowserItemDataText
_SetDataBrowserListViewDisclosureColumn
_SetDataBrowserListViewHeaderBtnHeight
_SetDataBrowserScrollPosition
_SetDataBrowserSelectedItems
_SetDataBrowserSelectionFlags
_SetDataBrowserSortProperty
_SetDataBrowserTableViewGeometry
_SetDataBrowserTableViewHiliteStyle
_SetDataBrowserTableViewItemRowHeight
_SetDataBrowserTableViewNamedColumnWidth
_SetDataBrowserTableViewRowHeight
_SetDialogItem
_SetDialogItemText
_SetDragImage
_SetDragImageWithCGImage
_SetDragItemBounds
_SetDropLocation
_SetEOF
_SetEmptyRgn
_SetEntryColor
_SetEntryUsage
_SetErrorInfo
_SetEventLoopTimerNextFireTime
_SetEventParameter
_SetFPos
_SetFractEnable
_SetFrontProcess
_SetGDevice
_SetGWorld
_SetHandleSize
_SetIdentityMatrix
_SetItemCmd
_SetItemMark
_SetKeyboardFocus
_SetLastError
_SetMenuItemHierarchicalID
_SetMenuItemKeyGlyph
_SetMenuItemModifiers
_SetMenuItemRefCon
_SetMenuItemText
_SetMovieActive
_SetMovieBox
_SetMoviePosterTime
_SetMovieProgressProc
_SetMovieRate
_SetMovieSelection
_SetMovieVisualContext
_SetMovieVolume
_SetPenState
_SetPort
_SetPortBounds
_SetPortGrafProcs
_SetPortOpColor
_SetPortPenMode
_SetPortPenPixPat
_SetPortTextFont
_SetPortTextSize
_SetPortVisibleRegion
_SetPortWindowPort
_SetPt
_SetQDError
_SetRect
_SetRectRgn
_SetRegQueryClassCallback
_SetResAttrs
_SetResLoad
_SetResourceSize
_SetScriptManagerVariable
_SetStdCProcs
_SetThemeBackground
_SetThemeCursor
_SetThemeDrawingState
_SetThemeTextColor
_SetThemeWindowBackground
_SetTimeBaseFlags
_SetTrackEnabled
_SetUserFocusWindow
_SetWRefCon
_SetWTitle
_SetWindowActivationScope
_SetWindowBounds
_SetWindowDefaultButton
_SetWindowGroup
_SetWindowProperty
_SetWindowTitleWithCFString
_ShowControl
_ShowCursor
_ShowDialogItem
_ShowDragHilite
_ShowHide
_ShowHideWindowToolbar
_ShowWindow
_SizeControl
_SizeWindow
_SndDisposeChannel
_SndDoCommand
_SndDoImmediate
_SndGetSysBeepState
_SndNewChannel
_SndPlay
_SndSetSysBeepState
_SndSoundManagerVersion
_SoundConverterBeginConversion
_SoundConverterClose
_SoundConverterConvertBuffer
_SoundConverterEndConversion
_SoundConverterGetBufferSizes
_SoundConverterOpen
_SoundConverterSetInfo
_SpaceExtra
_StartMovie
_StdGetPic
_StdPutPic
_StgCreateDocfile
_StgCreateDocfileOnILockBytes
_StgIsStorageFile
_StgIsStorageFileFileObj
_StgOpenStorage
_StgOpenStorageFileObj
_StgOpenStorageOnILockBytes
_StillDown
_StopAlert
_StopMovie
_StringFromCLSID
_StringFromGUID2
_StringToNum
_StringWidth
_StyledLineBreak
_SubPt
_SysAllocString
_SysAllocStringLen
_SysBeep
_SysFreeString
_SysStringLen
_SystemTimeToVariantTime
_TSMGetActiveDocument
_TSMSetDocumentProperty
_TXNConvertFromPublicScrap
_TXNFocus
_TXNIsScrapPastable
_TXNPaste
_TXNPointToOffset
_TXNSetData
_TXNSetSelection
_TXNSetTXNObjectControls
_TXNShowSelection
_TempFreeMem
_TempMaxMem
_TempNewHandle
_TestDeviceAttribute
_TextFace
_TextFont
_TextMode
_TextSize
_TextWidth
_TickCount
_TrackBox
_TrackControl
_TrackDrag
_TrackMouseLocation
_TrackMouseLocationWithOptions
_TrackMouseRegion
_TransformPoints
_TransitionWindow
_TranslateFile
_TruncString
_TruncText
_TruncateThemeText
_UTGetOSTypeFromString
_UTTypeCopyDeclaration
_UTTypeCopyDescription
_UTTypeCopyPreferredTagWithClass
_UnholdMemory
_UnionRect
_UnionRgn
_Unique1ID
_UnlockPixels
_UnlockPortBits
_UnregisterApplicationForMouseMoveEvents
_UnregisterIconRef
_UpdateDataBrowserItems
_UpdateDialog
_UpdateResFile
_UppercaseText
_UseInputWindow
_UseResFile
_UseThemeFont
_ValidWindowRgn
_VariantChangeType
_VariantChangeTypeEx
_VariantClear
_VariantCopy
_VariantInit
_VariantTimeToSystemTime
_WaitMouseMoved
_WaitMouseUp
_WaitNextEvent
_WakeUpProcess
_WideAdd
_WideMultiply
_WideNegate
_WideSubtract
_WideWideDivide
_WriteClassStg
_WriteClassStm
_WriteFmtUserTypeStg
_WritePartialResource
_WriteResource
_WzTruncCopy
_X2Fix
_XorRgn
_YieldToAnyThread
_YieldToThread
_ZoomRects
__CloseUnicodeConverter
__DefaultRuneLocale
__Unwind_Resume
__ZN13MEventHandler10AddCommandERKmPFP8MCommandPvES4_
__ZN13MEventHandler10AddHandlerEPK13EventTypeSpecmPFlP25OpaqueEventHandlerCallRefP14OpaqueEventRefPvES7_
__ZN13MEventHandler10AddHandlerEmmPFlP25OpaqueEventHandlerCallRefP14OpaqueEventRefPvES4_
__ZN13MEventHandler10InitializeEP20OpaqueEventTargetRefbb
__ZN13MEventHandler11AddListenerEP14MEventListener
__ZN13MEventHandler13RemoveCommandEm
__ZN13MEventHandler14FRemoveHandlerEmm
__ZN13MEventHandler14RemoveListenerEP14MEventListener
__ZN13MEventHandler15FRemoveHandlersEPK13EventTypeSpecm
__ZN13MEventHandler15HandleHICommandEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
__ZN13MEventHandler7DoEventEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
__ZN13MEventHandler9DoCommandEmP14OpaqueEventRef
__ZN13MEventHandler9TerminateEv
__ZN13MEventHandlerD1Ev
__ZN13MEventHandlerD2Ev
__ZN13MTimerHandler10DeleteThisEv
__ZN13MTimerHandler10StartTimerEv
__ZN13MTimerHandler11SetIntervalEd
__ZN13MTimerHandler12EnableTimersEv
__ZN13MTimerHandler13DisableTimersEv
__ZN13MTimerHandler15FTimersDisabledEv
__ZN13MTimerHandler9StopTimerEv
__ZN13MTimerHandlerD2Ev
__ZN14MAccessibility11HandleEventEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility11PerformPickEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility12PerformPressEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility13PerformAcceptEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility13PerformCancelEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility14ActivateActionENS_16SupportedActionsE
__ZN14MAccessibility15PerformShowMenuEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility16PerformDecrementEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility16PerformIncrementEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility17GetArrayFromEventEP25OpaqueEventHandlerCallRefR6MEventRP9__CFArray
__ZN14MAccessibility18SetRoleDescriptionEPK10__CFString
__ZN14MAccessibility20GetAccessibilitySizeEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility20GetAccessibilityTextEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility20SetAccessibilityHelpEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility20SetAccessibilitySizeEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility20SetAccessibilityTextEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility21GetAccessibilityTitleEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility21SetAccessibilityTitleEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility21SetAccessibilityValueEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility22GetAccessibilityParentEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility22GetAccessibilityWindowEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility22SetAccessibilityParentEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility22SetAccessibilityWindowEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility23GetAccessibilityEnabledEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility23GetAccessibilityFocusedEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility23SetAccessibilityEnabledEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility23SetAccessibilityFocusedEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility24GetAccessibilityChildrenEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility24GetAccessibilityMaxValueEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility24GetAccessibilityMinValueEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility24GetAccessibilityPositionEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility24SetAccessibilityChildrenEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility24SetAccessibilityMaxValueEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility24SetAccessibilityMinValueEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility24SetAccessibilityPositionEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility27GetAccessibilityDescriptionEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility27GetAccessibilityOrientationEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility27GetAccessibilityVisibleTextEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility27SetAccessibilityOrientationEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility27SetAccessibilityVisibleTextEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility28GetAccessibilitySelectedTextEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility28SetAccessibilitySelectedTextEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility29CopyAccessibilityChildAtPointERK7CGPointPPK13__AXUIElement
__ZN14MAccessibility29CopyFocusedAccessibilityChildEPPK13__AXUIElement
__ZN14MAccessibility31GetAccessibilityVisibleChildrenEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility31SetAccessibilityVisibleChildrenEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility32GetAccessibilitySelectedChildrenEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility32SetAccessibilitySelectedChildrenEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility33GetAccessibilitySelectedTextRangeEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility33GetAccessibilityTopLevelUIElementEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility33SetAccessibilitySelectedTextRangeEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility36GetAccessibilityNumberCharacterRangeEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility36SetAccessibilityNumberCharacterRangeEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility41GetAccessibilityVisibleCharacterTextRangeEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility41SetAccessibilityVisibleCharacterTextRangeEP25OpaqueEventHandlerCallRefR6MEvent
__ZN14MAccessibility7SetRoleEPK10__CFString
__ZN14MAccessibilityC1ER7MHIViewPK10__CFStringS4_NS_19SupportedAttributesES5_NS_16SupportedActionsE
__ZN14MAccessibilityC2ER7MHIViewPK10__CFStringS4_NS_19SupportedAttributesES5_NS_16SupportedActionsE
__ZN14MAccessibilityC2ER7MHIViewyNS_19SupportedAttributesES2_NS_16SupportedActionsE
__ZN14MAccessibilityD2Ev
__ZN19MToolboxClientPrefs20GetClientPaneFromNibEP10__CFBundlePK10__CFStringS4_PP15OpaqueWindowPtrP9ControlIDPP16OpaqueControlRef
__ZN6MsoDAL10HorizFrameC1ERNS_20IMsoAutoLayoutDialogEPNS_14CompositeFrameE
__ZN6MsoDAL10HorizFrameD1Ev
__ZN6MsoDAL10TableFrameC1ERNS_20IMsoAutoLayoutDialogEiiPNS_14CompositeFrameE
__ZN6MsoDAL10TableFrameD1Ev
__ZN6MsoDAL12OverlapFrameC1ERNS_20IMsoAutoLayoutDialogEPNS_14CompositeFrameE
__ZN6MsoDAL12OverlapFrameD1Ev
__ZN6MsoDAL12TabCtrlFrameC1ERNS_20IMsoAutoLayoutDialogEPvPNS_14CompositeFrameE
__ZN6MsoDAL12TabCtrlFrameC1ERNS_20IMsoAutoLayoutDialogEPvS3_PNS_14CompositeFrameE
__ZN6MsoDAL12TabCtrlFrameD1Ev
__ZN6MsoDAL13GroupBoxFrameC1ERNS_20IMsoAutoLayoutDialogEPvPNS_14CompositeFrameE
__ZN6MsoDAL13GroupBoxFrameD1Ev
__ZN6MsoDAL13ListEditFrame29SetWidthToFitPreexistingItemsEiii
__ZN6MsoDAL13ListEditFrameC1ERNS_20IMsoAutoLayoutDialogEPvS3_PNS_14CompositeFrameE
__ZN6MsoDAL13ListEditFrameD1Ev
__ZN6MsoDAL13NumInputFrame14SetWidthDigitsEi
__ZN6MsoDAL13NumInputFrameC1ERNS_20IMsoAutoLayoutDialogEPvPNS_14CompositeFrameE
__ZN6MsoDAL13NumInputFrameD1Ev
__ZN6MsoDAL18CtrlContainerFrameC1ERNS_20IMsoAutoLayoutDialogEPvPNS_14CompositeFrameE
__ZN6MsoDAL18MsoDALLayoutParamsC1ENS_13MsoDALDlgTypeEbb
__ZN6MsoDAL20IMsoAutoLayoutDialogC2Ev
__ZN6MsoDAL20IMsoAutoLayoutDialogD2Ev
__ZN6MsoDAL9CtrlFrame15SetSizeFromCtrlEv
__ZN6MsoDAL9CtrlFrame17SetHeightFromCtrlEv
__ZN6MsoDAL9CtrlFrame29SetWidthToFitPreexistingItemsEiii
__ZN6MsoDAL9CtrlFrameC1ERNS_20IMsoAutoLayoutDialogEPvPNS_14CompositeFrameE
__ZN6MsoDAL9CtrlFrameD1Ev
__ZN6MsoDAL9LeafFrame12AddTopStringEPv
__ZN6MsoDAL9LeafFrame14SetHeightLinesEi
__ZN6MsoDAL9VertFrameC1ERNS_20IMsoAutoLayoutDialogEPNS_14CompositeFrameE
__ZN6MsoDAL9VertFrameD1Ev
__ZN7MHIView10ControlHitEsm
__ZN7MHIView10DragWithinEP13OpaqueDragRef
__ZN7MHIView10MouseEventER6MEvent
__ZN7MHIView11DragReceiveEP13OpaqueDragRef
__ZN7MHIView11HandleEventEP25OpaqueEventHandlerCallRefR6MEvent
__ZN7MHIView11PerformPickER6MEventPK13__AXUIElement
__ZN7MHIView12AddedSubViewEP16OpaqueControlRef
__ZN7MHIView12ControlClickERK6MEvent
__ZN7MHIView12GetFocusPartEPs
__ZN7MHIView12PerformPressER6MEventPK13__AXUIElement
__ZN7MHIView12SetFocusPartEsP15OpaqueRgnHandlehPs
__ZN7MHIView12TitleChangedEv
__ZN7MHIView12ValueChangedEv
__ZN7MHIView13BoundsChangedEmRK6CGRectS2_P15OpaqueRgnHandle
__ZN7MHIView13HandleDisposeEP16OpaqueControlRef
__ZN7MHIView13HiliteChangedEssP15OpaqueRgnHandle
__ZN7MHIView13MCPMouseEventER6MEvent
__ZN7MHIView13PerformAcceptER6MEventPK13__AXUIElement
__ZN7MHIView13PerformCancelER6MEventPK13__AXUIElement
__ZN7MHIView13RemoveSubViewEP16OpaqueControlRef
__ZN7MHIView14ControlClickExE7CGPointtmmP15OpaqueWindowPtrs
__ZN7MHIView14GetOptimalSizeEP6CGSizePf
__ZN7MHIView15PerformShowMenuER6MEventPK13__AXUIElement
__ZN7MHIView16CreateViewObjectEmPK10__CFStringS2_S2_S2_
__ZN7MHIView16PerformDecrementER6MEventPK13__AXUIElement
__ZN7MHIView16PerformIncrementER6MEventPK13__AXUIElement
__ZN7MHIView17ActivateInterfaceENS_9InterfaceE
__ZN7MHIView17VisibilityChangedEh
__ZN7MHIView18ActiveStateChangedEb
__ZN7MHIView18ControlSimulateHitEsm
__ZN7MHIView18GetRegionAsHIShapeEsRPK9__HIShape
__ZN7MHIView18GetSizeConstraintsEP6CGSizeS1_
__ZN7MHIView18TrackingAreaExitedEP27OpaqueHIViewTrackingAreaRefm7CGPoint
__ZN7MHIView19ChangeBehaviorFlagsEmm
__ZN7MHIView19ContextualMenuClickE5Pointm
__ZN7MHIView19DeactivateInterfaceENS_9InterfaceE
__ZN7MHIView19EnabledStateChangedEv
__ZN7MHIView19OwningWindowChangedEP15OpaqueWindowPtrS1_
__ZN7MHIView19TrackingAreaEnteredEP27OpaqueHIViewTrackingAreaRefm7CGPoint
__ZN7MHIView20gpUIElementCallbacksE
__ZN7MHIView21InterceptSubviewClickERP14OpaqueEventRef
__ZN7MHIView22AddAccessibilityObjectEP14MAccessibility
__ZN7MHIView22AddEventsToBaseHandlerEPK13EventTypeSpecm
__ZN7MHIView22HandleArbitraryMessageEslRl
__ZN7MHIView24gpAccessibilityCallbacksE
__ZN7MHIView25AfterDrawingNonCompositedEv
__ZN7MHIView25ChangeAutoInvalidateFlagsEmm
__ZN7MHIView25RemoveAccessibilityObjectEP14MAccessibility
__ZN7MHIView26BeforeDrawingNonCompositedEv
__ZN7MHIView26HandleObjectInitializationER6MEvent
__ZN7MHIView5TrackER6MEventPs
__ZN7MHIView6RetainEv
__ZN7MHIView7GetDataEmslPlPv
__ZN7MHIView7HitTestERK7CGPointRs
__ZN7MHIView7ReleaseEv
__ZN7MHIView7SetDataEmslPKv
__ZN7MHIView9DragEnterEP13OpaqueDragRef
__ZN7MHIView9DragLeaveEP13OpaqueDragRef
__ZN7MHIView9GetRegionEsP15OpaqueRgnHandle
__ZN7MHIView9SetCursorE5Pointm
__ZN7MHIView9TextInputER6MEvent
__ZN7MHIViewD2Ev
__ZN7MWindow10FGetBoundsEP4Rect
__ZN7MWindow10FSetBoundsEPK4Rect
__ZN7MWindow11HandleCloseEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
__ZN7MWindow12HandleUpdateEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
__ZN7MWindow14CommandEnabledEiPb
__ZN7MWindow15FSetWindowClassEm
__ZN7MWindow15HandleActivatedEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
__ZN7MWindow16FSetWindowParentEP15OpaqueWindowPtr
__ZN7MWindow16GetMWindowObjectEP15OpaqueWindowPtr
__ZN7MWindow17HandleDeactivatedEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
__ZN7MWindow17HandleDrawContentEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
__ZN7MWindow17WindowIsAnMWindowEP15OpaqueWindowPtr
__ZN7MWindow18FSetMcpWindowLayerEh
__ZN7MWindow18HandleCursorChangeEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
__ZN7MWindow19HandleFocusAcquiredEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
__ZN7MWindow20FSetWindowAttributesEm
__ZN7MWindow21HandleClickContentRgnEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
__ZN7MWindow21HandleFocusRelinquishEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
__ZN7MWindow22FClearWindowAttributesEm
__ZN7MWindow22HandleContentViewClickEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
__ZN7MWindow4HideEv
__ZN7MWindow4ShowEv
__ZN7MWindow6CreateEb
__ZN7MWindow7DestroyEv
__ZN7MWindowC2EP15OpaqueWindowPtr
__ZN7MWindowC2Ev
__ZN7MWindowD2Ev
__ZN9MHIObject14CreateHIObjectEPFlP17OpaqueHIObjectRefPP7MHIViewEPS1_P14OpaqueEventRef
__ZN9__gnu_cxx12__atomic_addEPVii
__ZN9__gnu_cxx18__exchange_and_addEPVii
__ZN9__gnu_cxxeqIPcSsEEbRKNS_17__normal_iteratorIT_T0_EES7_
__ZN9__gnu_cxxeqIPcSsEEbRKNS_17__normal_iteratorIT_T0_EES7_.eh
__ZNK6MsoDAL20IMsoAutoLayoutDialog13IsDialogValidEv
__ZNK6MsoDAL20IMsoAutoLayoutDialog17MarkDialogInvalidEv
__ZNK7MHIView10InvalidateEP15OpaqueRgnHandle
__ZNK7MHIView10InvalidateEv
__ZNK7MWindow15IsWindowCreatedEv
__ZNK7MWindow9GetWindowEv
__ZNSaIcEC1Ev
__ZNSaIcED1Ev
__ZNSaIwEC1ERKS_
__ZNSaIwEC1Ev
__ZNSaIwEC2ERKS_
__ZNSaIwED1Ev
__ZNSaIwED2Ev
__ZNSbIwSt11char_traitsIwESaIwEE5clearEv
__ZNSbIwSt11char_traitsIwESaIwEE6appendEmw
__ZNSbIwSt11char_traitsIwESaIwEEC1Ev
__ZNSbIwSt11char_traitsIwESaIwEED1Ev
__ZNSbIwSt11char_traitsIwESaIwEEixEm
__ZNSs3endEv
__ZNSs5beginEv
__ZNSs6appendEPKcm
__ZNSs6appendEmc
__ZNSsC1EPKcRKSaIcE
__ZNSsC1Ev
__ZNSsD1Ev
__ZNSsixEm
__ZNSt15_List_node_base4hookEPS_
__ZNSt15_List_node_base6unhookEv
__ZSt17__throw_bad_allocv
__ZSt18_Rb_tree_decrementPSt18_Rb_tree_node_base
__ZSt18_Rb_tree_incrementPSt18_Rb_tree_node_base
__ZSt20__throw_length_errorPKc
__ZSt20__throw_out_of_rangePKc
__ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_
__ZTI13MEventHandler
__ZTI13MTimerHandler
__ZTI14MAccessibility
__ZTI19MToolboxClientPrefs
__ZTI7MHIView
__ZTI7MWindow
__ZTIN6MsoDAL20IMsoAutoLayoutDialogE
__ZTIl
__ZTV13MEventHandler
__ZTV13MTimerHandler
__ZTV19MToolboxClientPrefs
__ZTV7MHIView
__ZTVN10__cxxabiv117__class_type_infoE
__ZTVN10__cxxabiv119__pointer_type_infoE
__ZTVN10__cxxabiv120__function_type_infoE
__ZTVN10__cxxabiv120__si_class_type_infoE
__ZTVN10__cxxabiv121__vmi_class_type_infoE
___CFConstantStringClassReference
___CFStringMakeConstantString
___cxa_allocate_exception
___cxa_begin_catch
___cxa_call_unexpected
___cxa_end_catch
___cxa_guard_abort
___cxa_guard_acquire
___cxa_guard_release
___cxa_pure_virtual
___cxa_rethrow
___cxa_throw
___dynamic_cast
___error
___gxx_personality_v0
___keymgr_global
___maskrune
___sF
___tolower
__keymgr_get_and_lock_processwide_ptr
__keymgr_set_and_unlock_processwide_ptr
_acosf
_asin
_atan
_atan2
_atanf
_atoi
_bsearch
_calloc
_ceil
_close
_conv
_cos
_cosf
_crc32
_deflate
_deflateEnd
_deflateInit2_
_deflateInit_
_deflateParams
_deflateReset
_dlopen
_dlsym
_dup
_exit
_exp
_expf
_feclearexcept
_fegetenv
_fegetexceptflag
_fegetround
_fesetenv
_fesetround
_fileno
_floor
_fprintf$LDBL128
_free
_frexp
_inflate
_inflateEnd
_inflateInit2_
_isprint
_kCFAllocatorDefault
_kCFAllocatorSystemDefault
_kCFBooleanTrue
_kCFPreferencesCurrentApplication
_kCFTypeArrayCallBacks
_kCFTypeDictionaryKeyCallBacks
_kCFTypeDictionaryValueCallBacks
_kCGColorSpaceGenericRGB
_kCGPDFContextTitle
_kCertificateManagerBundleID
_kCertificateManagerBundleName
_kCertificateUIBundleID
_kCertificateUIBundleName
_kChartBundleID
_kChartBundleName
_kClipGalleryBundleID
_kDatabaseDaemonBundleID
_kDatabaseDaemonBundleName
_kDatabaseUtilityBundleID
_kDatabaseUtilityBundleName
_kEntourageBundleID
_kEntourageBundleName
_kEntourageCoreBundleID
_kEntourageCoreBundleName
_kEntourageLegacyBundleID
_kEntourageLegacyBundleName
_kEntouragePrintPDEBundleID
_kEntouragePrintPDEBundleName
_kEquationEditorBundleID
_kEquationEditorBundleName
_kExcelBundleID
_kExcelBundleName
_kExcelPDEBundleID
_kExcelPDEBundleName
_kGraphBundleID
_kGraphBundleName
_kHIViewTopLevelContentSubviewID
_kHIViewTopLevelLayoutViewID
_kHIViewWindowContentID
_kMSXMLBundleID
_kMSXMLBundleName
_kMcpBundleID
_kMcpBundleName
_kOfficeLibraryBundleID
_kOfficeLibraryBundleName
_kOfficeNotificationsBundleID
_kOfficeNotificationsBundleName
_kOfficePGBundleID
_kOfficePGBundleName
_kOleAutBundleID
_kOleAutBundleName
_kOleBundleID
_kOleBundleName
_kOrgChartBundleID
_kOrgChartBundleName
_kPPTBundleID
_kPPTBundleName
_kPPTPDEBundleID
_kPPTPDEBundleName
_kPowerPlantBundleID
_kPowerPlantBundleName
_kUTImportedTypeDeclarationsKey
_kUTTagClassFilenameExtension
_kUTTagClassOSType
_kUTTypeBMP
_kUTTypeConformsToKey
_kUTTypeDescriptionKey
_kUTTypeGIF
_kUTTypeIdentifierKey
_kUTTypeJPEG
_kUTTypePDF
_kUTTypePNG
_kUTTypeTagSpecificationKey
_kUrlMonikerBundleID
_kWordBundleID
_kWordBundleName
_kWordPDEBundleID
_kWordPDEBundleName
_ldexp
_log
_longjmp
_lrint
_lroundf
_lstrlenA
_malloc
_mcp_sqm_app_launch
_mcp_sqm_app_quit
_memcmp
_memcpy
_memmove
_memset
_nl_free_stub
_nl_malloc_stub
_num2dec
_open
_pi
_pow
_pthread_getspecific
_pthread_key_create
_pthread_key_delete
_pthread_mutex_lock
_pthread_mutex_unlock
_pthread_setspecific
_qsort
_rand
_rinttol
_roundf
_setjmp
_sin
_sinf
_snprintf$LDBL128
_sqrt
_sqrtf
_srand
_strcat
_strchr
_strcmp
_strlen
_strncpy
_strtol
_tan
_vImageUnpremultiplyData_ARGB8888
_vlcidCur
8IUnknown
7IMalloc
10CStdMalloc
13IClassFactory
N13CProxyManager12CUnknownImplE
13IProxyManager
13CProxyManager
12IStubManager
12CStubManager
7IStream
4CPkt
11IRpcChannel
8CCliLRPC
7CMemStm
10ILockBytes
9CMemBytes
8IMarshal
14CMarshalMemStm
16CMarshalMemBytes
14IMacDragHelper
15IMacDragHelper2
11IDataObject
16CMacDragDataImpl
14IEnumFORMATETC
15CMacDragEnumFmt
12CAntiMoniker
8IPersist
14IPersistStream
8IMoniker
8IROTData
8IBindCtx
8CBindCtx
17CCompositeMoniker
12IEnumMoniker
21CCompositeMonikerEnum
19CMarshalImplPStream
12CBaseMoniker
12CFileMoniker
12CItemMoniker
21CDelayUnlockContainer
15CPointerMoniker
19IRunningObjectTable
19CRunningObjectTable
15CClipDataObject
18CClipEnumFormatEtc
21CCarbonClipDataObject
19CLocalEnumFormatEtc
11IAdviseSink
N10CCacheNode14CCacheSinkImplE
16CDataAdviseCache
16CDefClassFactory
N10CDefObject12CUnknownImplE
N10CDefObject15CDataObjectImplE
10IOleObject
N10CDefObject14COleObjectImplE
15IPersistStorage
N10CDefObject15CPersistStgImplE
15IRunnableObject
N10CDefObject7CROImplE
19IExternalConnection
N10CDefObject7CECImplE
N10CDefObject12CAdvSinkImplE
N14CDummyDdeProxy12CUnknownImplE
N14CDummyDdeProxy25CProxyManagerDummyDdeImplE
N8CDefLink12CUnknownImplE
N8CDefLink19CLinkDataObjectImplE
N8CDefLink18CLinkOleObjectImplE
8IOleLink
N8CDefLink9CLinkImplE
N8CDefLink11CLinkROImplE
N8CDefLink16CLinkAdvSinkImplE
N8CDefLink19CLinkPersistStgImplE
11IOlePresObj
10CGenObject
9CMfObject
N9COleCache20COleCacheControlImplE
9IOleCache
10IOleCache2
N9COleCache13COleCacheImplE
N9COleCache14CCacheDataImplE
11IViewObject
12IViewObject2
N9COleCache14CCacheViewImplE
N9COleCache13CCacheStgImplE
9COleCache
13IEnumSTATDATA
10CCacheEnum
8CEnumFmt
10CEnumFmt10
12IEnumOLEVERB
9CEnumVerb
16CPackagerMoniker
17IDataAdviseHolder
9CDAHolder
13CEnumSTATDATA
16IOleAdviseHolder
9COAHolder
N11CPrxBindCtx12CUnknownImplE
9IRpcProxy
N11CPrxBindCtx6CProxyE
N11CPrxBindCtx12CBindCtxImplE
8IRpcStub
12CStubBindCtx
N12CPrxClassObj12CUnknownImplE
N12CPrxClassObj6CProxyE
N12CPrxClassObj17CClassFactoryImplE
13CStubClassObj
N8CPrxDrop12CUnknownImplE
N8CPrxDrop6CProxyE
11IDropTarget
N8CPrxDrop15CDropTargetImplE
9CStubDrop
N8CPrxEnum12CUnknownImplE
N8CPrxEnum6CProxyE
N8CPrxEnum13CProxEnumImplE
9CStubEnum
N9CStubEnum9CEnumImplE
N10CPrxObject12CUnknownImplE
N10CPrxObject6CProxyE
N10CPrxObject14COleObjectImplE
N10CPrxObject15CDataObjectImplE
17IParseDisplayName
13IOleContainer
17IOleItemContainer
N10CPrxObject14CContainerImplE
N10CPrxObject19CPersistStorageImplE
12IPersistFile
N10CPrxObject16CPersistFileImplE
15IPersistMoniker
N10CPrxObject19CPersistMonikerImplE
12IHlinkTarget
N10CPrxObject16CHlinkTargetImplE
11CStubObject
10IPSFactory
10CPSFactory
N8CPrxSite12CUnknownImplE
N8CPrxSite6CProxyE
14IOleClientSite
N8CPrxSite4COSIE
N8CPrxSite15CAdviseSinkImplE
9CStubSite
12CDelayObject
18CDelayObjectStgmed
N9CPrxStore12CUnknownImplE
N9CPrxStore6CProxyE
N9CPrxStore14CLockBytesImplE
N9CPrxStore11CStreamImplE
10CStubStore
11BrushObject
10FontObject
9grafState
6cState
10MetaObject
13PaletteObject
9PenObject
12CSmAllocator
16IConnectionPoint
16CAsyncConnection
25IConnectionPointContainer
25CAsyncConnectionContainer
12CContextList
12CMallocBased
24CDocfileUnmarshalFactory
14CGlobalContext
15IPrivateStorage
12IRootStorage
8IStorage
15CExposedDocFile
12CMarshalList
19IPropertySetStorage
12IEnumSTATSTG
16CExposedIterator
16PExposedIterator
11CLocalAlloc
13CMappedStream
14CExposedStream
9IFillInfo
14IFillLockBytes
14IFileLockBytes
11CFileStream
17CGlobalFileStream
8CContext
16CPubMappedStream
28IDocfileAsyncConnectionPoint
16CConnectionPoint
16CSimpEnumSTATSTG
12CSimpStorage
16CSimpStorageOpen
11CSimpStream
15CSimpStreamOpen
15CCFMappedStream
16IPropertyStorage
16PMemoryAllocator
16CCoTaskAllocator
16CPropertyStorage
23CDocFilePropertyStorage
16IEnumSTATPROPSTG
16CEnumSTATPROPSTG
19CPropertySetStorage
26CDocFilePropertySetStorage
19IEnumSTATPROPSETSTG
19CEnumSTATPROPSETSTG
15CReservedMemory
20CWin31ReservedMemory
_FnAssertOn
_CoCreateInstance
_CoBuildVersion
_CoBlockSyncLrpc
_CLSIDFromStringA
_CoGetClassFrag
_CoGetClassObject
_CoGetCurrentProcess
_CoGetFragVersion
_CoGetMalloc
_CoGetState
_CoGetTreatAsClass
_CoInitialize
_CoIsHandlerConnected
_CoIsSyncLrpcBlocked
_CoSetState
_CoTaskMemAlloc
_CoTaskMemFree
_CoTaskMemRealloc
_CoTreatAsClass
_CoUninitialize
_GUIDFromStringA
_GetRegQueryClassCallback
_IIDFromString
_IsEqualGUID
_ReleaseStgMedium
_SetRegQueryClassCallback
_StringFromCLSID
_StringFromCLSIDA
_StringFromGUID2
_CLSIDFromString
_StringFromGUID2A
_CoLoadLibrary
_CoLoadLibraryA
_CoFreeLibrary
_CoFreeAllLibraries
_CoFreeUnusedLibraries
_CoWideCharToMultiByte
_CoMultiByteToWideChar
_CoSetTaskNewPtr
_CoCreateStandardMalloc
_RegGetFileLocationFromReg
_RegSetFileLocationToReg
_RegFlush
_RegCloseKey
_RegDeleteKey
_RegOpenKey
_RegQueryValue
_RegSetValue
_RegCreateKey
_RegQueryValueEx
_RegSetValueEx
_RegDeleteValue
_RegEnumKey
_RegEnumProgID
_RegEnumValue
_RegInitialize
_RegSetRegName
_CLSIDFromProgID
_CoMarshalHresult
_CoIsOle1Class
_CoUnmarshalHresult
_ProgIDFromCLSID
_CoRegisterClassObject
_CoRevokeClassObject
_CoCreateGuid
_CoDisconnectObject
_CoLockObjectExternal
_CoReleaseMarshalData
_CoGetStandardMarshal
_CoMarshalInterface
_CoUnmarshalInterface
_CoRegisterMessageFilter
_OleProcessLrpcAE
_CreateILockBytesOnHGlobal
_GetHGlobalFromILockBytes
_GetHGlobalFromStream
_CreateStreamOnHGlobal
_DoDragDrop
_DoDragDropMac
_DoDragDropMacEx
_RegisterDragDrop
_RevokeDragDrop
_WriteClassStm
_OleAnsiToWide
_OleWideToAnsi
_ReadClassStg
_ReadClassStm
_ReadFmtUserTypeStg
_WriteClassStg
_WriteFmtUserTypeStg
_OleQueryLinkFromData
_OleUninitialize
_OleInitialize
_CreateGenericComposite
_MonikerCommonPrefixWith
_MonikerRelativePathTo
_GetClassFileObj
_GetClassFile
_CreatePointerMoniker
_CreateAntiMoniker
_CreateFileMonikerFileObj
_CreateItemMoniker
_BindMoniker
_CreateBindCtx
_CreateFileMoniker
_MkParseDisplayNameMac
_MkParseDisplayName
_MkGetMacNetInfo
_MkGetFileMonWinPath
_OleLoadFromStream
_OleSaveToStream
_RegisterActiveObject
_GetActiveObject
_RevokeActiveObject
_GetRunningObjectTable
_OleMakeFSSpec
_OleFullPathFromFSSpec
_OleGetFileObjInfo
_OleGetFSSpecInfo
_OleFullPathFromFSSpecA
_OLEInitDBCSCountry
_SetDocumentBitStg
_GetConvertStg
_GetDocumentBitStg
_OleDraw
_OleDuplicateData
_OleIsRunning
_OleLockRunning
_OleNoteObjectVisible
_OleRun
_OleSave
_OleSetContainedObject
_ReadOle1FmtProgIDStgMac
_SetConvertStg
_WriteOle1FmtProgIDStgMac
_OleSetClipboardLate
_OleFlushClipboard
_OleGetClipboard
_OleIsCurrentClipboard
_OleProcessClipboardAE
_OleSetClipboard
_OleSetClipboardEx
_OleSetClipboardEx2
_OleCreateCustomScrapDataObject
_OleCreate
_OleLoad
_OleQueryCreateAll
_OleQueryCreateFromData
_OleDoAutoConvert
_OleCreateFromData
_OleCreateFromFile
_OleCreateFromFileObj
_OleCreateLink
_OleCreateLinkToFile
_OleCreateLinkFromData
_OleCreateStaticFromData
_OleCreateLinkToFileObj
_OleUnpatchGetMHandle
_OleAddMBarMenu
_OleClipWindow
_OleClipWindows
_OleDisposeMBar
_OleDragObjectWindow
_OleDragParentWindow
_OleGetCursor
_OleGrowObjectWindow
_OleGrowParentWindow
_OleHashMenuID
_OleInsertMenus
_OleInsertMenusEx
_OleMaskMouse
_OleMoveWindow
_OleNewMBar
_OlePatchGetMHandle
_OleSendLLE
_OleSendLowLevelEvent
_OleSetCursor
_OleSetInFrontOf
_OleSetInPlaceRects
_OleSetInPlaceWindow
_OleSetParentRgns
_OleSizeObjectWindow
_OleSizeParentWindow
_OleTranslateAccelerator
_OleUnSetInPlaceWindow
_OleUnclipWindow
_OleUnhashMenuID
_OleUpdateCursor
_OleWhichGrowHandle
_OleZoomParentWindow
_OleBuildVersion
_OleCreateDefaultHandler
_OleCreateEmbeddingHelper
_OleUIPictIconDraw
_OleUIPictExtractLabel
_OleUIPictExtractIconSource
_OleUIPictExtractIcon
_OleUIPictIconFree
_OleGetIconOfFileObj
_OleGetIconFromIconRef
_OlePictFromIconAndLabel
_OleGetIconOfFile
_OleGetIconOfClass
_CreateDataCache
_OleRegGetMiscStatus
_OleRegGetUserType
_OleGetAutoConvert
_OleSetAutoConvert
_OleRegEnumFormatEtc
_OleRegEnumVerbs
_OleSetCustomZeroScrap
_OleSetCustomPutScrap
_OleConvertIStorageToOLESTREAM
_OleConvertIStorageToOLESTREAMEx
_OleConvertOLESTREAMToIStorageEx
_OleConvertOLESTREAMToIStorage
_OleProcessDdeAE
_CreateDataAdviseHolder
_CreateOleAdviseHolder
_OleTermOleModule
_OleInitOleModule
_RegistryAdd
_HrSetupRegistryAdd
_RegistryDelete
_StgSetTimesFileObj
_StgOpenStorageMac
_StgIsStorageFileMac
_StgCreateDocfileFileObj
_StgGetFileObjFromIStorage
_StgOpenStorageFileObj
_StgGetFRefFromIStorage
_StgCreateDocfileMac
_StgCreateDocfileOnILockBytes
_OleMakeFSSpecA
_StgCreateDocfile
_StgSetTimesMac
_StgIsStorageFileFileObj
_StgOpenStorageOnILockBytes
_StgSetTimes
_StgOpenStorage
_StgIsStorageFile
_StgIsStorageILockBytes
_CoFileTimeNow
_FreePropVariantArray
_PropVariantCopy
_PropVariantClear
_AECoerceDesc
_AECreateAppleEvent
_AECreateDesc
_AEDisposeDesc
_AEGetAttributePtr
_AEGetDescData
_AEGetDescDataSize
_AEGetParamPtr
_AEInstallEventHandler
_AEProcessAppleEvent
_AEPutParamPtr
_AESend
_AESizeOfParam
_AddDragItemFlavor
_BackColor
_Button
_CFAbsoluteTimeGetCurrent
_CFBundleCloseBundleResourceMap
_CFBundleCopyBundleURL
_CFBundleCopyPrivateFrameworksURL
_CFBundleCreate
_CFBundleGetFunctionPointerForName
_CFBundleGetIdentifier
_CFBundleGetMainBundle
_CFBundleGetPackageInfoInDirectory
_CFBundleOpenBundleResourceMap
_CFRelease
_CFRetain
_CFStringCompare
_CFStringCreateWithBytes
_CFStringCreateWithCString
_CFStringCreateWithCharacters
_CFStringCreateWithFormat
_CFStringCreateWithSubstring
_CFStringFindWithOptions
_CFStringGetBytes
_CFStringGetCString
_CFStringGetCharacters
_CFStringGetLength
_CFStringGetSystemEncoding
_CFURLCopyFileSystemPath
_CFURLCopyPathExtension
_CFURLCreateCopyAppendingPathComponent
_CFURLCreateCopyDeletingLastPathComponent
_CFURLCreateFromFSRef
_CFURLCreateWithFileSystemPath
_CFURLGetFSRef
_CFUUIDCreate
_CFUUIDGetUUIDBytes
_CTabChanged
_CallInScrapPromises
_CharExtra
_CharacterByteType
_ClearCurrentScrap
_ClipRect
_ClosePicture
_ClosePoly
_CloseResFile
_CloseRgn
_ConvertEventRefToEventRecord
_CopyBits
_CopyRgn
_CoreEndianInstallFlipper
_CountDragItems
_CreateNewPort
_CurResFile
_Delay
_DiffRgn
_DisposeAliasFilterUPP
_DisposeCTable
_DisposeDrag
_DisposeGWorld
_DisposeHandle
_DisposePort
_DisposeQDCommentUPP
_DisposeQDPutPicUPP
_DisposeRgn
_DragPostScroll
_DragPreScroll
_DragWindow
_DrawChar
_DrawPicture
_DrawString
_EmptyRect
_EmptyRgn
_EqualRgn
_EqualString
_FSClose
_FSCloseFork
_FSExchangeObjects
_FSFindFolder
_FSGetCatalogInfo
_FSGetForkPosition
_FSMakeFSRefUnicode
_FSMakeFSSpec
_FSNewAlias
_FSRead
_FSReadFork
_FSResolveAlias
_FSResolveAliasFileWithMountFlags
_FSSetForkPosition
_FSWrite
_FSWriteFork
_FSpCreate
_FSpGetFInfo
_FSpMakeFSRef
_FSpOpenDF
_FillArc
_FillOval
_FillPoly
_FillRect
_FillRoundRect
_FindFolder
_FindSpecificEventInQueue
_FindWindow
_Fix2Long
_FixDiv
_FixMul
_FixRatio
_FlushVol
_FontMetrics
_ForeColor
_FrameArc
_FrameOval
_FramePoly
_FrameRect
_FrameRoundRect
_FreeMem
_Gestalt
_Get1IndResource
_GetACP
_GetAliasSize
_GetAliasUserType
_GetApplicationTextEncoding
_GetCTSeed
_GetCTable
_GetClip
_GetCurrentEventLoop
_GetCurrentKeyModifiers
_GetCurrentProcess
_GetCurrentScrap
_GetDateTime
_GetDragAttributes
_GetDragItemBounds
_GetDragItemReferenceNumber
_GetDragModifiers
_GetDragMouse
_GetDragOrigin
_GetDropLocation
_GetEOF
_GetEventClass
_GetEventDispatcherTarget
_GetEventKind
_GetEventParameter
_GetFNum
_GetFPos
_GetFlavorData
_GetFlavorDataSize
_GetFlavorFlags
_GetFlavorType
_GetFontInfo
_GetFontName
_GetGWorld
_GetGWorldPixMap
_GetGlobalMouse
_GetHandleSize
_GetIconRef
_GetIndPattern
_GetIndString
_GetKeys
_GetMainEventQueue
_GetNextProcess
_GetNextWindow
_GetPenState
_GetPixBaseAddr
_GetPixBounds
_GetPixRowBytes
_GetPort
_GetPortBitMapForCopyBits
_GetPortBounds
_GetPortClipRegion
_GetPortPixMap
_GetProcessInformation
_GetPtrSize
_GetRegionBounds
_GetResource
_GetScrapFlavorData
_GetScrapFlavorFlags
_GetScrapFlavorInfoList
_GetScrapFlavorSize
_GetScriptVariable
_GetString
_GetUserDefaultLCID
_GetWindowList
_GetWindowPort
_GetWindowPortBounds
_GrowWindow
_HCreate
_HDelete
_HGetState
_HGetVol
_HLock
_HOpen
_HSetState
_HUnlock
_HandAndHand
_HandToHand
_HideDragHilite
_IdenticalString
_InitCursor
_InsetRgn
_InstallEventLoopTimer
_IsWindowHilited
_IsWindowVisible
_KillPicture
_KillPoly
_LSCopyItemInfoForRef
_LaunchApplication
_LineTo
_LocalToGlobal
_LockPixels
_Long2Fix
_LowercaseText
_MPYield
_MatchAlias
_McpCFStringCreateWithWz
_McpCfsFileObjCopyName
_McpCfsFileObjCopyPath
_McpDisposePtrCore
_McpFFileObjExists
_McpFFileObjIsDirectory
_McpFFileObjSameVolumeObject
_McpFGetFSRefDirt
_McpFileObjCopyCFURL
_McpFileObjCreateFile
_McpFileObjCreateFromFSRef
_McpFileObjCreateFromFSRefWz
_McpFileObjCreateFromFSSpec
_McpFileObjCreateFromVRefNumWz
_McpFileObjCreateMutable
_McpFileObjDeleteObject
_McpFileObjGetCatalogInfo
_McpFileObjGetFSRef
_McpFileObjGetFSSpec
_McpFileObjGetVolumeRefAndParentID
_McpFileObjOpenDF
_McpFileObjRelease
_McpFileObjRetain
_McpFileObjSetCatalogInfo
_McpFileObjSyncWithObject
_McpGetBundleWithIdentifierPersistent
_McpGetFileTimeFromCFAbsoluteTime
_McpGetFileTimeFromUTCDateTime
_McpGetUTCDateTimeFromFileTime
_McpInstallReceiveHandler
_McpInstallTrackingHandler
_McpMutableFileObjSetFromFSRef
_McpMutableFileObjSetFromFSSpec
_McpMutableFileObjSetFromMcpFileObj
_McpMutableFileObjSetFromVRefNumWz
_McpNewPtrClearCore
_McpNewPtrCore
_McpReleaseMemCore
_McpRemoveReceiveHandler
_McpRemoveTrackingHandler
_McpWzFromCFString
_MeasureText
_MemError
_Move
_MoveHHi
_MoveTo
_MoveWindow
_MsoCchSzLen
_MsoCchWzLen
_MsoFSharedIsInitialized
_MsoFSharedLock
_MsoFSharedUnlock
_MsoFWzEqual
_MsoMultiByteToWideChar
_MsoPvShAllocCore
_MsoReleaseSz
_MsoRgchToRgwch
_MsoSgnRgwchCompare
_MsoSgnWzCompare
_MsoShFreePv
_MsoSharedSetInitialized
_MsoSzCchAppend
_MsoSzCchCopy
_MsoSzMarkWz
_MsoSzToWzCch
_MsoWideCharToMultiByte
_MsoWzCchCopy
_MsoWzLower
_MsoWzMarkSz
_MsoWzToSzCch
_NLGetCFAllocator
_NLRegisterLastCallDeallocationProc
_NLUnregisterLastCallDeallocationProc
_NewAEEventHandlerUPP
_NewAlias
_NewAliasFilterUPP
_NewDrag
_NewDragInputUPP
_NewDragReceiveHandlerUPP
_NewDragSendDataUPP
_NewDragTrackingHandlerUPP
_NewEventComparatorUPP
_NewEventLoopTimerUPP
_NewGWorld
_NewHandle
_NewHandleClear
_NewPtrClear
_NewQDCommentUPP
_NewQDPutPicUPP
_NewRgn
_NewScrapPromiseKeeperUPP
_OffsetRect
_OffsetRgn
_OpenCPicture
_OpenPicture
_OpenPoly
_OpenRgn
_OverrideIconRefFromResource
_PBCloseSync
_PBDTGetAPPLSync
_PBDTGetPath
_PBGetCatInfoSync
_PBHGetVInfoSync
_PBHGetVolParmsSync
_PBHOpenDenySync
_PBLockRangeSync
_PBUnlockRangeSync
_PenMode
_PenPat
_PenSize
_PicComment
_PlotIconRef
_PtToAngle
_PtrToHand
_PtrToXHand
_PutScrapFlavor
_QDGetPictureBounds
_RGBBackColor
_RGBForeColor
_ReceiveNextEvent
_RecoverHandle
_RectRgn
_ReleaseEvent
_ReleaseIconRef
_ReleaseResource
_RemoveEventLoopTimer
_ResError
_SectRect
_SectRgn
_SendEventToEventTarget
_SetAliasUserType
_SetCPixel
_SetClip
_SetDragInputProc
_SetDragItemFlavorData
_SetDragSendProc
_SetEOF
_SetFPos
_SetGWorld
_SetHandleSize
_SetPenState
_SetPort
_SetPortGrafProcs
_SetPortWindowPort
_SetPt
_SetPtrSize
_SetRect
_SetRectRgn
_SetScrapPromiseKeeper
_SetStdCProcs
_ShowDragHilite
_SizeWindow
_SpaceExtra
_StackSpace
_StdComment
_StdPutPic
_StillDown
_StringWidth
_StuffHex
_TETextBox
_TextFace
_TextFont
_TextMode
_TextSize
_TickCount
_TrackDrag
_UpdateAlias
_UpdateDragHilite
_UppercaseText
_UseResFile
_WakeUpProcess
_ZoomRegion
_ZoomWindow
__DefaultRuneLocale
__ZTVN10__cxxabiv117__class_type_infoE
__ZTVN10__cxxabiv120__si_class_type_infoE
__ZTVN10__cxxabiv121__vmi_class_type_infoE
___CFConstantStringClassReference
___cxa_pure_virtual
___error
___keymgr_global
___maskrune
___tolower
___toupper
__keymgr_get_and_lock_processwide_ptr
__keymgr_set_and_unlock_processwide_ptr
_atol
_calloc
_close
_cos
_dlopen
_dlsym
_free
_fstat
_kCFAllocatorDefault
_localeconv
_lstrlenW
_malloc
_memcmp
_memcpy
_memmove
_memset
_mmap
_munmap
_nl_free_stub
_nl_malloc_stub
_open
_pi
_qsort
_realloc
_sin
_snprintf$LDBL128
_sqrt
_sscanf$LDBL128
_strchr
_strcmp
_strlen
_strncasecmp
_strncmp
_strstr
single module
radr://5614542
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment