summaryrefslogtreecommitdiffstats
path: root/private/net/svcdlls/lls/ccfapi32/pseatdlg.h
blob: 705c66df8d0dd10d2ae5cdb3a615fab5df9b982e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*++

Copyright (c) 1994-95  Microsoft Corporation

Module Name:

    pseatdlg.h

Abstract:

    Per seat confirmation dialog.

Author:

    Don Ryan (donryan) 28-Feb-1995

Environment:

    User Mode - Win32

Revision History:

    Jeff Parham (jeffparh) 15-Dec-1995
        Robbed from LLSMGR.

--*/

#ifndef _PSEATDLG_H_
#define _PSEATDLG_H_

class CPerSeatLicensingDialog : public CDialog
{
public:
    CString m_strProduct;

public:
    CPerSeatLicensingDialog(CWnd* pParent = NULL);   

    //{{AFX_DATA(CPerSeatLicensingDialog)
    enum { IDD = IDD_PER_SEAT_LICENSING };
    CButton m_agreeBtn;
    CButton m_okBtn;
    CString m_strStaticClients;
    //}}AFX_DATA

    //{{AFX_VIRTUAL(CPerSeatLicensingDialog)
    protected:
    virtual void DoDataExchange(CDataExchange* pDX); 
    //}}AFX_VIRTUAL

protected:
    //{{AFX_MSG(CPerSeatLicensingDialog)
    virtual BOOL OnInitDialog();
    afx_msg void OnAgree();
    //}}AFX_MSG
    DECLARE_MESSAGE_MAP()
};

#endif // _PSEATDLG_H_