Difference between revisions of "Plugin structure of C::B"

From Code::Blocks
(new content about the plugin structure)
(No difference)

Revision as of 15:09, 5 October 2015

Overview

C::B can have many plugins working together, this page will describe how they get communication with each other. Normally, the src target(codeblock.exe) is the main executable, and the sdk target(codeblocks.dll) is the main dll, and all the plguins(such as compiler.dll, codecompletion.dll) are directly communicated with the main dll. The method we used here is described as the "The sub-DLL solution" in the following links.

Links

Enhanced Dynamic Linking for MS-Windows