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.

43 lines
970 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. LOCSTRVAL.H
  5. History:
  6. --*/
  7. #if !defined (PARSUTIL_LOCSTRVAL_H)
  8. #define PARSUTIL_LOCSTRVAL_H
  9. #include "LocChild.h"
  10. #pragma warning(disable : 4275)
  11. ////////////////////////////////////////////////////////////////////////////////
  12. class LTAPIENTRY CPULocStringValidation : public CPULocChild, public ILocStringValidation
  13. {
  14. // Construction
  15. public:
  16. CPULocStringValidation(CPULocParser * pParent);
  17. DECLARE_CLUNKNOWN();
  18. // COM Interfaces
  19. public:
  20. // Standard Debugging interface.
  21. void STDMETHODCALLTYPE AssertValidInterface() const;
  22. // ILocStringValidation
  23. CVC::ValidationCode STDMETHODCALLTYPE ValidateString(
  24. const CLocTypeId &ltiType, const CLocTranslation &trTrans,
  25. CReporter *pReporter, const CContext &context);
  26. };
  27. ////////////////////////////////////////////////////////////////////////////////
  28. #pragma warning(default : 4275)
  29. #endif