diff options
author | Ash Wolf <ninji@wuffs.org> | 2022-10-25 20:30:28 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2022-10-25 20:30:28 +0100 |
commit | d0b9848c54e6f85ab713f059dcd1ddef7e57caa6 (patch) | |
tree | 5bdb9dbf6c853780bc444dc92bf6f9fa3a95742a /includes/cw_common.h | |
parent | 685f22a6a0a5403c76316a2390c021a7b0f7597d (diff) | |
download | MWCC-d0b9848c54e6f85ab713f059dcd1ddef7e57caa6.tar.gz MWCC-d0b9848c54e6f85ab713f059dcd1ddef7e57caa6.zip |
a bunch of compiler stuff
Diffstat (limited to '')
-rw-r--r-- | includes/cw_common.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/includes/cw_common.h b/includes/cw_common.h index bea498a..eb016f1 100644 --- a/includes/cw_common.h +++ b/includes/cw_common.h @@ -1,4 +1,5 @@ -#pragma once +#ifndef ROOT_CW_COMMON_H +#define ROOT_CW_COMMON_H /* * Things that seem to be shared across different CodeWarrior modules @@ -41,3 +42,5 @@ typedef struct ParserPluginCallbacks { CWPLUGIN_ENTRY (*SupportsPlugin)(const CLPluginInfo *pluginfo, OSType cpu, OSType os, Boolean *isSupported); CWPLUGIN_ENTRY (*SupportsPanels)(int numPanels, const char **panelNames, Boolean *isSupported); } ParserPluginCallbacks; + +#endif |