File: README

package info (click to toggle)
v-sim 3.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,188 kB
  • sloc: ansic: 115,451; f90: 19,861; python: 2,120; makefile: 1,002; xml: 719; cpp: 688; sh: 23
file content (7 lines) | stat: -rw-r--r-- 684 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
In each directory, a dynamic loadable library is built (.so under most Unix and .dll on Windows). All these library must have the following functions :

- gboolean <name_of_the_library>Init();
When V_Sim is started, it scans the directory where loadable modules are stored and proposes to the user the possibility to load the plug-in, calling this method. For example, if the plug-in brings new file formats for loading, it can add its new ones using appropriated methods from V_Sim.

- const gchar* <name_of_the_library>Get_description();
This method returns a short text describing the plug-in. This text is own by the plug-in and will not be altered by C_Sim. It must be in UTF-8.