Add a few include guards to private headers

This commit is contained in:
Anonymous Maarten
2025-08-01 02:00:08 +02:00
parent 06cafa3040
commit 7b501ae71f
5 changed files with 25 additions and 0 deletions

View File

@@ -12,6 +12,9 @@
/* Gamepad image */
#ifndef gamepadutils_h_
#define gamepadutils_h_
typedef struct GamepadImage GamepadImage;
typedef enum
@@ -210,3 +213,5 @@ extern bool MappingHasBinding(const char *mapping, const char *binding);
/* Clear any previous binding */
extern char *ClearMappingBinding(char *mapping, const char *binding);
#endif /* gamepadutils_h_ */