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

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

* empty log message *

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