source: titan/plugins/scriptexec/scriptexec.c @ 15388

Last change on this file since 15388 was 15388, checked in by nit, 11 years ago

[titan] update copyright

File size: 939 bytes
Line 
1/*****************************************************/
2/* this file is part of the tiTan / tiTanNIT Project */
3/* and allowed only for use with this.               */
4/*                                                   */
5/* copyright by NIT                                  */
6/*****************************************************/
7
8#include "../titan/struct.h"
9#include "../titan/debug.h"
10#include "../titan/header.h"
11#include "scriptexec.h"
12
13char pluginname[] = "Script execute";
14char plugindesc[] = "Script execute";
15char pluginpic[] = "%pluginpath%/scriptexec/plugin.png";
16
17int pluginaktiv = 0;
18
19//wird beim laden ausgefuehrt
20void init(void)
21{
22        pluginaktiv = 1;
23        debug(10, "Script execute Plugin loadet !!!");
24}
25
26//wird beim entladen ausgefuehrt
27void deinit(void)
28{
29        pluginaktiv = 0;
30        debug(10, "Script execute Plugin removed !!!");
31}
32
33//wird in der Pluginverwaltung bzw Menue ausfeguehrt
34void start(void)
35{
36        screenscriptexec();
37}
Note: See TracBrowser for help on using the repository browser.