Gray C++ Libraries  0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
cCheckSum.h
Go to the documentation of this file.
1 //
4 //
5 
6 #ifndef _INC_cCheckSum_H
7 #define _INC_cCheckSum_H
8 #ifndef NO_PRAGMA_ONCE
9 #pragma once
10 #endif
11 
12 #include "cHashCode.h"
14 
15 namespace GrayLib
16 {
18 
19  struct GRAYLIB_LINK cCheckSum // static
20  {
23  static WORD GRAYCALL MakeCheckSum16(const void* pData, size_t nSizeData);
24  static UINT32 GRAYCALL MakeCheckSum32(const void* pData, size_t nSizeData);
25  };
26 }
27 #endif
#define GRAYCALL
declare calling convention for static functions so everyone knows the arg passing scheme....
Definition: GrayCore.h:36
#define GRAYLIB_LINK
Definition: GrayLibBase.h:35
Definition: cMesh.h:22
UNITTEST2_PREDEF(cQuadtree)
Definition: cCheckSum.h:20