home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 (1993) / nebula.bin / SourceCode / Broadcast / Headers / shared.h < prev   
Encoding:
C/C++ Source or Header  |  1993-01-14  |  1.0 KB  |  38 lines

  1. /* Copyright (c) 1992 by NightShade Software.
  2.  *    You may modify and (hopefully) improve this code if you keep the
  3.  *    original copyright messages, don't sell it, and share your improvements  
  4.  *    with with the World.
  5.  *
  6.  * NAME
  7.  *     shared.h
  8.  *
  9.  * DESCRIPTION
  10.  *     Common definitions used throughout the various Broadcast modules.
  11.  *
  12.  * COMMENTS/PROBLEMS
  13.  *     ----
  14.  *
  15.  * AUTHOR/DATE CREATED
  16.  *     Gary Ritchie/December 22, 1992
  17.  *
  18.  * REVISIONS
  19.  *
  20.  */
  21.  
  22. /**********************************************************************
  23.  * Before compiling, uncomment the following line (ie. remove the two
  24.  * slashes), and replace the stuff between the quotes with a different
  25.  * string.  Don't put spaces in the string.  See the README file for more
  26.  * information.
  27.  **********************************************************************/
  28.   
  29. //#define BROADCASTPORT "PutYourOwnStringHere"
  30.  
  31. #ifndef BROADCASTPORT
  32. #error "You must define a BROADCASTPORT in Headers/shared.h"
  33. #endif
  34.  
  35. #define DISPLAY_SUCCEEDED    0
  36. #define DISPLAY_FAILED        1
  37.  
  38.