dxx-rebirth/include/makesig.h
2001-11-11 23:39:22 +00:00

19 lines
332 B
C

/*
* $Source: /cvs/cvsroot/d2x/include/makesig.h,v $
* $Revision: 1.1 $
* $Author: bradleyb $
* $Date: 2001-11-11 23:39:22 $
*
* Macro to make file signatures
*
* $Log: not supported by cvs2svn $
*
*/
#ifndef _MAKESIG_H
#define _MAKESIG_H
#define MAKE_SIG(a,b,c,d) (((long)(a)<<24)+((long)(b)<<16)+((c)<<8)+(d))
#endif