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
43a97835
Commit
43a97835
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 BluetoothFindNextDevice stub.
Signed-off-by:
Esdras Tarsis
<
esdrastarsis@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4ffaf901
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
bthprops.cpl.spec
dlls/bthprops.cpl/bthprops.cpl.spec
+1
-1
main.c
dlls/bthprops.cpl/main.c
+10
-0
irprops.cpl.spec
dlls/irprops.cpl/irprops.cpl.spec
+1
-1
No files found.
dlls/bthprops.cpl/bthprops.cpl.spec
View file @
43a97835
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
@ stub BluetoothFindFirstServiceEx
@ stub BluetoothFindFirstServiceEx
@ stub BluetoothFindNextBrowseGroup
@ stub BluetoothFindNextBrowseGroup
@ stub BluetoothFindNextClassId
@ stub BluetoothFindNextClassId
@ st
ub BluetoothFindNextDevice
@ st
dcall BluetoothFindNextDevice(ptr ptr)
@ stub BluetoothFindNextProfileDescriptor
@ stub BluetoothFindNextProfileDescriptor
@ stub BluetoothFindNextProtocolDescriptorStack
@ stub BluetoothFindNextProtocolDescriptorStack
@ stub BluetoothFindNextProtocolEntry
@ stub BluetoothFindNextProtocolEntry
...
...
dlls/bthprops.cpl/main.c
View file @
43a97835
...
@@ -89,3 +89,13 @@ DWORD WINAPI BluetoothGetRadioInfo(HANDLE radio, PBLUETOOTH_RADIO_INFO info)
...
@@ -89,3 +89,13 @@ DWORD WINAPI BluetoothGetRadioInfo(HANDLE radio, PBLUETOOTH_RADIO_INFO info)
FIXME
(
"(%p, %p): stub!
\n
"
,
radio
,
info
);
FIXME
(
"(%p, %p): stub!
\n
"
,
radio
,
info
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
}
/*********************************************************************
* BluetoothFindNextDevice
*/
BOOL
WINAPI
BluetoothFindNextDevice
(
HBLUETOOTH_DEVICE_FIND
find
,
BLUETOOTH_DEVICE_INFO
*
info
)
{
FIXME
(
"(%p, %p): stub!
\n
"
,
find
,
info
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
dlls/irprops.cpl/irprops.cpl.spec
View file @
43a97835
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
@ stub BluetoothFindFirstService
@ stub BluetoothFindFirstService
@ stub BluetoothFindNextBrowseGroup
@ stub BluetoothFindNextBrowseGroup
@ stub BluetoothFindNextClassId
@ stub BluetoothFindNextClassId
@ st
ub
BluetoothFindNextDevice
@ st
dcall BluetoothFindNextDevice(ptr ptr) bthprops.cpl.
BluetoothFindNextDevice
@ stub BluetoothFindNextProfileDescriptor
@ stub BluetoothFindNextProfileDescriptor
@ stub BluetoothFindNextProtocolDescriptorStack
@ stub BluetoothFindNextProtocolDescriptorStack
@ stub BluetoothFindNextProtocolEntry
@ stub BluetoothFindNextProtocolEntry
...
...
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