home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / sybase / starbuck / h.z / WSAMPLE.H < prev   
C/C++ Source or Header  |  1996-07-24  |  759b  |  29 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. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. #ifdef _MARK_ON
  12.   #if defined(__386__)
  13.     extern void __mark( char __far * );
  14.     #pragma aux __mark = 0xcc __parm __nomemory [__dx __eax] __modify __exact __nomemory [];
  15.   #elif defined(M_I86)
  16.     extern void __mark( char __far * );
  17.     #pragma aux __mark = 0xcc __parm __nomemory [__dx __ax] __modify __exact __nomemory [];
  18.   #else
  19.     #error __mark not defined for this platform
  20.   #endif
  21.   #define _MARK_( x )    __mark( x )
  22. #else
  23.   #define _MARK_( x )
  24. #endif
  25. #ifdef __cplusplus
  26. };
  27. #endif
  28. #endif
  29.