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
30019a5b
Commit
30019a5b
authored
May 01, 2024
by
Alex Henrie
Committed by
Alexandre Julliard
May 02, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pdh: Add PdhConnectMachineA stub.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=56599
parent
0af35ccd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
pdh.spec
dlls/pdh/pdh.spec
+1
-1
pdh_main.c
dlls/pdh/pdh_main.c
+9
-0
No files found.
dlls/pdh/pdh.spec
View file @
30019a5b
...
...
@@ -18,7 +18,7 @@
@ stdcall PdhCollectQueryDataWithTime(ptr ptr)
@ stdcall PdhCollectQueryDataEx(ptr long ptr)
@ stub PdhComputeCounterStatistics
@ st
ub PdhConnectMachineA
@ st
dcall PdhConnectMachineA(str)
@ stub PdhConnectMachineW
@ stub PdhCreateSQLTablesA
@ stub PdhCreateSQLTablesW
...
...
dlls/pdh/pdh_main.c
View file @
30019a5b
...
...
@@ -1280,3 +1280,12 @@ PDH_STATUS WINAPI PdhBindInputDataSourceW(PDH_HLOG *source, const WCHAR *filenam
FIXME
(
"%p %s: stub
\n
"
,
source
,
debugstr_w
(
filenamelist
));
return
PDH_NOT_IMPLEMENTED
;
}
/***********************************************************************
* PdhConnectMachineA (PDH.@)
*/
PDH_STATUS
WINAPI
PdhConnectMachineA
(
const
char
*
name
)
{
FIXME
(
"%s: stub
\n
"
,
debugstr_a
(
name
));
return
PDH_NOT_IMPLEMENTED
;
}
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