mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
311 B
13 lines
311 B
#ifndef _DLLLOAD_H_
|
|
#define _DLLLOAD_H_
|
|
|
|
#include <wininet.h>
|
|
#include <winineti.h>
|
|
|
|
#define SND_ASYNC 0x0001 /* play asynchronously */
|
|
#define SND_NODEFAULT 0x0002 /* silence (!default) if sound not found */
|
|
|
|
BOOL WINAPI sndPlaySoundW(LPCWSTR pszSound, UINT fuSound);
|
|
|
|
#endif // _DLLLOAD_H_
|
|
|