thrift_wrapper.h 405 B

123456789101112131415161718
  1. #ifndef CASS_H
  2. #define CASS_H
  3. /* Facing the C code. Begin. */
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. int insert_wrap(char* host, int port, char* keyspace, char* column_family, char* key, char* column, char** value);
  8. int retrieve_wrap(char* host, int port, char* keyspace, char* column_family, char* key, char* column, char** value);
  9. /* Facing the C code. End. */
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif