diff options
Diffstat (limited to 'include/m_crypto.h')
-rw-r--r-- | include/m_crypto.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/m_crypto.h b/include/m_crypto.h index 870bbce929..3bc977e1de 100644 --- a/include/m_crypto.h +++ b/include/m_crypto.h @@ -30,7 +30,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. struct MICryptoEngine
{
- DWORD dwVersion;
+ uint32_t dwVersion;
STDMETHOD_(void, destroy)(void) PURE;
@@ -67,8 +67,8 @@ typedef MICryptoEngine* (MIR_CDECL *pfnCryptoProviderFactory)(void); struct CRYPTO_PROVIDER
{
- DWORD dwSize;
- DWORD dwFlags; // one of CPF_* constants
+ uint32_t dwSize;
+ uint32_t dwFlags; // one of CPF_* constants
HPLUGIN pPlugin;
char *pszName; // unique id
|