windows-nt/Source/XPSP1/NT/multimedia/opengl/pmesh/hash.h
2020-09-26 16:20:57 +08:00

18 lines
283 B
C

/**
** File : hash.h
** Description: Hash table definition
**/
#ifndef _hash_h_
#define _hash_h_
struct hashentry
{
WORD v2;
WORD f, m; // face and it's matid
hashentry* next;
};
typedef hashentry* PHASHENTRY;
#endif //_hash_h_