CFDictionaryApplierFunction

Header: CFDictionary.h Carbon status: Supported

typedef void(* CFDictionaryApplierFunction) (
    const void *key, 
    const void *val, 
    void *context
);

You would declare your function like this if you were to name it MyCallback:

void MyCallback (
    const void *key, 
    const void *val, 
    void *context
);

© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)