Hi!
Tried to look it up, but couldn't find anything of relevance...
What is the meaning of "251" that shows up in there?
251,C:\Program Files\totalcmd\plugins\wcx\wcx_bz2\bzip2dll.wcx
Some of them do not have anything extra, just the path, though...
Thanks,
AL
Number in front of a plugin path (e.g. for the "packers")?
Moderators: Hacker, petermad, Stefan2, white
Re: Number in front of a plugin path (e.g. for the "packers")?
Antwort: by *petermad » Fri Jun 11, 2010 13:01
The number is the sum of all DLL capabilities:
:::GetPackerCaps:::
1: Can create new archives
2: Can modify existing archives
4: Can handle multiple files in one archive
8: Can delete files from archive
16: Supports the options dialog
32: Supports packing in memory
64: Detects archive type by content
128: Allows searching for text in archives
256: Don't open with Enter, only with Ctrl+PgDn
512: Supports encryption
Total Commander will add the appropriate number on the first load of the DLL (wcx).
See https://www.ghisler.com/plugins.htm
> Packer extensions (plugins)
>> WCX Plugin Guide (CHM).zip
>>>> GetPackerCaps
The number is the sum of all DLL capabilities:
:::GetPackerCaps:::
1: Can create new archives
2: Can modify existing archives
4: Can handle multiple files in one archive
8: Can delete files from archive
16: Supports the options dialog
32: Supports packing in memory
64: Detects archive type by content
128: Allows searching for text in archives
256: Don't open with Enter, only with Ctrl+PgDn
512: Supports encryption
Total Commander will add the appropriate number on the first load of the DLL (wcx).
See https://www.ghisler.com/plugins.htm
> Packer extensions (plugins)
>> WCX Plugin Guide (CHM).zip
>>>> GetPackerCaps
- ghisler(Author)
- Site Admin
- Posts: 50550
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
Re: Number in front of a plugin path (e.g. for the "packers")?
251 is a sum of these fields (just substract the highest number you can without making the number negative):
128: Allows searching for text in archives
64: Detects archive type by content
32: Supports packing in memory
16: Supports the options dialog
8: Can delete files from archive
2: Can modify existing archives
1: Can create new archives
As you can see, one prominent absence is 4: Can handle multiple files in one archive.
That's because bz2 can only handle one file, so multiple files have to be packed in a container like tar.
128: Allows searching for text in archives
64: Detects archive type by content
32: Supports packing in memory
16: Supports the options dialog
8: Can delete files from archive
2: Can modify existing archives
1: Can create new archives
As you can see, one prominent absence is 4: Can handle multiple files in one archive.
That's because bz2 can only handle one file, so multiple files have to be packed in a container like tar.
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
Re: Number in front of a plugin path (e.g. for the "packers")?
2 al20878
If you want solve easy way what number means you can download WCX Tweak utility - https://totalcmd.net/plugring/wcxtweak.html.
Somewhat deprecated, but still works for 32-bit plugins.
If you want solve easy way what number means you can download WCX Tweak utility - https://totalcmd.net/plugring/wcxtweak.html.
Somewhat deprecated, but still works for 32-bit plugins.
Re: Number in front of a plugin path (e.g. for the "packers")?
2al20878
You can also edit the value via GUI in TC Plugins Manager: http://totalcmd.net/plugring/tc_plugman.html
See: https://madsenworld.dk/tcmd/tcpluginsmanagertweak.png
You can also edit the value via GUI in TC Plugins Manager: http://totalcmd.net/plugring/tc_plugman.html
See: https://madsenworld.dk/tcmd/tcpluginsmanagertweak.png
License #524 (1994)
Danish Total Commander Translator
TC 11.51 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1391a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
Danish Total Commander Translator
TC 11.51 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1391a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
Re: Number in front of a plugin path (e.g. for the "packers")?
Thanks for all the replies!