source: trunk/src/winmm/playsound.cpp@ 120

Last change on this file since 120 was 120, checked in by sandervl, 26 years ago

Include os2wrap.h instead of os2.h

File size: 2.3 KB
Line 
1/* $Id: playsound.cpp,v 1.3 1999-06-19 10:54:48 sandervl Exp $ */
2
3/*
4 * Playsound stubs
5 *
6 * Copyright 1998 Joel Troster
7 *
8 *
9 * Project Odin Software License can be found in LICENSE.TXT
10 *
11 */
12#include <os2wrap.h> //Odin32 OS/2 api wrappers
13#include "win32type.h"
14#include "misc.h"
15
16/*****************************************************************************
17 * Name : BOOL WIN32API PlaySound
18 * Purpose : Plays a sound specified by the given filename, resource, or
19 * system event.
20 * Parameters: LPCSTR pszSound
21 * HMODULE hMod
22 * DWORD fdwSound
23 * Variables :
24 * Result :
25 * Remark :
26 * Status :
27 *
28 * Author : Patrick Haller [Tue, 1998/05/05 10:44]
29 *****************************************************************************/
30BOOL WIN32API PlaySoundA(LPCSTR pszSound, HMODULE hmod, DWORD fdwSound )
31{
32 dprintf(("WINMM:PlaySoundA not implemented\n"));
33 return(FALSE);
34}
35/*****************************************************************************
36 * Name : BOOL WIN32API PlaySoundW
37 * Purpose : Plays a sound specified by the given filename, resource, or
38 * system event.
39 * Parameters: LPCSTR pszSound
40 * HMODULE hMod
41 * DWORD fdwSound
42 * Variables :
43 * Result :
44 * Remark :
45 * Status :
46 *
47 * Author : Patrick Haller [Tue, 1998/05/05 10:44]
48 *****************************************************************************/
49BOOL WIN32API PlaySoundW(LPCWSTR pszSound, HMODULE hmod, DWORD fdwSound )
50{
51 dprintf(("WINMM:PlaySoundW not implemented\n"));
52 return(FALSE);
53}
54/******************************************************************************/
55/******************************************************************************/
56BOOL WIN32API sndPlaySoundA(LPCSTR pszSound, UINT fuSound)
57{
58 dprintf(("WINMM:sndPlaySoundA not implemented\n"));
59 return(FALSE);
60}
61/******************************************************************************/
62/******************************************************************************/
63BOOL WIN32API sndPlaySoundW(LPCWSTR pszSound, UINT fuSound)
64{
65 dprintf(("WINMM:sndPlaySoundW not implemented\n"));
66 return(FALSE);
67}
68/******************************************************************************/
69/******************************************************************************/
Note: See TracBrowser for help on using the repository browser.