Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

22 lines
541 B

#ifndef _ADM_H_
#define _ADM_H_
class CDscrWnd
{
private:
HWND hWndMain;
HWND hWndDscrTitle;
HWND hWndDscrText;
HFONT hFontDscrTitle;
public:
CDscrWnd();
~CDscrWnd();
void Create(HWND hWndParent, HWND hWndInsertAfter, int nXPos, int nYPos, int nWidth, int nHeight);
void SetText(LPCTSTR pcszTitle, LPCTSTR pcszText, BOOL fUpdateWindowState = TRUE);
void ShowWindow(BOOL fShow);
void GetRect(RECT* lpRect);
void MoveWindow(int nXPos, int nYPos, int nWidth, int nHeight);
};
#endif // _ADM_H_