mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 03:43:36 +00:00
- Move CertEnumSystemStoreLocation to reactos/store.c - Add emulation layer for unixlib calls - Implement enumeration of root certificate store in the registry TODO: - Implement remaining unixlib functionality using mbedtls or similar
39 lines
729 B
C
39 lines
729 B
C
|
|
#ifndef __CRYPT32_PRECOMP_H__
|
|
#define __CRYPT32_PRECOMP_H__
|
|
|
|
#include <wine/config.h>
|
|
#include <wine/port.h>
|
|
|
|
#include <assert.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
#define _INC_WINDOWS
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
#include <ntstatus.h>
|
|
#define WIN32_NO_STATUS
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <wine/winternl.h>
|
|
#include <winuser.h>
|
|
#include <winreg.h>
|
|
#include <snmp.h>
|
|
|
|
#define CERT_CHAIN_PARA_HAS_EXTRA_FIELDS
|
|
#define CERT_REVOCATION_PARA_HAS_EXTRA_FIELDS
|
|
#define CRYPT_OID_INFO_HAS_EXTRA_FIELDS
|
|
#include <wincrypt.h>
|
|
|
|
#include <mssip.h>
|
|
|
|
#include <wine/unicode.h>
|
|
#include <wine/exception.h>
|
|
#include <wine/debug.h>
|
|
|
|
#include "crypt32_private.h"
|
|
#include "cryptres.h"
|
|
|
|
#endif /* !__CRYPT32_PRECOMP_H__ */
|