Con Kolivas
11 years ago
4 changed files with 87 additions and 24 deletions
@ -0,0 +1,17 @@ |
|||||||
|
/*
|
||||||
|
* Copyright 2014 Con Kolivas |
||||||
|
* |
||||||
|
* This program is free software; you can redistribute it and/or modify it |
||||||
|
* under the terms of the GNU General Public License as published by the Free |
||||||
|
* Software Foundation; either version 3 of the License, or (at your option) |
||||||
|
* any later version. See COPYING for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
#include "ckpool.h" |
||||||
|
#include "libckpool.h" |
||||||
|
#include "generator.h" |
||||||
|
|
||||||
|
int generator(unixsock_t *us) |
||||||
|
{ |
||||||
|
return 0; |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
/*
|
||||||
|
* Copyright 2014 Con Kolivas |
||||||
|
* |
||||||
|
* This program is free software; you can redistribute it and/or modify it |
||||||
|
* under the terms of the GNU General Public License as published by the Free |
||||||
|
* Software Foundation; either version 3 of the License, or (at your option) |
||||||
|
* any later version. See COPYING for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef GENERATOR_H |
||||||
|
#define GENERATOR_H |
||||||
|
|
||||||
|
#include "config.h" |
||||||
|
|
||||||
|
int generator(unixsock_t *us); |
||||||
|
|
||||||
|
#endif /* GENERATOR_H */ |
Loading…
Reference in new issue