home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / uccs / root.14 / udk / usr / include / mon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-19  |  1009 b   |  46 lines

  1. /*
  2.  * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved. 
  3.  *                                                                         
  4.  *        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE               
  5.  *                   SANTA CRUZ OPERATION INC.                             
  6.  *                                                                         
  7.  *   The copyright notice above does not evidence any actual or intended   
  8.  *   publication of such source code.                                      
  9.  */
  10.  
  11. #ifndef _MON_H
  12. #define _MON_H
  13. #ident    "@(#)sgs-head:common/head/mon.h    1.8.4.3"
  14.  
  15. struct hdr {
  16.     char    *lpc;
  17.     char    *hpc;
  18.     int    nfns;
  19. };
  20.  
  21. struct cnt {
  22.     char    *fnpc;
  23.     long    mcnt;
  24. };
  25.  
  26. typedef unsigned short WORD;
  27.  
  28. #define MON_OUT    "mon.out"
  29. #define MPROGS0    (150 * sizeof(WORD))
  30. #define MSCALE0    4
  31. #ifndef NULL
  32. #define NULL    0
  33. #endif
  34.  
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38.  
  39. extern void monitor(int (*)(), int (*)(), WORD *, int, int);
  40.  
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44.  
  45. #endif /*_MON_H*/
  46.