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.
36 lines
628 B
36 lines
628 B
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// FILE
|
|
//
|
|
// BuildTree.h
|
|
//
|
|
// SYNOPSIS
|
|
//
|
|
// This file declares the function IASBuildExpression.
|
|
//
|
|
// MODIFICATION HISTORY
|
|
//
|
|
// 02/04/1998 Original version.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _BUILDTREE_H_
|
|
#define _BUILDTREE_H_
|
|
|
|
#include <nap.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
HRESULT
|
|
WINAPI
|
|
IASBuildExpression(
|
|
IN VARIANT* pv,
|
|
OUT ICondition** ppExpression
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // _BUILDTREE_H_
|