windows-nt/Source/XPSP1/NT/net/rras/ras/rasman/tapi32/common.h
2020-09-26 16:20:57 +08:00

36 lines
843 B
C

//****************************************************************************
//
// Microsoft NT Remote Access Service
//
// Copyright (C) 1994-95 Microsft Corporation. All rights reserved.
//
// Filename: rastapi.h
//
// Revision History
//
// Mar 28 1992 Gurdeep Singh Pall Created
//
//
// Description: This file contains all structs for TAPI.DLL
//
//****************************************************************************
typedef struct DeviceInfo
{
struct DeviceInfo *Next;
BOOL fValid;
DWORD dwNumEndPoints;
DWORD dwExclusiveDialIn;
DWORD dwExclusiveDialOut;
DWORD dwExclusiveRouter;
DWORD dwCurrentEndPoints;
HKEY hkeyDevice;
GUID guidDevice;
CHAR DeviceName[256];
} DeviceInfo, *pDeviceInfo;