Changeset 12568
- Timestamp:
- 12/24/11 00:14:14 (12 years ago)
- Location:
- titan/plugins/browser
- Files:
-
- 1 deleted
- 3 copied
Legend:
- Unmodified
- Added
- Removed
-
titan/plugins/browser/browser.c
r12372 r12568 3 3 #include "../titan/header.h" 4 4 5 char pluginname[] = " Hello";6 char plugindesc[] = " Hello World Demo";7 char pluginpic[] = "%pluginpath%/ hello/plugin.png";5 char pluginname[] = "Internet Browser"; 6 char plugindesc[] = "Internet Browser"; 7 char pluginpic[] = "%pluginpath%/browser/plugin.png"; 8 8 9 9 int pluginaktiv = 0; … … 13 13 { 14 14 pluginaktiv = 1; 15 debug(10, " HelloPlugin loadet !!!");15 debug(10, "Browser Plugin loadet !!!"); 16 16 } 17 17 … … 20 20 { 21 21 pluginaktiv = 0; 22 debug(10, " HelloPlugin removed !!!");22 debug(10, "Browser Plugin removed !!!"); 23 23 } 24 24 … … 26 26 void start(void) 27 27 { 28 textbox(_("Message"), _("Hello World !"), _("EXIT"), getrcconfigint("rcexit", NULL), '\0', 0, '\0', 0, '\0', 0, 600, 200, 0, 0); 28 char* tmpstr = NULL; 29 30 tmpstr = ostrcat("nsfb -f linux ", getconfig("browserhome", NULL), 0, 0); 31 system(tmpstr); 32 free(tmpstr); 29 33 }
Note: See TracChangeset
for help on using the changeset viewer.