Add header guards

This commit is contained in:
twinaphex
2014-03-30 22:50:28 +02:00
parent 73bf72aa6c
commit d4a3125c44
36 changed files with 152 additions and 8 deletions

View File

@@ -1,3 +1,6 @@
#ifndef _FCEU_INPUT_H
#define _FCEU_INPUT_H
typedef struct {
uint8 FP_FASTAPASS(1) (*Read)(int w);
void FP_FASTAPASS(1) (*Write)(uint8 v);
@@ -24,3 +27,4 @@ extern void (*InputScanlineHook)(uint8 *bg, uint8 *spr, uint32 linets, int final
void FCEU_DoSimpleCommand(int cmd);
#endif