summaryrefslogtreecommitdiff
path: root/vfs/uVFSprototypes.pas
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2009-10-04 15:00:25 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2009-10-04 15:00:25 +0200
commitcf1f8d377549c6cb5ad9475dcd5ec5f48738a8e8 (patch)
tree8fb096c1760e22f4d9d73c532727455966822636 /vfs/uVFSprototypes.pas
parent3ecc07595f41f436430291fb2299dd540c01f292 (diff)
downloadtuxcmd-cf1f8d377549c6cb5ad9475dcd5ec5f48738a8e8.tar.xz
Consolidate plugin IDs
This breaks custom-chosen plugins for saved connections (with automatic fallback to 'auto')
Diffstat (limited to 'vfs/uVFSprototypes.pas')
-rw-r--r--vfs/uVFSprototypes.pas10
1 files changed, 5 insertions, 5 deletions
diff --git a/vfs/uVFSprototypes.pas b/vfs/uVFSprototypes.pas
index 5f0106c..b454769 100644
--- a/vfs/uVFSprototypes.pas
+++ b/vfs/uVFSprototypes.pas
@@ -144,12 +144,12 @@ type
{$ENDIF}
end;
- // This structure contains basic informations about the plugin (Name is used to identify the module in the application)
+ // This structure contains basic informations about the plugin
TVFSInfo = record
- Name: PChar;
- Description: PChar;
- About: PChar;
- Copyright: PChar;
+ ID: PChar; // unique identifier, not shown in GUI
+ Name: PChar; // plugin name, GUI string (UTF-8)
+ About: PChar; // GUI string (UTF-8)
+ Copyright: PChar; // GUI string (UTF-8)
end;
type