Carbon


HMWindowContentProcPtr

Header: MacHelp.h Carbon status: Supported

typedef OSStatus(* HMWindowContentProcPtr) (
    WindowRef inWindow, 
    Point inGlobalMouse, 
    HMContentRequest inRequest, 
    HMContentProvidedType *outContentProvided, 
    HMHelpContentPtr ioHelpContent
);

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

OSStatus MyHMWindowContentCallback (
    WindowRef inWindow, 
    Point inGlobalMouse, 
    HMContentRequest inRequest, 
    HMContentProvidedType *outContentProvided, 
    HMHelpContentPtr ioHelpContent
);
inWindow
inGlobalMouse
inRequest
outContentProvided
ioHelpContent
function result

A result code.

AVAILABILITY

Supported in Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 5/4/2000)