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.

17 lines
390 B

  1. #ifndef YBT_H
  2. #define YBT_H
  3. #ident "Copyright (c) 2007 Tokutek Inc. All rights reserved."
  4. // brttypes.h must be first to make 64-bit file mode work right in linux.
  5. #include "brttypes.h"
  6. #include "../include/db.h"
  7. DBT* toku_init_dbt (DBT *);
  8. DBT *toku_fill_dbt(DBT *dbt, bytevec k, ITEMLEN len);
  9. int toku_dbt_set_value (DBT *, bytevec val, ITEMLEN vallen, void **staticptrp);
  10. #endif