mirror of https://github.com/lianthony/NT4.0
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.
29 lines
886 B
29 lines
886 B
//****************************************************************************
|
|
//
|
|
// File: modem.h
|
|
// Content: This file contains the general modem-related declaration
|
|
//
|
|
// Copyright (c) 1992-1994, Microsoft Corporation, all rights reserved
|
|
//
|
|
// History:
|
|
// Thu 07-Jul-1994 21:16:59 -by- Viroon Touranachun [viroont]
|
|
// Created
|
|
//****************************************************************************
|
|
|
|
#ifndef _MODEM_H_
|
|
#define _MODEM_H_
|
|
|
|
//****************************************************************************
|
|
// Constant Definitions
|
|
//****************************************************************************
|
|
|
|
// DeviceType defines
|
|
//
|
|
#define DT_NULL_MODEM 0
|
|
#define DT_EXTERNAL_MODEM 1
|
|
#define DT_INTERNAL_MODEM 2
|
|
#define DT_PCMCIA_MODEM 3
|
|
#define DT_PARALLEL_PORT 4
|
|
#define DT_PARALLEL_MODEM 5
|
|
|
|
#endif //_MODEM_H_
|