home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / ras / rasberry / rasutil.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-05  |  1.9 KB  |  49 lines

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1997  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. //  MODULE:   rasutil.h
  9. //
  10. //  PURPOSE:  contains rasutil declarations
  11. //
  12.  
  13. #ifndef _RASUTIL_H
  14. #define _RASUTIL_H
  15.  
  16. #define IDS_RASCS                    100
  17. #define IDS_OPENPORT                 IDS_RASCS+ 0
  18. #define IDS_PORTOPENED               IDS_RASCS+ 1
  19. #define IDS_CONNECTDEVICE            IDS_RASCS+ 2
  20. #define IDS_DEVICECONNECTED          IDS_RASCS+ 3
  21. #define IDS_ALLDEVICESCONNECTED      IDS_RASCS+ 4
  22. #define IDS_AUTHENTICATE             IDS_RASCS+ 5
  23. #define IDS_AUTHNOTIFY               IDS_RASCS+ 6
  24. #define IDS_AUTHRETRY                IDS_RASCS+ 7
  25. #define IDS_AUTHCALLBACK             IDS_RASCS+ 8
  26. #define IDS_AUTHCHANGEPASSWORD       IDS_RASCS+ 9
  27. #define IDS_AUTHPROJECT              IDS_RASCS+10
  28. #define IDS_AUTHLINKSPEED            IDS_RASCS+11
  29. #define IDS_AUTHACK                  IDS_RASCS+12
  30. #define IDS_REAUTHENTICATE           IDS_RASCS+13
  31. #define IDS_AUTHENTICATED            IDS_RASCS+14
  32. #define IDS_PREPAREFORCALLBACK       IDS_RASCS+15
  33. #define IDS_WAITFORMODEMRESET        IDS_RASCS+16
  34. #define IDS_WAITFORCALLBACK          IDS_RASCS+17
  35. #define IDS_INTERACTIVE              IDS_RASCS+18
  36. #define IDS_RETRYAUTHENTICATION      IDS_RASCS+19
  37. #define IDS_CALLBACKSETBYCALLER      IDS_RASCS+20
  38. #define IDS_PASSWORDEXPIRED          IDS_RASCS+21
  39. #define IDS_CONNECTED                IDS_RASCS+22
  40. #define IDS_DISCONNECTED             IDS_RASCS+23
  41. #define IDS_RASCS_END                IDS_DISCONNECTED
  42. #define IDS_TRANSCODE                IDS_RASCS+24
  43.                                                                                                
  44.  
  45. UINT GetRasConnState( RASCONNSTATE rasconn );
  46.  
  47. #endif
  48.  
  49.