1.2.7.4.56 SYS_FS_REGISTRATION_TABLE Struct

C

typedef struct
{
    /* Native file system of type SYS_FS_FILE_SYSTEM_TYPE */
    SYS_FS_FILE_SYSTEM_TYPE nativeFileSystemType;

    /* Pointer to the structure of type SYS_FS_FUNCTIONS which has the list of
     * function-pointers for the native file system
    */
    const SYS_FS_FUNCTIONS *nativeFileSystemFunctions;

} SYS_FS_REGISTRATION_TABLE;

Summary

The initialization members for File system layer.

Description

When the SYS FS layer is initialized, it has to know the type of native file system it has to support and the list of functions for native file system.

The members of this structure can be initialized with suitable values and then passed on to SYS_FS_Initialize initialization function.

Please refer to the example code provided for SYS_FS_Initialize.

Remarks

None.