mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
969 B
42 lines
969 B
/*****************************************************************************/
|
|
/* */
|
|
/* ICAPEXP.H -- Exports from ICAP.DLL */
|
|
/* */
|
|
/* Copyright (C) 1995 by Microsoft Corp. */
|
|
/* All rights reserved */
|
|
/* */
|
|
/*****************************************************************************/
|
|
|
|
#ifndef ICAPEXP_H
|
|
#define ICAPEXP_H
|
|
|
|
#ifndef PROFILE
|
|
#define PROFILE 1 // define this as zero to macro-out the API
|
|
#endif
|
|
|
|
#if PROFILE
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void __stdcall StartCAP (void); // start profiling
|
|
void __stdcall StopCAP (void); // stop profiling until StartCAP
|
|
void __stdcall SuspendCAP (void); // suspend profiling until ResumeCAP
|
|
void __stdcall ResumeCAP (void); // resume profiling
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#else // NOT PROFILE
|
|
|
|
#define StartCAP()
|
|
#define StopCAP()
|
|
#define SuspendCAP()
|
|
#define ResumeCAP()
|
|
|
|
#endif // NOT PROFILE
|
|
|
|
#endif
|