[CRYPT32]

* Move cryptres.h inclusion to the main header.
CORE-7716

svn path=/trunk/; revision=61748
This commit is contained in:
Amine Khaldi 2014-01-21 18:01:34 +00:00
parent dcf4622237
commit 3ab8f89804
4 changed files with 5 additions and 6 deletions

View file

@ -19,7 +19,7 @@
#ifndef __CRYPT32_PRIVATE_H__
#define __CRYPT32_PRIVATE_H__
#include <config.h>
#include <wine/config.h>
#include <wine/port.h>
#include <assert.h>
@ -48,6 +48,8 @@
#include <wine/exception.h>
#include <wine/debug.h>
#include "cryptres.h"
/* a few asn.1 tags we need */
#define ASN_BOOL (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x01)
#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)
#endif
#endif /* __CRYPT32_PRIVATE_H__ */

View file

@ -15,6 +15,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __WINE_CRYPTRES_H__
#define __WINE_CRYPTRES_H__

View file

@ -22,8 +22,6 @@
#include <wintrust.h>
#include "cryptres.h"
WINE_DEFAULT_DEBUG_CHANNEL(crypt);
static BOOL CRYPT_ReadBlobFromFile(LPCWSTR fileName, PCERT_BLOB blob)

View file

@ -19,8 +19,6 @@
#include "crypt32_private.h"
#include "cryptres.h"
WINE_DEFAULT_DEBUG_CHANNEL(crypt);
static const WCHAR DllW[] = { 'D','l','l',0 };