Leaked source code of windows server 2003
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.

35 lines
878 B

  1. //****************************************************************************
  2. //
  3. // Microsoft NT Remote Access Service
  4. //
  5. // Copyright (C) 1994-95 Microsft Corporation. All rights reserved.
  6. //
  7. // Filename: rastapi.h
  8. //
  9. // Revision History
  10. //
  11. // Mar 28 1992 Gurdeep Singh Pall Created
  12. //
  13. //
  14. // Description: This file contains all structs for TAPI.DLL
  15. //
  16. //****************************************************************************
  17. typedef struct DeviceInfo
  18. {
  19. struct DeviceInfo *Next;
  20. BOOL fValid;
  21. DWORD dwNumEndPoints;
  22. DWORD dwExclusiveDialIn;
  23. DWORD dwExclusiveDialOut;
  24. DWORD dwExclusiveRouter;
  25. DWORD dwCurrentEndPoints;
  26. HKEY hkeyDevice;
  27. GUID guidDevice;
  28. CHAR DeviceName[256];
  29. } DeviceInfo, *pDeviceInfo;