Sha256: a11502cb7300c81b478e53215396b42155037b18d68739c0c7fb64c206f4a217

Contents?: true

Size: 383 Bytes

Versions: 3

Compression:

Stored size: 383 Bytes

Contents

#ifndef DS9_OPTION_H
#define DS9_OPTION_H

#include <ruby.h>
#include <nghttp2/nghttp2.h>

static const rb_data_type_t ds9_option_type = {
    "DS9/option",
    {0, (void (*)(void *))nghttp2_option_del, 0,},
    0, 0,
#ifdef RUBY_TYPED_FREE_IMMEDIATELY
    RUBY_TYPED_FREE_IMMEDIATELY,
#endif
};

void Init_ds9_option(VALUE mDS9);
nghttp2_option* UnwrapDS9Option(VALUE opt);

#endif

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ds9-1.4.2 ext/ds9/ds9_option.h
ds9-1.4.1 ext/ds9/ds9_option.h
ds9-1.4.0 ext/ds9/ds9_option.h