Sha256: b3a247dbfc8ef539d57a3bb67e8d01d6e04f072e56a9eec067953daf17a3d804

Contents?: true

Size: 538 Bytes

Versions: 12

Compression:

Stored size: 538 Bytes

Contents

#include "polyphony.h"

void Init_Polyphony();
void Init_Backend();
void Init_Pipe();
void Init_Queue();
void Init_Event();
void Init_Fiber();
void Init_Thread();

void Init_IOExtensions();
void Init_SocketExtensions();

#ifdef POLYPHONY_PLAYGROUND
extern void playground();
#endif

void Init_polyphony_ext() {
  Init_Polyphony();

  Init_Backend();
  Init_Queue();
  Init_Pipe();
  Init_Event();
  Init_Fiber();
  Init_Thread();

  Init_IOExtensions();
  Init_SocketExtensions();

  #ifdef POLYPHONY_PLAYGROUND
  playground();
  #endif
}

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
polyphony-0.94 ext/polyphony/polyphony_ext.c
polyphony-0.93 ext/polyphony/polyphony_ext.c
polyphony-0.92 ext/polyphony/polyphony_ext.c
polyphony-0.91 ext/polyphony/polyphony_ext.c
polyphony-0.90 ext/polyphony/polyphony_ext.c
polyphony-0.89 ext/polyphony/polyphony_ext.c
polyphony-0.87 ext/polyphony/polyphony_ext.c
polyphony-0.86 ext/polyphony/polyphony_ext.c
polyphony-0.85 ext/polyphony/polyphony_ext.c
polyphony-0.84.1 ext/polyphony/polyphony_ext.c
polyphony-0.84 ext/polyphony/polyphony_ext.c
polyphony-0.83 ext/polyphony/polyphony_ext.c