typedef struct _shelw
{
char *newcmd;
LONG psetlimit;
LONG prenice;
char *defdir;
char *env;
} SHELW;
Element |
Meaning |
See |
_shelw.newcmd |
Points to the filename (to search for the file with shel_find()?) or the complete file specification. |
shel_write() |
_shelw.psetlimit |
Contains the maximum memory size available to the process if bit 8 (SW_PSETLIMIT) of mode is set. |
shel_write() |
_shelw.prenice |
Contains the process priority of the process to launch if bit 9 (SW_PRENICE) of mode is set. |
shel_write() |
_shelw.defdir |
Points to a character string containing the default directory for the application begin launched if bit 10 (SW_DEFDIR) of mode is set. |
shel_write() |
_shelw.env |
Points to a valid environment string for the process if bit 11 (SW_ENVIRON) of mode is set. |
shel_write() |
See Also