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.

38 lines
715 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: resid.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. //
  8. //
  9. //-----------------------------------------------------------------------------
  10. #ifndef RESID_H
  11. #define RESID_H
  12. class LTAPIENTRY CLocResId : public CLocId
  13. {
  14. public:
  15. NOTHROW CLocResId();
  16. void AssertValid(void) const;
  17. const CLocResId &operator=(const CLocResId &);
  18. int NOTHROW operator==(const CLocResId &) const;
  19. int NOTHROW operator!=(const CLocResId &) const;
  20. void Serialize(CArchive &ar);
  21. protected:
  22. private:
  23. };
  24. #if !defined(_DEBUG) || defined(IMPLEMENT)
  25. #include "resid.inl"
  26. #endif
  27. #endif // RESID_H