Sha256: 670e07852fcb47b255f6ef28780c8d0691bd04153796d31343e7a66cb5c2f3dc

Contents?: true

Size: 1.86 KB

Versions: 74

Compression:

Stored size: 1.86 KB

Contents

/*
 * Copyright (c) 2008, 2009, Wayne Meissner
 * Copyright (c) 2009, Luc Heinrich <luc@honk-honk.com>
 *
 * All rights reserved.
 *
 * This file is part of ruby-ffi.
 *
 * This code is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License version 3 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * version 3 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with this work.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef RBFFI_TYPES_H
#define	RBFFI_TYPES_H

#ifdef	__cplusplus
extern "C" {
#endif

typedef enum {
    NATIVE_VOID,
    NATIVE_INT8,
    NATIVE_UINT8,
    NATIVE_INT16,
    NATIVE_UINT16,
    NATIVE_INT32,
    NATIVE_UINT32,
    NATIVE_INT64,
    NATIVE_UINT64,
    NATIVE_LONG,
    NATIVE_ULONG,
    NATIVE_FLOAT32,
    NATIVE_FLOAT64,
    NATIVE_POINTER,
    NATIVE_CALLBACK,
    NATIVE_FUNCTION,
    NATIVE_BUFFER_IN,
    NATIVE_BUFFER_OUT,
    NATIVE_BUFFER_INOUT,
    NATIVE_CHAR_ARRAY,
    NATIVE_BOOL,
    
    /** An immutable string.  Nul terminated, but only copies in to the native function */
    NATIVE_STRING,
    
    /** The function takes a variable number of arguments */
    NATIVE_VARARGS,
    
    /** Struct-by-value param or result */
    NATIVE_STRUCT,

    /** An array type definition */
    NATIVE_ARRAY,

    /** Custom native type */
    NATIVE_MAPPED,
} NativeType;

#include <ffi.h>
#include "Type.h"

VALUE rbffi_NativeValue_ToRuby(Type* type, VALUE rbType, const void* ptr);
void rbffi_Types_Init(VALUE moduleFFI);

#ifdef	__cplusplus
}
#endif

#endif	/* RBFFI_TYPES_H */

Version data entries

74 entries across 74 versions & 7 rubygems

Version Path
classiccms-0.7.5 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.7.4 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.7.3 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.7.2 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.7.1 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.7.0 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.6.9 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.6.8 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.6.7 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.6.6 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.6.5 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.6.4 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.6.3 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.6.2 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.6.1 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.6.0 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.5.17 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.5.16 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.5.15 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h
classiccms-0.5.14 vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h