X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Fcallbacks.h;h=c696526c23067dce74f3f01d340d757aa59a5404;hb=77c987b7f93f71d3cca198e60538c7a75d7d11ab;hp=ea7ae182cb379c76c4ec336241fa7b20f9967af0;hpb=ecc7382f48857cb22e74ffa9496f9a31e956bde3;p=m6w6%2Flibmemcached diff --git a/libtest/callbacks.h b/libtest/callbacks.h index ea7ae182..c696526c 100644 --- a/libtest/callbacks.h +++ b/libtest/callbacks.h @@ -1,19 +1,36 @@ -/* uTest Copyright (C) 2011 Data Differential, http://datadifferential.com/ +/* vim:expandtab:shiftwidth=2:tabstop=2:smarttab: + * + * libtest * - * Use and distribution licensed under the BSD license. See - * the COPYING file in the parent directory for full text. + * Copyright (C) 2011 Data Differential, http://datadifferential.com/ + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ + #pragma once #ifdef __cplusplus extern "C" { #endif -typedef void* (test_callback_create_fn)(enum test_return_t*); +typedef void* (test_callback_create_fn)(libtest::server_startup_st&, test_return_t&); +typedef bool test_callback_destroy_fn(void *); typedef enum test_return_t (test_callback_fn)(void *); typedef enum test_return_t (test_callback_runner_fn)(test_callback_fn*, void *); -typedef enum test_return_t (test_callback_error_fn)(const enum test_return_t, void *); +typedef enum test_return_t (test_callback_error_fn)(const test_return_t, void *); #ifdef __cplusplus }