]> icculus.org git repositories - btb/d2x.git/blob - include/makesig.h
formatting
[btb/d2x.git] / include / makesig.h
1 /*
2  * $Source: /cvs/cvsroot/d2x/include/makesig.h,v $
3  * $Revision: 1.1 $
4  * $Author: bradleyb $
5  * $Date: 2001-11-11 23:39:22 $
6  *
7  * Macro to make file signatures
8  *
9  * $Log: not supported by cvs2svn $
10  *
11  */
12
13 #ifndef _MAKESIG_H
14 #define _MAKESIG_H
15
16 #define MAKE_SIG(a,b,c,d) (((long)(a)<<24)+((long)(b)<<16)+((c)<<8)+(d))
17
18 #endif