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.

13 lines
672 B

  1. /***************************************************************************/
  2. /* EVALUATE.H */
  3. /* Copyright (C) 1995-96 SYWARE Inc., All rights reserved */
  4. /***************************************************************************/
  5. typedef struct tagSTMT FAR *LPSTMT;
  6. RETCODE INTFUNC SetParameterValue(LPSTMT, LPSQLNODE, SDWORD FAR *, SWORD, PTR, SDWORD);
  7. RETCODE INTFUNC EvaluateExpression(LPSTMT, LPSQLNODE);
  8. RETCODE INTFUNC FetchRow(LPSTMT, LPSQLNODE);
  9. RETCODE INTFUNC ExecuteQuery(LPSTMT, LPSQLNODE);
  10. /***************************************************************************/