1 /* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */ 2 #ifndef MEMCACHED_DEFAULT_ENGINE_H 3 #define MEMCACHED_DEFAULT_ENGINE_H 4 5 #include "config.h" 6 7 #ifdef __cplusplus 8 extern "C" { 9 #endif 10 11 MEMCACHED_PUBLIC_API 12 ENGINE_ERROR_CODE create_instance(uint64_t interface, 13 GET_SERVER_API get_server_api, 14 ENGINE_HANDLE **handle); 15 16 #ifdef __cplusplus 17 } 18 #endif 19 20 #endif 21