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
12da91b8
Commit
12da91b8
authored
Nov 22, 2009
by
Austin English
Committed by
Alexandre Julliard
Nov 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pdh: Add stubs for PdhExpandWildCardPathA/W.
parent
0b7903c4
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 @
12da91b8
...
@@ -38,10 +38,10 @@
...
@@ -38,10 +38,10 @@
@ stub PdhEnumObjectsW
@ stub PdhEnumObjectsW
@ stub PdhExpandCounterPathA
@ stub PdhExpandCounterPathA
@ stub PdhExpandCounterPathW
@ stub PdhExpandCounterPathW
@ st
ub PdhExpandWildCardPathA
@ st
dcall PdhExpandWildCardPathA(str str ptr ptr long)
@ stub PdhExpandWildCardPathHA
@ stub PdhExpandWildCardPathHA
@ stub PdhExpandWildCardPathHW
@ stub PdhExpandWildCardPathHW
@ st
ub PdhExpandWildCardPathW
@ st
dcall PdhExpandWildCardPathW(wstr wstr ptr ptr long)
@ stub PdhFormatFromRawValue
@ stub PdhFormatFromRawValue
@ stdcall PdhGetCounterInfoA(ptr long ptr ptr)
@ stdcall PdhGetCounterInfoA(ptr long ptr ptr)
@ stdcall PdhGetCounterInfoW(ptr long ptr ptr)
@ stdcall PdhGetCounterInfoW(ptr long ptr ptr)
...
...
dlls/pdh/pdh_main.c
View file @
12da91b8
...
@@ -600,6 +600,24 @@ PDH_STATUS WINAPI PdhCollectQueryDataWithTime( PDH_HQUERY handle, LONGLONG *time
...
@@ -600,6 +600,24 @@ PDH_STATUS WINAPI PdhCollectQueryDataWithTime( PDH_HQUERY handle, LONGLONG *time
}
}
/***********************************************************************
/***********************************************************************
* PdhExpandWildCardPathA (PDH.@)
*/
PDH_STATUS
WINAPI
PdhExpandWildCardPathA
(
LPCSTR
szDataSource
,
LPCSTR
szWildCardPath
,
LPSTR
mszExpandedPathList
,
LPDWORD
pcchPathListLength
,
DWORD
dwFlags
)
{
FIXME
(
"%s, %s, %p, %p, 0x%x: stub
\n
"
,
debugstr_a
(
szDataSource
),
debugstr_a
(
szWildCardPath
),
mszExpandedPathList
,
pcchPathListLength
,
dwFlags
);
return
PDH_NOT_IMPLEMENTED
;
}
/***********************************************************************
* PdhExpandWildCardPathW (PDH.@)
*/
PDH_STATUS
WINAPI
PdhExpandWildCardPathW
(
LPCWSTR
szDataSource
,
LPCWSTR
szWildCardPath
,
LPWSTR
mszExpandedPathList
,
LPDWORD
pcchPathListLength
,
DWORD
dwFlags
)
{
FIXME
(
"%s, %s, %p, %p, 0x%x: stub
\n
"
,
debugstr_w
(
szDataSource
),
debugstr_w
(
szWildCardPath
),
mszExpandedPathList
,
pcchPathListLength
,
dwFlags
);
return
PDH_NOT_IMPLEMENTED
;
}
/***********************************************************************
* PdhGetCounterInfoA (PDH.@)
* PdhGetCounterInfoA (PDH.@)
*/
*/
PDH_STATUS
WINAPI
PdhGetCounterInfoA
(
PDH_HCOUNTER
handle
,
BOOLEAN
text
,
LPDWORD
size
,
PPDH_COUNTER_INFO_A
info
)
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