The FsEventsError enum is used to define specific return values for the Event API function calls.

 

Syntax
enum FsEventsError : unsigned int
{
    FS_EVENTS_ERROR_NONE             = 0,
    FS_EVENTS_ERROR_FAIL             = 0xffffffff,
    FS_EVENTS_ERROR_BAD_DATA         = 0x00000002,
    FS_EVENTS_ERROR_NOT_SUPPORTED    = 0x00000003,
    FS_EVENTS_ERROR_INVALID_ARGS     = 0x00000004,
    FS_EVENTS_ERROR_ALREADY_REGISTER = 0x00000005,
    FS_EVENTS_ERROR_NOT_REGISTER     = 0x00000006,
};

 

Members
Enum MemberDescription
FS_EVENTS_ERROR_NONENo error has been reported.
FS_EVENTS_ERROR_FAILThe call failed for an unspecified reason.
FS_EVENTS_ERROR_BAD_DATAThe call failed due to bad data.
FS_EVENTS_ERROR_NOT_SUPPORTEDSomething about the call is unsupported.
FS_EVENTS_ERROR_INVALID_ARGSThe call has invalid arguments.
FS_EVENTS_ERROR_ALREADY_REGISTERThe call is for an event that has already been registered.
FS_EVENTS_ERROR_NOT_REGISTERThe call is for an event that has not been registered.

 

Remarks

N/A