Repository :
https://github.com/FarGroup/FarManager
On branch : master
Link :
https://github.com/FarGroup/FarManager/commit/01d6cef19ade7ad28bae488413fe67bcc7943fc5
>---------------------------------------------------------------
commit 01d6cef19ade7ad28bae488413fe67bcc7943fc5
Author: Vadim Yegorov <
z...@bmg.lv>
Date: Sun Sep 28 23:03:57 2025 +0300
Update headers to 6564
>---------------------------------------------------------------
01d6cef19ade7ad28bae488413fe67bcc7943fc5
plugins/common/unicode/farcolor.hpp | 2 +-
plugins/common/unicode/plugin.hpp | 7 ++++---
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/plugins/common/unicode/farcolor.hpp b/plugins/common/unicode/farcolor.hpp
index e64150875..c1bb526e9 100644
--- a/plugins/common/unicode/farcolor.hpp
+++ b/plugins/common/unicode/farcolor.hpp
@@ -5,7 +5,7 @@
/*
farcolor.hpp
-Colors Index for FAR Manager 3.0.6536.0
+Colors Index for FAR Manager 3.0.6564.0
*/
/*
Copyright © 1996 Eugene Roshal
diff --git a/plugins/common/unicode/plugin.hpp b/plugins/common/unicode/plugin.hpp
index 4e658cd13..af498b70b 100644
--- a/plugins/common/unicode/plugin.hpp
+++ b/plugins/common/unicode/plugin.hpp
@@ -6,7 +6,7 @@
/*
plugin.hpp
-Plugin API for Far Manager 3.0.6536.0
+Plugin API for Far Manager 3.0.6564.0
*/
/*
Copyright © 1996 Eugene Roshal
@@ -44,7 +44,7 @@ other possible license with no implications from the above license on them.
#define FARMANAGERVERSION_MAJOR 3
#define FARMANAGERVERSION_MINOR 0
#define FARMANAGERVERSION_REVISION 0
-#define FARMANAGERVERSION_BUILD 6536
+#define FARMANAGERVERSION_BUILD 6564
#define FARMANAGERVERSION_STAGE VS_PRIVATE
#ifndef RC_INVOKED
@@ -1385,6 +1385,7 @@ enum FARMACROVARTYPE
FMVT_MBSTRING = 11,
FMVT_NEWTABLE = 12,
FMVT_SETTABLE = 13,
+ FMVT_DIALOG = 14,
};
struct FarMacroValue
@@ -1422,8 +1423,8 @@ struct FarMacroValue
FarMacroValue(bool v) { Type=FMVT_BOOLEAN; Boolean=v; }
FarMacroValue(double v) { Type=FMVT_DOUBLE; Double=v; }
FarMacroValue(const wchar_t* v) { Type=FMVT_STRING; String=v; }
- FarMacroValue(const char* v) { Type=FMVT_MBSTRING; MBString=v; }
FarMacroValue(void* v) { Type=FMVT_POINTER; Pointer=v; }
+ FarMacroValue(const char* v) { Type=FMVT_MBSTRING; MBString=v; }
FarMacroValue(FARMACROVARTYPE tp) { Type=tp; Integer=0; }
FarMacroValue(const UUID& v) { Type=FMVT_BINARY; Binary.Data=&const_cast<UUID&>(v); Binary.Size=sizeof(UUID); }
FarMacroValue(FarMacroValue* arr,size_t count) { Type=FMVT_ARRAY; Array.Values=arr; Array.Count=count; }