diff options
Diffstat (limited to 'src/m_argv.h')
-rw-r--r-- | src/m_argv.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/m_argv.h b/src/m_argv.h index f5b26f94..2fb76a2a 100644 --- a/src/m_argv.h +++ b/src/m_argv.h @@ -28,6 +28,8 @@ #ifndef __M_ARGV__ #define __M_ARGV__ +#include "doomtype.h" + // // MISC // @@ -44,4 +46,12 @@ int M_CheckParmWithArgs(char *check, int num_args); void M_FindResponseFile(void); +// Parameter has been specified? + +boolean M_ParmExists(char *check); + +// Get name of executable used to run this program: + +char *M_GetExecutableName(void); + #endif |