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
f823b6ab
Commit
f823b6ab
authored
Jun 04, 2014
by
Guillaume Charifi
Committed by
Alexandre Julliard
Jun 12, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pdh: Implement PdhExpandCounterPathA/W.
parent
216b2452
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
pdh.spec
dlls/pdh/pdh.spec
+2
-2
pdh_main.c
dlls/pdh/pdh_main.c
+18
-0
No files found.
dlls/pdh/pdh.spec
View file @
f823b6ab
...
...
@@ -36,8 +36,8 @@
@ stub PdhEnumObjectsHA
@ stub PdhEnumObjectsHW
@ stub PdhEnumObjectsW
@ st
ub PdhExpandCounterPathA
@ st
ub PdhExpandCounterPathW
@ st
dcall PdhExpandCounterPathA(str ptr ptr)
@ st
dcall PdhExpandCounterPathW(wstr ptr ptr)
@ stdcall PdhExpandWildCardPathA(str str ptr ptr long)
@ stub PdhExpandWildCardPathHA
@ stub PdhExpandWildCardPathHW
...
...
dlls/pdh/pdh_main.c
View file @
f823b6ab
...
...
@@ -636,6 +636,24 @@ PDH_STATUS WINAPI PdhExpandWildCardPathW( LPCWSTR szDataSource, LPCWSTR szWildCa
}
/***********************************************************************
* PdhExpandCounterPathA (PDH.@)
*/
PDH_STATUS
WINAPI
PdhExpandCounterPathA
(
LPCSTR
szWildCardPath
,
LPSTR
mszExpandedPathList
,
LPDWORD
pcchPathListLength
)
{
FIXME
(
"%s, %p, %p: stub
\n
"
,
debugstr_a
(
szWildCardPath
),
mszExpandedPathList
,
pcchPathListLength
);
return
PdhExpandWildCardPathA
(
NULL
,
szWildCardPath
,
mszExpandedPathList
,
pcchPathListLength
,
0
);
}
/***********************************************************************
* PdhExpandCounterPathW (PDH.@)
*/
PDH_STATUS
WINAPI
PdhExpandCounterPathW
(
LPCWSTR
szWildCardPath
,
LPWSTR
mszExpandedPathList
,
LPDWORD
pcchPathListLength
)
{
FIXME
(
"%s, %p, %p: stub
\n
"
,
debugstr_w
(
szWildCardPath
),
mszExpandedPathList
,
pcchPathListLength
);
return
PdhExpandWildCardPathW
(
NULL
,
szWildCardPath
,
mszExpandedPathList
,
pcchPathListLength
,
0
);
}
/***********************************************************************
* PdhGetCounterInfoA (PDH.@)
*/
PDH_STATUS
WINAPI
PdhGetCounterInfoA
(
PDH_HCOUNTER
handle
,
BOOLEAN
text
,
LPDWORD
size
,
PPDH_COUNTER_INFO_A
info
)
...
...
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