Changeset 588 for trunk/src/winmm/playsound.cpp
- Timestamp:
- Aug 19, 1999, 8:46:54 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/winmm/playsound.cpp
r120 r588 1 /* $Id: playsound.cpp,v 1. 3 1999-06-19 10:54:48 sandervlExp $ */1 /* $Id: playsound.cpp,v 1.4 1999-08-19 18:46:05 phaller Exp $ */ 2 2 3 3 /* … … 10 10 * 11 11 */ 12 #include <os2wrap.h> //Odin32 OS/2 api wrappers 12 13 14 /**************************************************************************** 15 * Includes * 16 ****************************************************************************/ 17 18 #include <os2wrap.h> //Odin32 OS/2 api wrappers 19 #include <odinwrap.h> 13 20 #include "win32type.h" 14 21 #include "misc.h" 15 22 23 ODINDEBUGCHANNEL(WINMM-PLAYSOUND) 24 25 16 26 /***************************************************************************** 17 * Name : BOOL WIN32API PlaySound 18 * Purpose : Plays a sound specified by the given filename, resource, or 27 * Plays a sound specified by the given filename, resource, or 19 28 * system event. 20 29 * Parameters: LPCSTR pszSound … … 28 37 * Author : Patrick Haller [Tue, 1998/05/05 10:44] 29 38 *****************************************************************************/ 30 BOOL WIN32API PlaySoundA(LPCSTR pszSound, HMODULE hmod, DWORD fdwSound ) 39 40 ODINFUNCTION3(BOOL, PlaySoundA, 41 LPCSTR, pszSound, 42 HMODULE, hmod, 43 DWORD, fdwSound) 31 44 { 32 45 dprintf(("WINMM:PlaySoundA not implemented\n")); 33 46 return(FALSE); 34 47 } 48 49 35 50 /***************************************************************************** 36 * Name : BOOL WIN32API PlaySoundW 37 * Purpose : Plays a sound specified by the given filename, resource, or 51 * Plays a sound specified by the given filename, resource, or 38 52 * system event. 39 53 * Parameters: LPCSTR pszSound … … 47 61 * Author : Patrick Haller [Tue, 1998/05/05 10:44] 48 62 *****************************************************************************/ 49 BOOL WIN32API PlaySoundW(LPCWSTR pszSound, HMODULE hmod, DWORD fdwSound ) 63 64 ODINFUNCTION3(BOOL, PlaySoundW, 65 LPCWSTR, pszSound, 66 HMODULE, hmod, 67 DWORD, fdwSound) 50 68 { 51 69 dprintf(("WINMM:PlaySoundW not implemented\n")); 52 70 return(FALSE); 53 71 } 54 /******************************************************************************/ 55 /******************************************************************************/ 56 BOOL WIN32API sndPlaySoundA(LPCSTR pszSound, UINT fuSound) 72 73 74 /***************************************************************************** 75 * Plays a sound specified by the given filename 76 * Parameters: LPCSTR pszSound 77 * UINT fuSound 78 * Variables : 79 * Result : 80 * Remark : 81 * Status : 82 * 83 * Author : Patrick Haller [Tue, 1998/05/05 10:44] 84 *****************************************************************************/ 85 86 ODINFUNCTION2(BOOL, sndPlaySoundA, 87 LPCSTR, pszSound, 88 UINT, fuSound) 57 89 { 58 90 dprintf(("WINMM:sndPlaySoundA not implemented\n")); 59 91 return(FALSE); 60 92 } 61 /******************************************************************************/ 62 /******************************************************************************/ 63 BOOL WIN32API sndPlaySoundW(LPCWSTR pszSound, UINT fuSound) 93 94 95 /***************************************************************************** 96 * Plays a sound specified by the given filename 97 * Parameters: LPCWSTR pszSound 98 * HMODULE hMod 99 * DWORD fdwSound 100 * Variables : 101 * Result : 102 * Remark : 103 * Status : 104 * 105 * Author : Patrick Haller [Tue, 1998/05/05 10:44] 106 *****************************************************************************/ 107 108 ODINFUNCTION2(BOOL, sndPlaySoundW, 109 LPCWSTR, pszSound, 110 UINT, fuSound) 64 111 { 65 112 dprintf(("WINMM:sndPlaySoundW not implemented\n")); 66 113 return(FALSE); 67 114 } 68 /******************************************************************************/ 69 /******************************************************************************/ 115
Note:
See TracChangeset
for help on using the changeset viewer.