| SOL9 2.0 Class: CertDialog |
| SOL9 C++ Class Library | SOL9 Samples | SOL9 Tutorial | SOL9 FAQ | SOL9 ClassTree |
/*
* CertDialog.h
* Copyright (c) 2009 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
#pragma once
#include <sol/Object.h>
#include <wincrypt.h>
#include <wintrust.h>
#include <cryptuiapi.h>
#include <sol/crypt/CertStore.h>
#pragma comment (lib, "crypt32.lib")
#pragma comment (lib, "cryptui.lib")
namespace SOL {
class CertDialog :public Object{
private:
HWND hParent;
public:
CertDialog(HWND hwnd=NULL)
:hParent(hwnd)
{
}
public:
HWND getParent() {
return hParent;
}
};
}
|