Plugins interfaces: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
(Plugin examples)
(→‎Where to get official interface files?: updated info and links for plugin interfaces)
 
(11 intermediate revisions by one other user not shown)
Line 2: Line 2:
== Where to get official interface files? ==
== Where to get official interface files? ==


Interface files for all plugins types can be downloaded at:
C++ and Delphi interface files for all plugins types can be downloaded at:


* http://ghisler.com/plugins.htm (search for words "guide" and "interface" at that page)
* [http://ghisler.com/plugins.htm Ghisler.com], Plugins page (search for words "guide" and "interface" at that page)
* http://www.totalcmd.net/directory/developer.html
* [http://www.totalcmd.net/directory/developer.html Totalcmd.net], Developer page




== Official interfaces description ==
The concrete links, which may be outdated, are:
 
* WFX interface: [http://ghisler.fileburst.com/fsplugins/fspluginhelp2.1se_chm.zip Here (chm], [http://ghisler.fileburst.com/fsplugins/fspluginhelp2.1se.zip hlp]) or [http://www.totalcmd.net/plugring/fsplugin_guide.html Here]
* WLX interface: [http://ghisler.fileburst.com/lsplugins/listplughelp2.1_chm.zip Here (chm], [http://ghisler.fileburst.com/lsplugins/listplughelp2.1.zip hlp]) or [http://www.totalcmd.net/plugring/lsplugin_guide.html Here]
* WCX interface: [http://ghisler.fileburst.com/plugins/wcx_ref2.21se_chm.zip Here (chm], [http://ghisler.fileburst.com/plugins/wcx_ref2.21se.zip hlp]) or [http://www.totalcmd.net/plugring/packer_interface.html Here]
* WDX interface: [http://ghisler.fileburst.com/content/contentpluginhelp210se_chm.zip Here (chm)] or [http://www.totalcmd.net/plugring/wdx_writers_guide.html Here]
 
See also [https://www.ghisler.com/history.txt HISTORY.TXT] on newest changes in plugin interfaces not yet added to official guides.
 
== Official interfaces ==


Some interfaces are described in this Wiki in the following topics. Some are not - download official files for them.
Some interfaces are described in this Wiki in the following topics. Some are not - download official files for them.
Line 20: Line 29:
== Unofficial interfaces links ==
== Unofficial interfaces links ==


There are unofficial plugin interfaces, that make it possible to develop a plugin in your prefered programming language (apart from [http://en.wikipedia.org/wiki/C++ C++] and [http://en.wikipedia.org/wiki/Delphi_programming_language Delphi], which interfaces are included into official files):
There are unofficial plugin interfaces, that make it possible to develop a plugin in your prefered programming language (apart from C++ and Delphi):


* [http://www.totalcmd.net/plugring/dotnet.html .NET Framework Wrapper] for WFX
* [http://www.totalcmd.net/plugring/dotnet.html .NET Framework Wrapper] for WFX
Line 28: Line 37:
* [http://www.totalcmd.net/plugring/script_wdx.html VBScript / JavaScript Plugin Interface] for WDX
* [http://www.totalcmd.net/plugring/script_wdx.html VBScript / JavaScript Plugin Interface] for WDX
* [http://www.totalcmd.net/plugring/wlx_vbscript.html VBScript / JavaScript Plugin Interface] for WLX
* [http://www.totalcmd.net/plugring/wlx_vbscript.html VBScript / JavaScript Plugin Interface] for WLX
 
* [http://hiasm.com HiAsm]: Interfaces: [http://hiasm.com/xf/topic.php?t=8313&start=0 WLX], [http://hiasm.com/xf/topic.php?t=7243&start=0 WDX]. Examples: [http://hiasm.com/xf/topic.php?t=3902&start=0], [http://hiasm.com/xf/topic.php?t=8330&start=0], [http://hiasm.com/xf/topic.php?t=7269&start=0]. Pages are in Russian, use the auto-translator to read.
 
* [http://ghisler.ch/board/viewtopic.php?t=766 PowerBasic Interface] for WCX. Example: [http://ghisler.ch/board/viewtopic.php?t=397]
== Plugin source examples ==
* [http://www.totalcmd.net/plugring/mbox.html Euphoria Interface/Example] for WCX.
 
There are few C++ examples included into official interface files.
 
Also there are some 3-rd party plugins with open source code:
 
* [http://www.totalcmd.net/plugring/ListSimple.html Sample plugin (WLX) - with Delphi source]
* [http://www.totalcmd.net/plugring/ListSimpleBcb.html Sample plugin (WLX) - with C++Builder source]
* [http://www.totalcmd.net/plugring/OOSimpleViewer.html OpenOffice.org Simple Viewer (WLX) - with Delphi source]




----
----


Back to [[Plugins]]
Back to [[Developer's corner]]

Latest revision as of 16:48, 6 February 2020

Where to get official interface files?

C++ and Delphi interface files for all plugins types can be downloaded at:


The concrete links, which may be outdated, are:

See also HISTORY.TXT on newest changes in plugin interfaces not yet added to official guides.

Official interfaces

Some interfaces are described in this Wiki in the following topics. Some are not - download official files for them.


Unofficial interfaces links

There are unofficial plugin interfaces, that make it possible to develop a plugin in your prefered programming language (apart from C++ and Delphi):



Back to Developer's corner