Add missing header guard

This commit is contained in:
Jeffrey Pfau 2014-01-19 03:38:18 -08:00
parent daf12994db
commit 4e98546cd6
1 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,6 @@
#ifndef GBA_SERIALIZE_H
#define GBA_SERIALIZE_H
#include "gba.h"
const uint32_t GBA_SAVESTATE_MAGIC;
@ -152,3 +155,5 @@ int GBALoadState(struct GBA* gba, int slot);
struct GBASerializedState* GBAMapState(int fd);
struct GBASerializedState* GBAAllocateState(void);
void GBADeallocateState(struct GBASerializedState* state);
#endif