Changeset cc7302 in git
- Timestamp:
- Aug 11, 2011, 3:21:35 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 2bc4f5a0399eb703dcb16b05ba2872985f7cafc6
- Parents:
- 320f1c493166188f02c725a08142ac1ff60c6d6b
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-11 15:21:35+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:19:16+01:00
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/fehelp.cc
r320f1c rcc7302 15 15 16 16 #include <kernel/mod2.h> 17 18 #include <omalloc/omalloc.h> 17 19 #include <omalloc/mylimits.h> 18 #include <Singular/tok.h> 19 #include <omalloc/omalloc.h> 20 20 21 #include <kernel/febase.h> 21 #include <Singular/ipid.h>22 #include <Singular/ipshell.h>23 #include <Singular/libparse.h>24 #include <Singular/feOpt.h>25 22 #include <reporter/reporter.h> 26 23 24 #include "ipid.h" 25 #include "ipshell.h" 26 #include "libparse.h" 27 #include "feOpt.h" 28 29 #include "tok.h" 27 30 #include "fehelp.h" 28 31 … … 78 81 static void heWinHelp(heEntry hentry,int); 79 82 static void heWinHtmlHelp(heEntry hentry,int); 80 #include <Singular/sing_win.h>83 #include "sing_win.h" 81 84 #endif 82 85 -
Singular/fehelp.h
r320f1c rcc7302 2 2 #define FEHELP_H 3 3 4 5 /***************************************************************** 6 * 7 * help system (fehelp.cc) 8 * 9 *****************************************************************/ 10 // if str != NULL display help for str 11 // display general help, otherwise 4 12 void feHelp(char* str = NULL); 5 const char* feHelpBrowser(char* which=NULL, int warn=-1); 13 // if browser != NULL or feOpt("browser") != NULL 14 // set HelpBrowser to browser 15 // otherwise, if browser was already set, leave as is, 16 // if not, choose first available browser 17 // return string identifying current browser 18 // keeps feOpt("browser") up-to-date 19 // Optional warn argument is as in feResource 20 const char* feHelpBrowser(char* browser = NULL, int warn = -1); 21 22 void feStringAppendBrowsers(int warn = -1); 6 23 7 24 #endif /* FEHELP_H */ -
Singular/misc_ip.cc
r320f1c rcc7302 354 354 #include "static.h" 355 355 356 #include "fehelp.h" 357 356 358 #ifdef HAVE_STATIC 357 359 #undef HAVE_DYN_RL -
kernel/old.febase.h
r320f1c rcc7302 212 212 }; 213 213 214 /*****************************************************************215 *216 * help system (fehelp.cc)217 *218 *****************************************************************/219 // if str != NULL display help for str220 // display general help, otherwise221 void feHelp(char* str = NULL);222 // if browser != NULL or feOpt("browser") != NULL223 // set HelpBrowser to browser224 // otherwise, if browser was already set, leave as is,225 // if not, choose first available browser226 // return string identifying current browser227 // keeps feOpt("browser") up-to-date228 // Optional warn argument is as in feResource229 const char* feHelpBrowser(char* browser = NULL, int warn = -1);230 void feStringAppendBrowsers(int warn = -1);231 214 232 215 /*****************************************************************
Note: See TracChangeset
for help on using the changeset viewer.