Leaked source code of windows server 2003
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.

35 lines
640 B

  1. // File: dlgcall.h
  2. #ifndef _CDLGCALL_H_
  3. #define _CDLGCALL_H_
  4. class CDlgCall : public RefCount
  5. {
  6. private:
  7. CCall * m_pCall;
  8. HWND m_hwnd;
  9. int m_nTextWidth;
  10. VOID CreateCallDlg();
  11. public:
  12. CDlgCall(CCall * pCall);
  13. ~CDlgCall();
  14. ULONG STDMETHODCALLTYPE AddRef(void);
  15. ULONG STDMETHODCALLTYPE Release(void);
  16. HWND GetHwnd(void) {return m_hwnd;}
  17. VOID Destroy(void);
  18. VOID OnStateChange(void);
  19. VOID OnInitDialog(HWND hdlg);
  20. VOID OnCancel(void);
  21. VOID OnDestroy(void);
  22. static INT_PTR CALLBACK DlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
  23. };
  24. #endif /* _CDLGCall_H_ */