bindings/ruby/rblm-private.h
author Mikael Hallendal <micke@imendio.com>
Thu, 10 Apr 2008 15:56:42 +0200
changeset 381 b2eecf83193c
parent 363 6d53af6c3227
child 382 bc887affb431
permissions -rw-r--r--
Added LmCertificateStatus, LmSSLStatus, LmSSLResponse to ruby bindings
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
363
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
     1
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
     2
#ifndef __RBLM_PRIVATE_H__
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
     3
#define __RBLM_PRIVATE_H__
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
     4
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
     5
#include <glib.h>
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
     6
#include <ruby.h>
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
     7
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
     8
#define GBOOL2RVAL(x) (x == TRUE ? Qtrue : Qfalse)
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
     9
#define RVAL2GBOOL(x) RTEST(x)
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
    10
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
    11
gboolean   rb_lm__is_kind_of (VALUE object, VALUE klass);
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
    12
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
    13
#endif /* __RBLM_PRIVATE_H__ */
6d53af6c3227 Cleaning up of the bindings for better checking
Mikael Hallendal <micke@imendio.com>
parents:
diff changeset
    14