CFBundleGetFunctionPointersForNamesHeader: CFBundle.h

Constructs a function table containing pointers to all of the functions found in a bundle's main executable code.

void CFBundleGetFunctionPointersForNames (
    CFBundleRef bundle, 
    CFArrayRef functionNames, 
    void *ftbl
);
bundle

A reference value of type CFBundleRef indicating the bundle whose executable code you wish to search.

functionNames

A reference value of type CFArrayRef containing a list of the function names you wish to locate.

ftbl

An untyped pointer. On return it points to a table containing an address for each located function or NULL if that function could not be found.

DISCUSSION

Calling this function will cause the bundle's code to be loaded if necessary.


© 1999 Apple Computer, Inc. — (Last Updated 9/17/99)