Move */include/makesig.h -> common/include/makesig.h

This commit is contained in:
Kp 2013-03-03 01:03:33 +00:00
parent 70d4274106
commit b2382d7772
2 changed files with 0 additions and 24 deletions

View file

@ -1,24 +0,0 @@
/*
* $Source: /cvsroot/dxx-rebirth/d2x-rebirth/include/makesig.h,v $
* $Revision: 1.1.1.1 $
* $Author: zicodxx $
* $Date: 2006/03/17 20:01:26 $
*
* Macro to make file signatures
*
* $Log: makesig.h,v $
* Revision 1.1.1.1 2006/03/17 20:01:26 zicodxx
* initial import
*
* Revision 1.1 2001/11/11 23:39:22 bradleyb
* Created header for MAKE_SIG macro
*
*
*/
#ifndef _MAKESIG_H
#define _MAKESIG_H
#define MAKE_SIG(a,b,c,d) (((long)(a)<<24)+((long)(b)<<16)+((c)<<8)+(d))
#endif