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.
44 lines
1.6 KiB
44 lines
1.6 KiB
/*==========================================================================
|
|
*
|
|
* Copyright (C) 1998-2000 Microsoft Corporation. All Rights Reserved.
|
|
*
|
|
* File: ModemUI.h
|
|
* Content: Modem service provider UI functions
|
|
*
|
|
*
|
|
* History:
|
|
* Date By Reason
|
|
* ==== == ======
|
|
* 03/25/99 jtk Created
|
|
***************************************************************************/
|
|
|
|
#ifndef __MODEM_UI_H__
|
|
#define __MODEM_UI_H__
|
|
|
|
//**********************************************************************
|
|
// Constant definitions
|
|
//**********************************************************************
|
|
|
|
//**********************************************************************
|
|
// Macro definitions
|
|
//**********************************************************************
|
|
|
|
//**********************************************************************
|
|
// Structure definitions
|
|
//**********************************************************************
|
|
|
|
//**********************************************************************
|
|
// Variable definitions
|
|
//**********************************************************************
|
|
|
|
//**********************************************************************
|
|
// Function prototypes
|
|
//**********************************************************************
|
|
void DisplayIncomingModemSettingsDialog( void *const pContext );
|
|
void DisplayOutgoingModemSettingsDialog( void *const pContext );
|
|
void StopModemSettingsDialog( const HWND hDialog );
|
|
|
|
HRESULT DisplayModemStatusDialog( void *const pContext );
|
|
void StopModemStatusDialog( const HWND hDialog );
|
|
|
|
#endif // __MODEM_UI_H__
|