Checksum.inl
资源名称:DXGuide.zip [点击查看]
上传用户:wymy58
上传日期:2007-01-07
资源大小:2086k
文件大小:0k
源码类别:
DirextX编程
开发平台:
Visual C++
- // Copyright (C) 1999 DXGuide. All Rights Reserved.
- // File: Checksum.inl
- // Inlines for CChecksum
- // Updates the current checksum with the specified byte.
- inline void CChecksum::Update(BYTE byteOne)
- {
- Update(&byteOne, sizeof(BYTE));
- }
- // Returns the current checksum value.
- inline DWORD CChecksum::GetValue(void) const
- {
- return m_dwChecksum;
- }
- inline void CChecksum::SetValue(DWORD dwChecksum)
- {
- m_dwChecksum = dwChecksum;
- }