This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/h/wsample.h

46 lines
1.1 KiB
C

/*
* wsample.h Open Watcom Execution Sampler include file
*
* =========================================================================
*
* Open Watcom Project
*
* Copyright (c) 2002-2010 Open Watcom Contributors. All Rights Reserved.
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* This file is automatically generated. Do not edit directly.
*
* =========================================================================
*/
#ifndef _WSAMPLE_H_INCLUDED
#define _WSAMPLE_H_INCLUDED
#ifndef _ENABLE_AUTODEPEND
#pragma read_only_file;
#endif
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _MARK_ON
#if defined(__386__)
extern void __mark( char __far * );
#pragma aux __mark = 0xcc __parm __nomemory [__dx __eax] __modify __exact __nomemory [];
#elif defined(_M_I86)
extern void __mark( char __far * );
#pragma aux __mark = 0xcc __parm __nomemory [__dx __ax] __modify __exact __nomemory [];
#else
#error __mark not defined for this platform
#endif
#define _MARK_( x ) __mark( x )
#else
#define _MARK_( x )
#endif
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif