13 lines
355 B
C
13 lines
355 B
C
#ifndef HAMMY_TYPES_H
|
|
#define HAMMY_TYPES_H
|
|
|
|
typedef struct hammy_pool_t hammy_pool_t;
|
|
typedef struct hammy_job_t hammy_job_t;
|
|
typedef struct hammy_worker_t hammy_worker_t;
|
|
typedef struct hammy_command_t hammy_command_t;
|
|
typedef struct hammy_bot_t hammy_bot_t;
|
|
typedef struct hammy_refdb_t hammy_refdb_t;
|
|
typedef struct hammy_dxcc_t hammy_dxcc_t;
|
|
|
|
#endif
|