home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pctech / hlsrc / hltimes.h < prev    next >
C/C++ Source or Header  |  1988-09-09  |  419b  |  18 lines

  1. /*+
  2.     Name:    hltimes.h
  3.     Date:    07-Sep-1988
  4.     Author:    Kent J. Quirk
  5.         (c) Copyright 1988 Ziff Communications Co.
  6.     Abstract:    Contains header information for routines using hltimes.c
  7. -*/    
  8.  
  9. typedef struct TimeRec {
  10.     long ticks;
  11.     char desc[64-sizeof(long)];
  12. } TIME_REC;
  13.  
  14. int opentime(char *);
  15. void savetime(int, int, struct TimeRec *);
  16. struct TimeRec *readtime(int, int);
  17. void closetime();
  18.