home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / audio / bz / bzvalidate.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  2.4 KB  |  55 lines

  1. /*
  2.  * Copyright (C) 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. /***************************************************************************
  18.  *
  19.  * @(#) - BZ - Multiplayer tank game - Host validation routines
  20.  *
  21.  *                    Chris Fouts - Silicon Graphics, Inc.
  22.  *                    October, 1991
  23.  **************************************************************************/
  24.  
  25. #if !defined(BZVALIDATE_H)
  26.  
  27. #define BZVALIDATE_H
  28.  
  29. /* BEGIN PROTOTYPES bzvalidate.c */
  30. void                add_host_to_census( long id ) ;
  31. void                check_to_send_census( void ) ;
  32. void                dprintf( char *fmt, ... ) ;
  33. void                drop_host( long host_id ) ;
  34. void                dropped_by_host( long host_id ) ;
  35. struct bz_census   *find_host_census( long id ) ;
  36. char               *host_name_from_id( long id ) ;
  37. void                init_census_packet( long id ) ;
  38. void                invalidate_host( long host_id ) ;
  39. char               *print_date( void ) ;
  40. char               *print_time( void ) ;
  41. char               *print_time_hundreths( struct timeval *t ) ;
  42. void                process_bz_census( struct BzCensus *input ) ;
  43. void                quit_host( long host_id ) ;
  44. void                register_key( unsigned short key ) ;
  45. void                remove_host( long host_id ) ;
  46. void                remove_host_from_census( long id ) ;
  47. void                send_acknowledgement( long id ) ;
  48. int                 should_acknowledge( long host_id, unsigned short key ) ;
  49. void                validation_summary( void ) ;
  50. int                 valid_host( long host_id ) ;
  51. int                 valid_keyed_host( long host_id, unsigned short key ) ;
  52. /* END PROTOTYPES bzvalidate.c */
  53.  
  54. #endif /* !defined(BZVALIDATE_H) */
  55.