Displaying 1 result from an estimated 1 matches for "m_hicon".
Did you mean:
_icon
2002 Aug 06
0
Getting a GUI to work with Vorbis code
...IDlg(CWnd* pParent /*=NULL*/)
: CDialog(CGUIDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CGUIDlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
// Note that LoadIcon does not require a subsequent DestroyIcon in
Win32
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CGUIDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CGUIDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CGUIDlg, CD...