mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
isle: convert last two functions to PascalCase
This commit is contained in:
parent
f8263a3ef8
commit
3d9a96995a
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
||||||
#include "legoomni.h"
|
#include "legoomni.h"
|
||||||
|
|
||||||
// OFFSET: ISLE 0x401ca0
|
// OFFSET: ISLE 0x401ca0
|
||||||
BOOL findExistingInstance(void)
|
BOOL FindExistingInstance(void)
|
||||||
{
|
{
|
||||||
HWND hWnd = FindWindowA(WNDCLASS_NAME, WINDOW_TITLE);
|
HWND hWnd = FindWindowA(WNDCLASS_NAME, WINDOW_TITLE);
|
||||||
if (hWnd) {
|
if (hWnd) {
|
||||||
|
@ -19,7 +19,7 @@ BOOL findExistingInstance(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
// OFFSET: ISLE 0x401ce0
|
// OFFSET: ISLE 0x401ce0
|
||||||
BOOL startDirectSound(void)
|
BOOL StartDirectSound(void)
|
||||||
{
|
{
|
||||||
LPDIRECTSOUND lpDS = NULL;
|
LPDIRECTSOUND lpDS = NULL;
|
||||||
HRESULT ret = DirectSoundCreate(NULL, &lpDS, NULL);
|
HRESULT ret = DirectSoundCreate(NULL, &lpDS, NULL);
|
||||||
|
|
Loading…
Reference in a new issue