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.

52 lines
1.2 KiB

  1. //
  2. // !!!!! this file no longer used !!!!!!
  3. // 5/28/97 jmazner Olympus #4528
  4. // We don't want to show support numbers for calls to the ISP
  5. //
  6. //#--------------------------------------------------------------
  7. //
  8. // File: support.h
  9. //
  10. // Synopsis: holds the Class declaration for the CSupport
  11. // class
  12. //
  13. // History: 5/8/97 MKarki Created
  14. //
  15. // Copyright (C) 1996-97 Microsoft Corporation
  16. // All rights reserved.
  17. //
  18. //----------------------------------------------------------------
  19. #include "..\icwphbk\icwsupport.h"
  20. const CHAR PHBK_LIB[] = "icwphbk.dll";
  21. const CHAR PHBK_SUPPORTNUMAPI[] = "GetSupportNumbers";
  22. typedef HRESULT (WINAPI *PFNGETSUPPORTNUMBERS) (PSUPPORTNUM, PDWORD);
  23. class CSupport
  24. {
  25. private:
  26. PSUPPORTNUM m_pSupportNumList;
  27. DWORD m_dwTotalNums;
  28. //
  29. // this function gets the countryID
  30. //
  31. BOOL GetCountryID (PDWORD pdwCountryID);
  32. public:
  33. CSupport (VOID)
  34. {
  35. m_pSupportNumList = NULL;
  36. m_dwTotalNums = 0;
  37. }
  38. ~CSupport (VOID);
  39. BOOL GetSupportInfo (PCHAR);
  40. }; // end of CSupport class declaration