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.
 
 
 
 
 
 

75 lines
1.6 KiB

/*++
Copyright (c) 1996 Microsoft Corporation
Module Name:
dcomputer.h
Abstract:
This header prototypes the computer selection dialog.
Environment:
WIN32 User Mode
Author:
Darwin Ouyang (t-darouy) 30-Sept-1997
--*/
#ifndef __DIALOG_DEVICEMAIN_H_
#define __DIALOG_DEVICEMAIN_H_
#include "resource.h"
class CInternalDevice; // forward declaration
class CFaxComponentData;
class CFaxComponent;
class CFaxDeviceSettingsPropSheet {
public:
CFaxDeviceSettingsPropSheet( HINSTANCE hInstance, LONG_PTR hMmcNotify, CInternalDevice * NodePtr, CFaxComponent * pComp );
~CFaxDeviceSettingsPropSheet();
HPROPSHEETPAGE GetHandle() { return _hPropSheet;}
private:
static INT_PTR APIENTRY DlgProc( HWND hwndDlg,
UINT message,
WPARAM wParam,
LPARAM lParam );
HRESULT UpdateData( HWND hwndDlg );
HRESULT ValidateData( HWND hwndDlg );
static UINT CALLBACK PropSheetPageProc(
HWND hwnd,
UINT uMsg,
LPPROPSHEETPAGE ppsp
);
//
// NOTE: The following **must** be consecutive.
//
PROPSHEETPAGE _PropSheet;
LONG_PTR _hMmcNotify;
HPROPSHEETPAGE _hPropSheet;
CInternalDevice * _pOwnNode;
CFaxComponentData * _pCompData;
CFaxComponent * _pComp;
DWORD _dwDeviceId;
HANDLE _hFaxServer;
};
#endif