summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted/sndVol/playSnd.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/!NotAdopted/sndVol/playSnd.h')
-rw-r--r--plugins/!NotAdopted/sndVol/playSnd.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/!NotAdopted/sndVol/playSnd.h b/plugins/!NotAdopted/sndVol/playSnd.h
new file mode 100644
index 0000000000..f9a6c3299f
--- /dev/null
+++ b/plugins/!NotAdopted/sndVol/playSnd.h
@@ -0,0 +1,24 @@
+#include <windows.h>
+#include <mmsystem.h>
+#include <basetsd.h>
+#include <dmusicc.h>
+#include <dmusici.h>
+#include <dxerr8.h>
+#include <tchar.h>
+#include "DMUtil.h"
+#include "DXUtil.h"
+
+//-----------------------------------------------------------------------------
+// Defines, constants, and global variables
+//-----------------------------------------------------------------------------
+
+namespace playSnd
+{
+ extern BOOL g_bInOption;
+
+ HRESULT Init();
+ void Destroy();
+ HRESULT LoadSegmentFile( TCHAR* strFileName );
+ BOOL WINAPI PlaySound(char* pszSound, HMODULE hmod, DWORD fdwSound);
+ BOOL SetVolume(long Value);
+}