SOL9 2.0 Class: CertDialog

 SOL9 C++ Class Library  SOL9 Samples  SOL9 Tutorial  SOL9 FAQ  SOL9 ClassTree 

Source code

/*
 * 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;        
    }
};

}

Last modified: 19 Dec 2009

Copyright (c) 2009 Antillia.com ALL RIGHTS RESERVED.