23 lines
355 B
C
23 lines
355 B
C
// No copyright
|
|
#pragma once
|
|
|
|
#include <uv.h>
|
|
|
|
#include "test/common.h"
|
|
|
|
|
|
struct nf7core_test;
|
|
struct nf7core_test_run;
|
|
|
|
struct nf7core_test {
|
|
const struct nf7_mod_meta* meta;
|
|
|
|
const struct nf7* nf7;
|
|
struct nf7util_malloc* malloc;
|
|
uv_loop_t* uv;
|
|
|
|
struct nf7core_test_run* run;
|
|
};
|
|
|
|
extern const struct nf7_mod_meta nf7core_test;
|