]> icculus.org git repositories - btb/d2x.git/blob - include/makesig.h
use the orientation parameter of g3_draw_bitmap
[btb/d2x.git] / include / makesig.h
1 /*
2  *
3  * Macro to make file signatures
4  *
5  *
6  */
7
8 #ifndef _MAKESIG_H
9 #define _MAKESIG_H
10
11 #define MAKE_SIG(a,b,c,d) (((uint32_t)(a)<<24)+((uint32_t)(b)<<16)+((c)<<8)+(d))
12
13 #endif