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
8170d885
Commit
8170d885
authored
Aug 28, 2006
by
Paul Vriens
Committed by
Alexandre Julliard
Aug 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Move register related functions to a separate file.
parent
04a15af5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
75 additions
and
40 deletions
+75
-40
Makefile.in
dlls/wintrust/Makefile.in
+3
-1
register.c
dlls/wintrust/register.c
+72
-0
wintrust_main.c
dlls/wintrust/wintrust_main.c
+0
-39
No files found.
dlls/wintrust/Makefile.in
View file @
8170d885
...
...
@@ -6,7 +6,9 @@ MODULE = wintrust.dll
IMPORTLIB
=
libwintrust.
$(IMPLIBEXT)
IMPORTS
=
crypt32 kernel32
C_SRCS
=
wintrust_main.c
C_SRCS
=
\
register.c
\
wintrust_main.c
RC_SRCS
=
\
version.rc
...
...
dlls/wintrust/register.c
0 → 100644
View file @
8170d885
/*
* Register related wintrust functions
*
* Copyright 2006 Paul Vriens
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "guiddef.h"
#include "wintrust.h"
#include "softpub.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
wintrust
);
/***********************************************************************
* WintrustAddActionID (WINTRUST.@)
*/
BOOL
WINAPI
WintrustAddActionID
(
GUID
*
pgActionID
,
DWORD
fdwFlags
,
CRYPT_REGISTER_ACTIONID
*
psProvInfo
)
{
FIXME
(
"%p %lx %p
\n
"
,
pgActionID
,
fdwFlags
,
psProvInfo
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* WintrustRemoveActionID (WINTRUST.@)
*/
BOOL
WINAPI
WintrustRemoveActionID
(
GUID
*
pgActionID
)
{
FIXME
(
"(%s)
\n
"
,
debugstr_guid
(
pgActionID
));
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* DllRegisterServer (WINTRUST.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
FIXME
(
"stub
\n
"
);
return
S_OK
;
}
/***********************************************************************
* DllUnregisterServer (WINTRUST.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
FIXME
(
"stub
\n
"
);
return
S_OK
;
}
dlls/wintrust/wintrust_main.c
View file @
8170d885
...
...
@@ -188,27 +188,6 @@ CRYPT_PROVIDER_DATA * WINAPI WTHelperProvDataFromStateData(HANDLE hStateData)
}
/***********************************************************************
* WintrustAddActionID (WINTRUST.@)
*/
BOOL
WINAPI
WintrustAddActionID
(
GUID
*
pgActionID
,
DWORD
fdwFlags
,
CRYPT_REGISTER_ACTIONID
*
psProvInfo
)
{
FIXME
(
"%p %lx %p
\n
"
,
pgActionID
,
fdwFlags
,
psProvInfo
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* WintrustRemoveActionID (WINTRUST.@)
*/
BOOL
WINAPI
WintrustRemoveActionID
(
GUID
*
pgActionID
)
{
FIXME
(
"(%s)
\n
"
,
debugstr_guid
(
pgActionID
));
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* WintrustLoadFunctionPointers (WINTRUST.@)
*/
BOOL
WINAPI
WintrustLoadFunctionPointers
(
GUID
*
pgActionID
,
...
...
@@ -236,21 +215,3 @@ BOOL WINAPI WintrustSetRegPolicyFlags( DWORD dwPolicyFlags)
FIXME
(
"stub: %lx
\n
"
,
dwPolicyFlags
);
return
TRUE
;
}
/***********************************************************************
* DllRegisterServer (WINTRUST.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
FIXME
(
"stub
\n
"
);
return
S_OK
;
}
/***********************************************************************
* DllUnregisterServer (WINTRUST.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
FIXME
(
"stub
\n
"
);
return
S_OK
;
}
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