Checksum.inl
上传用户:wymy58
上传日期:2007-01-07
资源大小:2086k
文件大小:0k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // Copyright (C) 1999 DXGuide.  All Rights Reserved.
  2. // File: Checksum.inl
  3. // Inlines for CChecksum
  4. // Updates the current checksum with the specified byte.
  5. inline void CChecksum::Update(BYTE  byteOne)
  6. {
  7. Update(&byteOne, sizeof(BYTE));
  8. }
  9. // Returns the current checksum value.
  10. inline DWORD CChecksum::GetValue(void) const
  11. {
  12. return  m_dwChecksum;
  13. }
  14. inline void CChecksum::SetValue(DWORD  dwChecksum)
  15. {
  16. m_dwChecksum = dwChecksum;
  17. }