summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted/sndVol/playSnd.h
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-01-13 11:49:53 +0000
committerRobert Pösel <robyer@seznam.cz>2013-01-13 11:49:53 +0000
commit163b104cb2c5a09d14bf7fcacab57e6fa704b005 (patch)
tree9cbe4c99e177f16bbab130d1bf5dcbd363e8816b /plugins/!NotAdopted/sndVol/playSnd.h
parentc11ef9b9898776e57c664cd3ab60df83d599acdf (diff)
Added sndVol sources (not adopted; old addons version, does someone has newer version?)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3093 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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);
+}