You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
755 B
24 lines
755 B
//-----------------------------------------------------------------------------
|
|
//
|
|
// File: drmutil.h
|
|
//
|
|
// Microsoft Digital Rights Management
|
|
// Copyright (C) 1998-1999 Microsoft Corporation, All Rights Reserved
|
|
//
|
|
// Description:
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef __WMDM_REVOKED_UTIL_H__
|
|
#define __WMDM_REVOKED_UTIL_H__
|
|
|
|
#include <license.h>
|
|
#include <wtypes.h>
|
|
|
|
DWORD GetSubjectIDFromAppCert( APPCERT appcert );
|
|
BOOL IsMicrosoftRevocationURL( LPWSTR pszRevocationURL );
|
|
HRESULT BuildRevocationURL( DWORD* pdwSubjectIDs,
|
|
LPWSTR* ppwszRevocationURL,
|
|
DWORD* pdwBufferLen );
|
|
|
|
#endif // __WMDM_REVOKED_UTIL_H__
|