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
15d3c513
Commit
15d3c513
authored
Jan 27, 2014
by
Austin English
Committed by
Alexandre Julliard
Jan 29, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wtsapi32: Quiet a couple of noisy FIXME's.
parent
55307816
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
wtsapi32.c
dlls/wtsapi32/wtsapi32.c
+6
-2
No files found.
dlls/wtsapi32/wtsapi32.c
View file @
15d3c513
...
...
@@ -120,7 +120,9 @@ BOOL WINAPI WTSEnumerateServersW(LPWSTR pDomainName, DWORD Reserved, DWORD Versi
BOOL
WINAPI
WTSEnumerateSessionsA
(
HANDLE
hServer
,
DWORD
Reserved
,
DWORD
Version
,
PWTS_SESSION_INFOA
*
ppSessionInfo
,
DWORD
*
pCount
)
{
FIXME
(
"Stub %p 0x%08x 0x%08x %p %p
\n
"
,
hServer
,
Reserved
,
Version
,
static
int
once
;
if
(
!
once
++
)
FIXME
(
"Stub %p 0x%08x 0x%08x %p %p
\n
"
,
hServer
,
Reserved
,
Version
,
ppSessionInfo
,
pCount
);
if
(
!
ppSessionInfo
||
!
pCount
)
return
FALSE
;
...
...
@@ -153,7 +155,9 @@ BOOL WINAPI WTSEnumerateSessionsW(HANDLE hServer, DWORD Reserved, DWORD Version,
*/
void
WINAPI
WTSFreeMemory
(
PVOID
pMemory
)
{
FIXME
(
"Stub %p
\n
"
,
pMemory
);
static
int
once
;
if
(
!
once
++
)
FIXME
(
"Stub %p
\n
"
,
pMemory
);
}
/************************************************************
...
...
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