summaryrefslogtreecommitdiff
path: root/common/vfs_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/vfs_types.h')
-rw-r--r--common/vfs_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/vfs_types.h b/common/vfs_types.h
index 658c639..071b666 100644
--- a/common/vfs_types.h
+++ b/common/vfs_types.h
@@ -49,7 +49,7 @@ typedef enum {
} TVFSPasswordSave;
-typedef void (* TVFSLogFunc)(char *s);
+typedef void (* TVFSLogFunc)(const char *s);
typedef void *TVFSFileDes;
@@ -152,10 +152,10 @@ struct TVFSItem {
};
struct TVFSInfo {
- const char *ID; // unique identifier, not shown in GUI
- const char *Name; // plugin name, GUI string (UTF-8)
- const char *About; // GUI string (UTF-8)
- const char *Copyright; // GUI string (UTF-8)
+ char *ID; // unique identifier, not shown in GUI
+ char *Name; // plugin name, GUI string (UTF-8)
+ char *About; // GUI string (UTF-8)
+ char *Copyright; // GUI string (UTF-8)
};