File: cesound.c

package info (click to toggle)
glhack 1.2-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 24,604 kB
  • ctags: 18,992
  • sloc: ansic: 208,570; cpp: 13,139; yacc: 2,005; makefile: 1,161; lex: 377; sh: 321; awk: 89; sed: 11
file content (27 lines) | stat: -rw-r--r-- 797 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*   SCCS Id: @(#)cesound.c   3.4     $Date: 2003/02/13 12:35:27 $                        */
/*   Copyright (c) NetHack PC Development Team 1993                 */
/*   NetHack may be freely redistributed.  See license for details. */
/*                                                                  */
/*
 * cesound.c - Windows CE NetHack sound support
 *                                                  
 *
 */

#include "hack.h"
#include <mmsystem.h>

#ifdef USER_SOUNDS

void play_usersound(filename, volume)
const char* filename;
int volume;
{
	TCHAR wbuf[MAX_PATH+1];
/*    pline("play_usersound: %s (%d).", filename, volume); */
	ZeroMemory(wbuf, sizeof(wbuf));
	(void)sndPlaySound(NH_A2W(filename, wbuf, MAX_PATH), SND_ASYNC | SND_NODEFAULT);
}

#endif /*USER_SOUNDS*/
/* cesound.c */