Sha256: b912f89cabd46e39296d281dba3e13c49cb26dbcd975dc6b95e645906aef57bd

Contents?: true

Size: 422 Bytes

Versions: 2

Compression:

Stored size: 422 Bytes

Contents

#ifndef PSD_NATIVE_EXT
#define PSD_NATIVE_EXT

#include "ruby.h"

#define RSTRING_NOT_MODIFIED

// Pixels use 32 bits unsigned integers
// We borrow this from OilyPNG
typedef uint32_t PIXEL;

// Our native mixins
#include "image_mode_rgb.h"
#include "rle_decoding.h"

void Init_psd_native();
VALUE psd_class();
void psd_logger(char* level, char* message);
VALUE psd_file(VALUE self);
int psd_file_tell(VALUE self);

#endif

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
psd_native-0.2.0 ext/psd_native/psd_native_ext.h
psd_native-0.1.0 ext/psd_native/psd_native_ext.h