Source code of Windows XP (NT5)
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.
|
|
/***************************************************************************/ /* EVALUATE.H */ /* Copyright (C) 1995-96 SYWARE Inc., All rights reserved */ /***************************************************************************/
typedef struct tagSTMT FAR *LPSTMT;
RETCODE INTFUNC SetParameterValue(LPSTMT, LPSQLNODE, SDWORD FAR *, SWORD, PTR, SDWORD); RETCODE INTFUNC EvaluateExpression(LPSTMT, LPSQLNODE); RETCODE INTFUNC FetchRow(LPSTMT, LPSQLNODE); RETCODE INTFUNC ExecuteQuery(LPSTMT, LPSQLNODE);
/***************************************************************************/
|