Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e8696ca0
Commit
e8696ca0
authored
Jun 01, 2009
by
Louis Lenders
Committed by
Alexandre Julliard
Jun 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stub for NtSecureConnectPort.
parent
89ec1f18
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
nt.c
dlls/ntdll/nt.c
+22
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-2
No files found.
dlls/ntdll/nt.c
View file @
e8696ca0
...
...
@@ -626,6 +626,28 @@ NTSTATUS WINAPI NtConnectPort(
}
/******************************************************************************
* NtSecureConnectPort (NTDLL.@)
* ZwSecureConnectPort (NTDLL.@)
*/
NTSTATUS
WINAPI
NtSecureConnectPort
(
PHANDLE
PortHandle
,
PUNICODE_STRING
PortName
,
PSECURITY_QUALITY_OF_SERVICE
SecurityQos
,
PLPC_SECTION_WRITE
WriteSection
,
PSID
pSid
,
PLPC_SECTION_READ
ReadSection
,
PULONG
MaximumMessageLength
,
PVOID
ConnectInfo
,
PULONG
pConnectInfoLength
)
{
FIXME
(
"(%p,%s,%p,%p,%p,%p,%p,%p,%p),stub!
\n
"
,
PortHandle
,
debugstr_w
(
PortName
->
Buffer
),
SecurityQos
,
WriteSection
,
pSid
,
ReadSection
,
MaximumMessageLength
,
ConnectInfo
,
pConnectInfoLength
);
return
STATUS_NOT_IMPLEMENTED
;
}
/******************************************************************************
* NtListenPort [NTDLL.@]
* ZwListenPort [NTDLL.@]
*/
...
...
dlls/ntdll/ntdll.spec
View file @
e8696ca0
...
...
@@ -305,7 +305,7 @@
@ stdcall NtSaveKey(long long)
# @ stub NtSaveKeyEx
# @ stub NtSaveMergedKeys
@ st
ub NtSecureConnectPort
@ st
dcall NtSecureConnectPort(ptr ptr ptr ptr ptr ptr ptr ptr ptr)
# @ stub NtSetBootEntryOrder
# @ stub NtSetBootOptions
@ stdcall NtSetContextThread(long ptr)
...
...
@@ -1152,7 +1152,7 @@
@ stdcall ZwSaveKey(long long) NtSaveKey
# @ stub ZwSaveKeyEx
# @ stub ZwSaveMergedKeys
# @ stub Zw
SecureConnectPort
@ stdcall ZwSecureConnectPort(ptr ptr ptr ptr ptr ptr ptr ptr ptr) Nt
SecureConnectPort
# @ stub ZwSetBootEntryOrder
# @ stub ZwSetBootOptions
@ stdcall ZwSetContextThread(long ptr) NtSetContextThread
...
...
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