Small fixes from latest upstream changes.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
parent
66bb1b9905
commit
12a4180fc7
5 changed files with 24 additions and 1 deletions
|
@ -36,6 +36,7 @@ add_library(appleii SHARED
|
|||
linux/windows/strings.cpp
|
||||
linux/windows/misc.cpp
|
||||
linux/windows/winbase.cpp
|
||||
linux/windows/winuser.cpp
|
||||
|
||||
linux/data.cpp
|
||||
linux/dummies.cpp
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include "SerialComms.h"
|
||||
|
||||
|
||||
CSuperSerialCard::CSuperSerialCard()
|
||||
CSuperSerialCard::CSuperSerialCard(UINT slot)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -13,3 +13,4 @@
|
|||
#include "linux/windows/strings.h"
|
||||
#include "linux/windows/gdi.h"
|
||||
#include "linux/windows/winbase.h"
|
||||
#include "linux/windows/winuser.h"
|
||||
|
|
11
source/linux/windows/winuser.cpp
Normal file
11
source/linux/windows/winuser.cpp
Normal file
|
@ -0,0 +1,11 @@
|
|||
#include "linux/windows/winuser.h"
|
||||
|
||||
HCURSOR LoadCursor(HINSTANCE hInstance, LPCSTR lpCursorName)
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
HCURSOR SetCursor(HCURSOR hCursor)
|
||||
{
|
||||
return nullptr;
|
||||
}
|
10
source/linux/windows/winuser.h
Normal file
10
source/linux/windows/winuser.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#include "linux/windows/handles.h"
|
||||
|
||||
typedef void * HCURSOR;
|
||||
|
||||
#define IDC_WAIT "IDC_WAIT"
|
||||
|
||||
HCURSOR LoadCursor(HINSTANCE hInstance, LPCSTR lpCursorName);
|
||||
HCURSOR SetCursor(HCURSOR hCursor);
|
Loading…
Add table
Reference in a new issue