Carbon


ListNotificationProcPtr

Header: Lists.h Carbon status: Supported

typedef void(* ListNotificationProcPtr) (
    ListHandle theList, 
    ListNotification notification, 
    SInt32 param
);

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

void MyListNotificationCallback (
    ListHandle theList, 
    ListNotification notification, 
    SInt32 param
);

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