42 lines
1.5 KiB
C
42 lines
1.5 KiB
C
/*==========================================================================
|
|
*
|
|
* Copyright (C) 1998-2000 Microsoft Corporation. All Rights Reserved.
|
|
*
|
|
* File: ModemUtils.h
|
|
* Content: Service provider modem utilitiy functions
|
|
*
|
|
*
|
|
* History:
|
|
* Date By Reason
|
|
* ==== == ======
|
|
* 12/03/98 jtk Created
|
|
***************************************************************************/
|
|
|
|
#ifndef __MODEM_UTILS_H__
|
|
#define __MODEM_UTILS_H__
|
|
|
|
//**********************************************************************
|
|
// Constant definitions
|
|
//**********************************************************************
|
|
|
|
//**********************************************************************
|
|
// Macro definitions
|
|
//**********************************************************************
|
|
|
|
//**********************************************************************
|
|
// Structure definitions
|
|
//**********************************************************************
|
|
|
|
//**********************************************************************
|
|
// Variable definitions
|
|
//**********************************************************************
|
|
|
|
//**********************************************************************
|
|
// Function prototypes
|
|
//**********************************************************************
|
|
|
|
void ProcessWin9xTAPIMessage( DNSPI_DNSP_INT *pThis );
|
|
void ProcessWinNTTAPIMessage( DNSPI_DNSP_INT *pThis, LINEMESSAGE *pMessage );
|
|
|
|
#endif // __MODEM_UTILS_H__
|