Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4ffaf901
Commit
4ffaf901
authored
Aug 14, 2021
by
Esdras Tarsis
Committed by
Alexandre Julliard
Aug 16, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bthprops.cpl: Add BluetoothGetRadioInfo stub.
Needed for War Dust. Signed-off-by:
Esdras Tarsis
<
esdrastarsis@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c2b797cf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
bthprops.cpl.spec
dlls/bthprops.cpl/bthprops.cpl.spec
+1
-1
main.c
dlls/bthprops.cpl/main.c
+9
-0
irprops.cpl.spec
dlls/irprops.cpl/irprops.cpl.spec
+1
-1
No files found.
dlls/bthprops.cpl/bthprops.cpl.spec
View file @
4ffaf901
...
...
@@ -35,7 +35,7 @@
@ stdcall BluetoothFindRadioClose(ptr)
@ stub BluetoothFindServiceClose
@ stub BluetoothGetDeviceInfo
@ st
ub BluetoothGetRadioInfo
@ st
dcall BluetoothGetRadioInfo(ptr ptr)
@ stub BluetoothIsConnectable
@ stub BluetoothIsDiscoverable
@ stub BluetoothIsVersionAvailable
...
...
dlls/bthprops.cpl/main.c
View file @
4ffaf901
...
...
@@ -80,3 +80,12 @@ BOOL WINAPI BluetoothFindNextRadio(HBLUETOOTH_RADIO_FIND find, HANDLE *radio)
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/*********************************************************************
* BluetoothGetRadioInfo
*/
DWORD
WINAPI
BluetoothGetRadioInfo
(
HANDLE
radio
,
PBLUETOOTH_RADIO_INFO
info
)
{
FIXME
(
"(%p, %p): stub!
\n
"
,
radio
,
info
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
dlls/irprops.cpl/irprops.cpl.spec
View file @
4ffaf901
...
...
@@ -31,7 +31,7 @@
@ stdcall BluetoothFindRadioClose(ptr) bthprops.cpl.BluetoothFindRadioClose
@ stub BluetoothFindServiceClose
@ stub BluetoothGetDeviceInfo
@ st
ub
BluetoothGetRadioInfo
@ st
dcall BluetoothGetRadioInfo(ptr ptr) bthprops.cpl.
BluetoothGetRadioInfo
@ stub BluetoothIsConnectable
@ stub BluetoothIsDiscoverable
@ stub BluetoothMapClassOfDeviceToImageIndex
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment