diff options
-rw-r--r-- | src/common.h | 4 | ||||
-rw-r--r-- | src/tar.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/common.h b/src/common.h index 1d4c70b..fdd5ac2 100644 --- a/src/common.h +++ b/src/common.h @@ -14,12 +14,12 @@ #define INSTALLER_API "https://lutris.net/api/installers/" #ifndef NAME -#warning "no name specified, setting it to polecat" +#warning "no name specified, setting it to \"polecat\"" #define NAME "polecat" #endif #ifndef VERSION -#warning "no version specified, setting it to 0.0.0" +#warning "no version specified, setting it to \"0.0.0\"" #define VERSION "0.0.0" #endif @@ -1,6 +1,8 @@ #ifndef TAR_H #define TAR_H +#include "common.h" + void extract(const struct MemoryStruct* tar, const char* outputdir); #endif
\ No newline at end of file |