create_function16 method

int create_function16(
  1. PtrSqlite3 db,
  2. String zFunctionName,
  3. int nArg,
  4. int eTextRep,
  5. PtrVoid pApp,
  6. PtrDefpxFunc xFunc,
  7. PtrDefpxFunc xStep,
  8. PtrDefxFinal xFinal,
)

Cross platform interface api for sqlite3_create_function16

Implementation

int create_function16(
        cpf.PtrSqlite3 db,
        String zFunctionName,
        int nArg,
        int eTextRep,
        cpf.PtrVoid pApp,
        cpf.PtrDefpxFunc xFunc,
        cpf.PtrDefpxFunc xStep,
        cpf.PtrDefxFinal xFinal) =>
    _sqlite.create_function16(db, zFunctionName, nArg, eTextRep, pApp, xFunc, xStep, xFinal);