X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Modules%2FFilesystems%2FNTFS%2Fmain.c;h=f5f99c7293289fdaf674a1fc1321893526377852;hb=b1873b4cff47aae8ada8cc303ea01b475cc7ccc8;hp=5cdcc6672d9ef23822deeba55aff6228edd525da;hpb=6f1c621ed4d24ddbdc863cd5ef684e919c8f8b55;p=tpg%2Facess2.git diff --git a/Modules/Filesystems/NTFS/main.c b/Modules/Filesystems/NTFS/main.c index 5cdcc667..f5f99c72 100644 --- a/Modules/Filesystems/NTFS/main.c +++ b/Modules/Filesystems/NTFS/main.c @@ -13,11 +13,11 @@ // === IMPORTS === extern char *NTFS_ReadDir(tVFS_Node *Node, int Pos); -extern tVFS_Node *NTFS_FindDir(tVFS_Node *Node, char *Name); +extern tVFS_Node *NTFS_FindDir(tVFS_Node *Node, const char *Name); // === PROTOTYPES === int NTFS_Install(char **Arguments); -tVFS_Node *NTFS_InitDevice(char *Devices, char **Options); +tVFS_Node *NTFS_InitDevice(const char *Devices, const char **Options); void NTFS_Unmount(tVFS_Node *Node); void NTFS_DumpEntry(tNTFS_Disk *Disk, Uint32 Entry); @@ -40,7 +40,7 @@ int NTFS_Install(char **Arguments) /** * \brief Mount a NTFS volume */ -tVFS_Node *NTFS_InitDevice(char *Device, char **Options) +tVFS_Node *NTFS_InitDevice(const char *Device, const char **Options) { tNTFS_Disk *disk; tNTFS_BootSector bs;