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
e18965df
Commit
e18965df
authored
Jul 12, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 12, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stub implementation for GetComputerObjectName.
parent
4a96a64e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
secur32.c
dlls/secur32/secur32.c
+21
-0
secur32.spec
dlls/secur32/secur32.spec
+2
-2
No files found.
dlls/secur32/secur32.c
View file @
e18965df
...
...
@@ -25,6 +25,7 @@
#include "shlwapi.h"
#include "sspi.h"
#include "secur32_priv.h"
#include "secext.h"
#include "thunks.h"
#include "wine/debug.h"
...
...
@@ -881,6 +882,26 @@ SECURITY_STATUS WINAPI EnumerateSecurityPackagesA(PULONG pcPackages,
}
/***********************************************************************
* GetComputerObjectNameA (SECUR32.@)
*/
BOOLEAN
WINAPI
GetComputerObjectNameA
(
EXTENDED_NAME_FORMAT
NameFormat
,
LPSTR
lpNameBuffer
,
PULONG
nSize
)
{
FIXME
(
"%d %p %p
\n
"
,
NameFormat
,
lpNameBuffer
,
nSize
);
return
FALSE
;
}
/***********************************************************************
* GetComputerObjectNameW (SECUR32.@)
*/
BOOLEAN
WINAPI
GetComputerObjectNameW
(
EXTENDED_NAME_FORMAT
NameFormat
,
LPWSTR
lpNameBuffer
,
PULONG
nSize
)
{
FIXME
(
"%d %p %p
\n
"
,
NameFormat
,
lpNameBuffer
,
nSize
);
return
FALSE
;
}
/***********************************************************************
* DllMain (SECUR32.0)
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
...
...
dlls/secur32/secur32.spec
View file @
e18965df
...
...
@@ -20,8 +20,8 @@
@ stdcall ExportSecurityContext(ptr long ptr ptr)
@ stdcall FreeContextBuffer(ptr)
@ stdcall FreeCredentialsHandle(ptr)
@ st
ub GetComputerObjectNameA
@ st
ub GetComputerObjectNameW
@ st
dcall GetComputerObjectNameA(long ptr ptr)
@ st
dcall GetComputerObjectNameW(long ptr ptr)
@ stub GetSecurityUserInfo
@ stub GetUserNameExA
@ stub GetUserNameExW
...
...
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