Source code of Windows XP (NT5)
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.

42 lines
802 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: rasui.h
  7. //
  8. // Contents: helper functions for showing Ras UI
  9. //
  10. // Classes:
  11. //
  12. // Notes:
  13. //
  14. // History: 08-Dec-97 rogerg Created.
  15. //
  16. //--------------------------------------------------------------------------
  17. // Windows Header Files:
  18. #ifndef _RASUIIMPL_
  19. #define _RASUIIMPL_
  20. class CRasUI
  21. {
  22. public:
  23. CRasUI(void);
  24. ~CRasUI(void);
  25. BOOL Initialize(void);
  26. BOOL IsConnectionLan(int iConnectionNum);
  27. void FillRasCombo(HWND hwndCtl,BOOL fForceEnum,BOOL fShowRasEntries);
  28. private:
  29. LPNETAPI m_pNetApi;
  30. DWORD m_cEntries;
  31. LPRASENTRYNAME m_lprasentry; // Cached enum
  32. };
  33. #endif // _RASUIIMPL_