Sha256: c7a6f8115624f48711177a68f4cc0f8c3c07c20ef3c0c32e08c90d4e11425809
Contents?: true
Size: 933 Bytes
Versions: 25
Compression:
Stored size: 933 Bytes
Contents
#ifndef MYSQL2_EXT #define MYSQL2_EXT void Init_mysql2(void); /* tell rbx not to use it's caching compat layer by doing this we're making a promise to RBX that we'll never modify the pointers we get back from RSTRING_PTR */ #define RSTRING_NOT_MODIFIED #include <ruby.h> #ifdef HAVE_MYSQL_H #include <mysql.h> #include <mysql_com.h> #include <errmsg.h> #include <mysqld_error.h> #else #include <mysql/mysql.h> #include <mysql/mysql_com.h> #include <mysql/errmsg.h> #include <mysql/mysqld_error.h> #endif #ifdef HAVE_RUBY_ENCODING_H #include <ruby/encoding.h> #endif #ifdef HAVE_RUBY_THREAD_H #include <ruby/thread.h> #endif #if defined(__GNUC__) && (__GNUC__ >= 3) #define RB_MYSQL_NORETURN __attribute__ ((noreturn)) #define RB_MYSQL_UNUSED __attribute__ ((unused)) #else #define RB_MYSQL_NORETURN #define RB_MYSQL_UNUSED #endif #include <client.h> #include <statement.h> #include <result.h> #include <infile.h> #endif
Version data entries
25 entries across 25 versions & 2 rubygems