This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
1,406 additions
and
195 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#pragma once | ||
|
||
#include <windows.h> | ||
|
||
#define DirectSoundCreate \ | ||
((HRESULT(__stdcall *)( \ | ||
LPCGUID pcGuidDevice, LPDIRECTSOUND * ppDS, \ | ||
LPUNKNOWN pUnkOuter))0x00458CEE) | ||
#define DirectSoundEnumerateA \ | ||
((HRESULT(__stdcall *)( \ | ||
LPDSENUMCALLBACKA pDSEnumCallback, LPVOID pContext))0x00458CE8) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#include "lib/winmm.h" | ||
|
||
MMRESULT(__stdcall *g_MM_auxGetDevCapsA) | ||
(UINT_PTR uDeviceID, LPAUXCAPSA pac, UINT cbac); | ||
UINT(__stdcall *g_MM_auxGetNumDevs)(void) = NULL; | ||
MMRESULT(__stdcall *g_MM_auxSetVolume)(UINT uDeviceID, DWORD dwVolume) = NULL; | ||
MCIERROR(__stdcall *g_MM_mciSendCommandA) | ||
(MCIDEVICEID mciId, UINT uMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2) = NULL; | ||
MCIERROR(__stdcall *g_MM_mciSendStringA) | ||
(LPCSTR lpszCommand, LPSTR lpszReturnString, UINT cchReturn, | ||
HANDLE hwndCallback) = NULL; |
Oops, something went wrong.