Subversion Repositories Games.Descent

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 pmbaty 1
/*
2
 * This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
3
 * It is copyright by its individual contributors, as recorded in the
4
 * project's Git history.  See COPYING.txt at the top level for license
5
 * terms and a link to the Git history.
6
 */
7
/*
8
 * $Source: /cvsroot/dxx-rebirth/d2x-rebirth/include/makesig.h,v $
9
 * $Revision: 1.1.1.1 $
10
 * $Author: zicodxx $
11
 * $Date: 2006/03/17 20:01:26 $
12
 *
13
 * Macro to make file signatures
14
 *
15
 * $Log: makesig.h,v $
16
 * Revision 1.1.1.1  2006/03/17 20:01:26  zicodxx
17
 * initial import
18
 *
19
 * Revision 1.1  2001/11/11 23:39:22  bradleyb
20
 * Created header for MAKE_SIG macro
21
 *
22
 *
23
 */
24
 
25
#ifndef _MAKESIG_H
26
#define _MAKESIG_H
27
 
28
#define MAKE_SIG(a,b,c,d) ((static_cast<long>(a)<<24)+(static_cast<long>(b)<<16)+((c)<<8)+(d))
29
 
30
#endif