mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[CRYPT32]
* Move cryptres.h inclusion to the main header. CORE-7716 svn path=/trunk/; revision=61748
This commit is contained in:
parent
dcf4622237
commit
3ab8f89804
4 changed files with 5 additions and 6 deletions
|
@ -19,7 +19,7 @@
|
||||||
#ifndef __CRYPT32_PRIVATE_H__
|
#ifndef __CRYPT32_PRIVATE_H__
|
||||||
#define __CRYPT32_PRIVATE_H__
|
#define __CRYPT32_PRIVATE_H__
|
||||||
|
|
||||||
#include <config.h>
|
#include <wine/config.h>
|
||||||
#include <wine/port.h>
|
#include <wine/port.h>
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
@ -48,6 +48,8 @@
|
||||||
#include <wine/exception.h>
|
#include <wine/exception.h>
|
||||||
#include <wine/debug.h>
|
#include <wine/debug.h>
|
||||||
|
|
||||||
|
#include "cryptres.h"
|
||||||
|
|
||||||
/* a few asn.1 tags we need */
|
/* a few asn.1 tags we need */
|
||||||
#define ASN_BOOL (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x01)
|
#define ASN_BOOL (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x01)
|
||||||
#define ASN_BITSTRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x03)
|
#define ASN_BITSTRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x03)
|
||||||
|
@ -460,4 +462,4 @@ void ContextList_Free(struct ContextList *list) DECLSPEC_HIDDEN;
|
||||||
*/
|
*/
|
||||||
#define IS_INTOID(x) (((ULONG_PTR)(x) >> 16) == 0)
|
#define IS_INTOID(x) (((ULONG_PTR)(x) >> 16) == 0)
|
||||||
|
|
||||||
#endif
|
#endif /* __CRYPT32_PRIVATE_H__ */
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __WINE_CRYPTRES_H__
|
#ifndef __WINE_CRYPTRES_H__
|
||||||
#define __WINE_CRYPTRES_H__
|
#define __WINE_CRYPTRES_H__
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
|
|
||||||
#include <wintrust.h>
|
#include <wintrust.h>
|
||||||
|
|
||||||
#include "cryptres.h"
|
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(crypt);
|
WINE_DEFAULT_DEBUG_CHANNEL(crypt);
|
||||||
|
|
||||||
static BOOL CRYPT_ReadBlobFromFile(LPCWSTR fileName, PCERT_BLOB blob)
|
static BOOL CRYPT_ReadBlobFromFile(LPCWSTR fileName, PCERT_BLOB blob)
|
||||||
|
|
|
@ -19,8 +19,6 @@
|
||||||
|
|
||||||
#include "crypt32_private.h"
|
#include "crypt32_private.h"
|
||||||
|
|
||||||
#include "cryptres.h"
|
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(crypt);
|
WINE_DEFAULT_DEBUG_CHANNEL(crypt);
|
||||||
|
|
||||||
static const WCHAR DllW[] = { 'D','l','l',0 };
|
static const WCHAR DllW[] = { 'D','l','l',0 };
|
||||||
|
|
Loading…
Reference in a new issue