diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-10-04 16:30:10 +0200 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-10-04 16:30:10 +0200 |
| commit | 7baf84f22bcf68f0c4a14a5ff404119aafe2666a (patch) | |
| tree | 260be56a2da98ab48a2cc6d7ddbb36b4adbe3074 /common/vfs_types.h | |
| parent | 88ce42250dc9cd1b69eb734b88226a5bd408c4d5 (diff) | |
| download | tuxcmd-modules-7baf84f22bcf68f0c4a14a5ff404119aafe2666a.tar.xz | |
Consolidate VFS memory managementv0.6.66
Diffstat (limited to 'common/vfs_types.h')
| -rw-r--r-- | common/vfs_types.h | 10 |
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) }; |
