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.
32 lines
586 B
32 lines
586 B
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) Microsoft Corp. All rights reserved.
|
|
//
|
|
// FILE
|
|
//
|
|
// xprparse.h
|
|
//
|
|
// SYNOPSIS
|
|
//
|
|
// This file declares the function IASParseExpression.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef XPRPARSE_H
|
|
#define XPRPARSE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
HRESULT
|
|
WINAPI
|
|
IASParseExpressionEx(
|
|
IN VARIANT* pvExpression,
|
|
OUT VARIANT* pVal
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // XPRPARSE_H
|