1.2.7.4.59 SYS_FS_EVENT_HANDLER Typedef

C

typedef void (* SYS_FS_EVENT_HANDLER)
(
    SYS_FS_EVENT event,
    void* eventData,
    uintptr_t context
);

Summary

Pointer to the File system Handler function.

Description

This data type defines the required function signature for the file system event handling callback function. A client must register a pointer to an event handling function whose function signature (parameter and return value types) match the types specified by this function pointer in order to receive event call backs from the file system.

Parameters

ParamDescription
eventIdentifies the type of event
eventDataHandle returned from the media operation requests
contextValue identifying the context of the application that registered the event handling function

Returns

None.

Remarks

None.