home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD2.img
/
d4xx
/
d443
/
dice
/
dice.lzh
/
include
/
lib
/
version.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-01-13
|
488b
|
23 lines
/*
* LIB/VERSION.H
*
* (c)Copyright 1990, Matthew Dillon, All Rights Reserved
*/
#ifndef _LIB_VERSION_H
#define _LIB_VERSION_H
#define VERSION "V2.06"
#define DCOPYRIGHT static char *DCopyright = "(c)Copyright 1990 by Matthew Dillon, All Rights Reserved"
#ifdef REGISTERED
#define IDENT(file,subv) static char *Ident = "@($)" file " " VERSION subv "R " __DATE__
#else
#define IDENT(file,subv) static char *Ident = "@($)" file " " VERSION subv " " __DATE__
#endif
#endif