diff options
author | Autechre | 2020-08-04 17:40:56 +0200 |
---|---|---|
committer | GitHub | 2020-08-04 17:40:56 +0200 |
commit | edfb913768c9ebd50a0ba810697e2ab7056bcc3e (patch) | |
tree | 7a12bf7b69f7f47fa3fed0d625530a3250d81be7 /plugins/dfsound/dma.h | |
parent | 31afa58d0576516307bb1f634bd23595d676f2f3 (diff) | |
parent | 908e426cc1ef2187357ed8fb59edd99b8a8060c9 (diff) | |
download | pcsx_rearmed-edfb913768c9ebd50a0ba810697e2ab7056bcc3e.tar.gz pcsx_rearmed-edfb913768c9ebd50a0ba810697e2ab7056bcc3e.tar.bz2 pcsx_rearmed-edfb913768c9ebd50a0ba810697e2ab7056bcc3e.zip |
Merge pull request #443 from negativeExponent/add-header-guards
Add header guards
Diffstat (limited to 'plugins/dfsound/dma.h')
-rw-r--r-- | plugins/dfsound/dma.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/dfsound/dma.h b/plugins/dfsound/dma.h index 440536f..4982432 100644 --- a/plugins/dfsound/dma.h +++ b/plugins/dfsound/dma.h @@ -24,8 +24,12 @@ //
//*************************************************************************//
+#ifndef __P_DMA_H__
+#define __P_DMA_H__
unsigned short CALLBACK SPUreadDMA(void);
void CALLBACK SPUreadDMAMem(unsigned short * pusPSXMem,int iSize);
void CALLBACK SPUwriteDMA(unsigned short val);
void CALLBACK SPUwriteDMAMem(unsigned short * pusPSXMem,int iSize);
+
+#endif /* __P_DMA_H__ */
|