home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 October / Chip_1997-10_cd.bin / tema / sybase / powerj / h.z / WSAMPLE.H < prev   
C/C++ Source or Header  |  1996-11-06  |  828b  |  32 lines

  1. /*
  2.  *  wsample.h    WATCOM Execution Sampler include file
  3.  *
  4.  *  Copyright by WATCOM International Corp. 1988-1996.  All rights reserved.
  5.  */
  6. #ifndef _WSAMPLE_H_INCLUDED
  7. #define _WSAMPLE_H_INCLUDED
  8. #if !defined(_ENABLE_AUTODEPEND)
  9.   #pragma read_only_file;
  10. #endif
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #ifdef _MARK_ON
  15.   #if defined(__386__)
  16.     extern void __mark( char __far * );
  17.     #pragma aux __mark = 0xcc __parm __nomemory [__dx __eax] __modify __exact __nomemory [];
  18.   #elif defined(M_I86)
  19.     extern void __mark( char __far * );
  20.     #pragma aux __mark = 0xcc __parm __nomemory [__dx __ax] __modify __exact __nomemory [];
  21.   #else
  22.     #error __mark not defined for this platform
  23.   #endif
  24.   #define _MARK_( x )    __mark( x )
  25. #else
  26.   #define _MARK_( x )
  27. #endif
  28. #ifdef __cplusplus
  29. };
  30. #endif
  31. #endif
  32.