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.

40 lines
576 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. RESID.H
  5. History:
  6. --*/
  7. #ifndef RESID_H
  8. #define RESID_H
  9. class LTAPIENTRY CLocResId : public CLocId
  10. {
  11. public:
  12. NOTHROW CLocResId();
  13. void AssertValid(void) const;
  14. const CLocResId &operator=(const CLocResId &);
  15. int NOTHROW operator==(const CLocResId &) const;
  16. int NOTHROW operator!=(const CLocResId &) const;
  17. void Serialize(CArchive &ar);
  18. protected:
  19. private:
  20. };
  21. #if !defined(_DEBUG) || defined(IMPLEMENT)
  22. #include "resid.inl"
  23. #endif
  24. #endif // RESID_H