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
caf62a40
Commit
caf62a40
authored
Mar 24, 2005
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 24, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pretend there are 0 terminal server sessions and processes.
parent
3ef45c78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
5 deletions
+29
-5
wtsapi32.c
dlls/wtsapi32/wtsapi32.c
+29
-5
No files found.
dlls/wtsapi32/wtsapi32.c
View file @
caf62a40
...
...
@@ -61,7 +61,7 @@ void WINAPI WTSCloseServer(HANDLE hServer)
BOOL
WINAPI
WTSDisconnectSession
(
HANDLE
hServer
,
DWORD
SessionId
,
BOOL
bWait
)
{
FIXME
(
"Stub %p 0x%08lx %d
\n
"
,
hServer
,
SessionId
,
bWait
);
return
FALS
E
;
return
TRU
E
;
}
/************************************************************
...
...
@@ -72,7 +72,13 @@ BOOL WINAPI WTSEnumerateProcessesA(HANDLE hServer, DWORD Reserved, DWORD Version
{
FIXME
(
"Stub %p 0x%08lx 0x%08lx %p %p
\n
"
,
hServer
,
Reserved
,
Version
,
ppProcessInfo
,
pCount
);
return
FALSE
;
if
(
!
ppProcessInfo
||
!
pCount
)
return
FALSE
;
*
pCount
=
0
;
*
ppProcessInfo
=
NULL
;
return
TRUE
;
}
/************************************************************
...
...
@@ -83,7 +89,13 @@ BOOL WINAPI WTSEnumerateProcessesW(HANDLE hServer, DWORD Reserved, DWORD Version
{
FIXME
(
"Stub %p 0x%08lx 0x%08lx %p %p
\n
"
,
hServer
,
Reserved
,
Version
,
ppProcessInfo
,
pCount
);
return
FALSE
;
if
(
!
ppProcessInfo
||
!
pCount
)
return
FALSE
;
*
pCount
=
0
;
*
ppProcessInfo
=
NULL
;
return
TRUE
;
}
/************************************************************
...
...
@@ -94,7 +106,13 @@ BOOL WINAPI WTSEnumerateSessionsA(HANDLE hServer, DWORD Reserved, DWORD Version,
{
FIXME
(
"Stub %p 0x%08lx 0x%08lx %p %p
\n
"
,
hServer
,
Reserved
,
Version
,
ppSessionInfo
,
pCount
);
return
FALSE
;
if
(
!
ppSessionInfo
||
!
pCount
)
return
FALSE
;
*
pCount
=
0
;
*
ppSessionInfo
=
NULL
;
return
TRUE
;
}
/************************************************************
...
...
@@ -105,7 +123,13 @@ BOOL WINAPI WTSEnumerateSessionsW(HANDLE hServer, DWORD Reserved, DWORD Version,
{
FIXME
(
"Stub %p 0x%08lx 0x%08lx %p %p
\n
"
,
hServer
,
Reserved
,
Version
,
ppSessionInfo
,
pCount
);
return
FALSE
;
if
(
!
ppSessionInfo
||
!
pCount
)
return
FALSE
;
*
pCount
=
0
;
*
ppSessionInfo
=
NULL
;
return
TRUE
;
}
/************************************************************
...
...
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