Sha256: 1fc07a5a7e8a64c06ce0379d47e73dc5607c66fe14f2583060feb4ae3a130225

Contents?: true

Size: 478 Bytes

Versions: 2

Compression:

Stored size: 478 Bytes

Contents

#ifndef TINYTDS_CLIENT_H
#define TINYTDS_CLIENT_H

void init_tinytds_client();

typedef struct {
  short int closed;
  short int timing_out;
  short int dbsqlok_sent;
  short int dbcancel_sent;
} tinytds_client_userdata;

typedef struct {
  LOGINREC *login;
  RETCODE return_code;
  DBPROCESS *client;
  short int closed;
  VALUE charset;
  tinytds_client_userdata *userdata;
  #ifdef HAVE_RUBY_ENCODING_H
    rb_encoding *encoding;
  #endif
} tinytds_client_wrapper;


#endif

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tiny_tds-0.3.2 ext/tiny_tds/client.h
tiny_tds-0.3.1 ext/tiny_tds/client.h