search for: app_author

Displaying 6 results from an estimated 6 matches for "app_author".

2008 Oct 22
1
NEW: COM32 module to alias
.../* Allow targetting Linux, etc to test */ #include <syslinux/boot.h> /* syslinux_run_command() */ #endif /* __COM32__ */ #define ALIAS_CMD_SZ 128 // #define DO_DEBUG 1 #define APP_LONGNAME "Alias COM32" #define APP_NAME "alias" #define APP_YEAR "2008" #define APP_AUTHOR "Gene Cumm" #define APP_VER "beta-b002" int main(int argc, char *argv[]){ char cmdstr[ALIAS_CMD_SZ]; // Command string to execute int curpos; // Current position in cmdstr; Use memcpy rather than strcat int arglen; // length of current argument string int i; // Initializ...
2008 Oct 27
0
NEW: COM32 module to alias (Revised)
..._SZ COMMAND_LINE_SIZE #else #define ALIAS_CMD_SZ 2048 #endif /* COMMAND_LINE_SIZE */ #endif /* MAX_CMDLINE_LEN */ // #define DO_DEBUG 1 /* Uncomment this for additional output #define APP_LONGNAME "Alias COM32" #define APP_NAME "alias" #define APP_YEAR "2008" #define APP_AUTHOR "Gene Cumm" #define APP_VER "beta-b003" int main(int argc, char *argv[]) { char cmdstr[ALIAS_CMD_SZ]; // Command string to execute int curpos; // Current position in cmdstr; Use memcpy rather than strcat int arglen; // length of current argument string int i; // Initiali...
2009 Feb 22
2
NEW: COM32 module to run another command, optionally clearing the screen
..._CMDLINE_LEN */ #define NUM_NL 40 /* Number of lines to clear */ #ifdef DO_DEBUG # define DEBUG_PRINTF printf #else # define DEBUG_PRINTF(f, ...) ((void)0) #endif /* DO_DEBUG */ #define APP_LONGNAME "Run COM32" #define APP_NAME "run" #define APP_YEAR "2009" #define APP_AUTHOR "Gene Cumm" #define APP_VER "beta-b005" int main(int argc, char *argv[]) { char cmdstr[RUN_CMD_SZ]; /* Command string to execute */ int curpos; /* Current position in cmdstr; Use memcpy rather than strcat */ int arglen; /* length of current argument string */ int argst;...
2009 Mar 05
0
[PATCH 5/5] COM32/rosh: Improvements
...t; Comment to remove */ +/* #define DO_DEBUG2 1 +//*/ +/* Uncomment the above line for super-debugging output; Must have regular + * debugging enabled; Comment to remove. + */ #include "rosh.h" #define APP_LONGNAME "Read-Only Shell" #define APP_NAME "rosh" #define APP_AUTHOR "Gene Cumm" -#define APP_YEAR "2008" -#define APP_VER "beta-b032" +#define APP_YEAR "2009" +#define APP_VER "beta-b040" void rosh_version() { @@ -43,17 +47,6 @@ void rosh_version() APP_AUTHOR); } -void rosh_help(int type) -{ - rosh_version...
2009 Feb 15
2
COM32 module: Read-Only shell
...ing output; Comment to remove */ +// #define DO_DEBUG2 1 + /* Uncomment the above line for super-debugging output; Must have regular debugging enabled; Comment to remove */ + +#include "rosh.h" + +#define APP_LONGNAME "Read-Only Shell" +#define APP_NAME "rosh" +#define APP_AUTHOR "Gene Cumm" +#define APP_YEAR "2008" +#define APP_VER "beta-b032" + +void rosh_version() +{ + printf("%s v %s; (c) %s %s.\n", APP_LONGNAME, APP_VER, APP_YEAR, \ + APP_AUTHOR); +} + +void rosh_help(int type) +{ + rosh_version(); + switch (type) { + case 2: p...
2010 Jun 27
1
[PATCH] ROSH: Upgraded
...ut; Comment to remove */ +/*#define DO_DEBUG2 1 +//*/ +/* Uncomment the above line for super-debugging output; Must have regular + * debugging enabled; Comment to remove. + */ #include "rosh.h" #define APP_LONGNAME "Read-Only Shell" #define APP_NAME "rosh" #define APP_AUTHOR "Gene Cumm" -#define APP_YEAR "2008" -#define APP_VER "beta-b032" +#define APP_YEAR "2010" +#define APP_VER "beta-b062" void rosh_version(void) { @@ -43,37 +45,13 @@ void rosh_version(void) APP_AUTHOR); } -void rosh_help(int type) +void...