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.

38 lines
869 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: extlist.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // Definition of an extension list. Used by the parsers to tell the caller
  8. // what the parser is will to handle.
  9. //
  10. //-----------------------------------------------------------------------------
  11. #ifndef EXTLIST_H
  12. #define EXTLIST_H
  13. #pragma warning(disable : 4275)
  14. class LTAPIENTRY CLocExtensionList : public CStringList
  15. {
  16. public:
  17. CLocExtensionList();
  18. void AssertValid(void) const;
  19. //
  20. // Conversion routines to/from CLString's.
  21. //
  22. void NOTHROW ConvertToCLString(CLString &) const;
  23. BOOL NOTHROW ConvertFromCLString(const CLString &);
  24. ~CLocExtensionList();
  25. private:
  26. };
  27. #pragma warning(default : 4275)
  28. #endif // EXTLIST_H