mirror of
https://github.com/endofunky/sidetiq.git
synced 2022-11-09 13:53:30 -05:00
17 lines
321 B
C
17 lines
321 B
C
#ifndef __SIDETIQ_EXT_H__
|
|
#define __SIDETIQ_EXT_H__
|
|
#include <ruby.h>
|
|
|
|
void Init_sidetiq_ext();
|
|
static VALUE sidetiq_gettime(VALUE self);
|
|
|
|
/* module Sidetiq */
|
|
extern VALUE msidetiq;
|
|
|
|
/* class Sidetiq::Error < StandardError */
|
|
extern VALUE esidetiq_error;
|
|
|
|
/* class Sidetiq::Clock */
|
|
extern VALUE csidetiq_clock;
|
|
|
|
#endif
|