2010-04-02 18:18:27 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the sigrok project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SIGROK_SIGROK_H
|
|
|
|
#define SIGROK_SIGROK_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <glib.h>
|
2011-02-02 09:25:52 +00:00
|
|
|
#ifdef HAVE_LIBUSB_1_0
|
2010-04-02 18:18:27 +00:00
|
|
|
#include <libusb.h>
|
2011-02-02 09:25:52 +00:00
|
|
|
#endif
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-01-20 22:00:59 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-04-05 14:41:54 +00:00
|
|
|
/*
|
|
|
|
* Status/error codes returned by libsigrok functions.
|
|
|
|
*
|
|
|
|
* All possible return codes of libsigrok functions must be listed here.
|
|
|
|
* Functions should never return hardcoded numbers as status, but rather
|
|
|
|
* use these #defines instead. All error codes are negative numbers.
|
|
|
|
*
|
|
|
|
* The error codes are globally unique in libsigrok, i.e. if one of the
|
2010-04-05 23:29:32 +00:00
|
|
|
* libsigrok functions returns a "malloc error" it must be exactly the same
|
|
|
|
* return value as used by all other functions to indicate "malloc error".
|
2010-04-05 14:41:54 +00:00
|
|
|
* There must be no functions which indicate two different errors via the
|
|
|
|
* same return code.
|
|
|
|
*
|
|
|
|
* Also, for compatibility reasons, no defined return codes are ever removed
|
|
|
|
* or reused for different #defines later. You can only add new #defines and
|
|
|
|
* return codes, but never remove or redefine existing ones.
|
|
|
|
*/
|
2011-01-29 15:23:12 +00:00
|
|
|
#define SR_OK 0 /* No error */
|
|
|
|
#define SR_ERR -1 /* Generic/unspecified error */
|
|
|
|
#define SR_ERR_MALLOC -2 /* Malloc/calloc/realloc error */
|
2011-04-06 17:53:31 +00:00
|
|
|
#define SR_ERR_ARG -3 /* Function argument error */
|
2012-01-07 16:08:54 +00:00
|
|
|
#define SR_ERR_BUG -4 /* Errors hinting at internal bugs */
|
|
|
|
#define SR_ERR_SAMPLERATE -5 /* Incorrect samplerate */
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-02-20 17:39:47 +00:00
|
|
|
#define SR_MAX_NUM_PROBES 64 /* Limited by uint64_t. */
|
|
|
|
#define SR_MAX_PROBENAME_LEN 32
|
2011-01-05 23:51:29 +00:00
|
|
|
|
2010-04-02 18:18:27 +00:00
|
|
|
/* Handy little macros */
|
2011-02-22 17:05:16 +00:00
|
|
|
#define SR_HZ(n) (n)
|
2011-02-22 16:57:03 +00:00
|
|
|
#define SR_KHZ(n) ((n) * 1000)
|
|
|
|
#define SR_MHZ(n) ((n) * 1000000)
|
|
|
|
#define SR_GHZ(n) ((n) * 1000000000)
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-02-22 16:57:03 +00:00
|
|
|
#define SR_HZ_TO_NS(n) (1000000000 / (n))
|
2011-01-10 17:14:26 +00:00
|
|
|
|
2011-05-04 17:03:01 +00:00
|
|
|
/* libsigrok loglevels. */
|
2011-06-12 16:07:15 +00:00
|
|
|
#define SR_LOG_NONE 0
|
|
|
|
#define SR_LOG_ERR 1
|
|
|
|
#define SR_LOG_WARN 2
|
|
|
|
#define SR_LOG_INFO 3
|
|
|
|
#define SR_LOG_DBG 4
|
|
|
|
#define SR_LOG_SPEW 5
|
2011-05-04 17:03:01 +00:00
|
|
|
|
2011-02-20 13:14:13 +00:00
|
|
|
typedef int (*sr_receive_data_callback) (int fd, int revents, void *user_data);
|
2011-01-10 12:47:24 +00:00
|
|
|
|
|
|
|
/* Data types used by hardware plugins for set_configuration() */
|
2010-04-02 18:18:27 +00:00
|
|
|
enum {
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_T_UINT64,
|
|
|
|
SR_T_CHAR,
|
2011-11-19 00:41:41 +00:00
|
|
|
SR_T_BOOL,
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2011-01-29 16:03:26 +00:00
|
|
|
/* sr_datafeed_packet.type values */
|
2010-04-02 18:18:27 +00:00
|
|
|
enum {
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_DF_HEADER,
|
|
|
|
SR_DF_END,
|
|
|
|
SR_DF_TRIGGER,
|
|
|
|
SR_DF_LOGIC,
|
|
|
|
SR_DF_ANALOG,
|
|
|
|
SR_DF_PD,
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2011-01-29 16:03:26 +00:00
|
|
|
struct sr_datafeed_packet {
|
2010-04-02 18:18:27 +00:00
|
|
|
uint16_t type;
|
2011-06-19 00:35:23 +00:00
|
|
|
/* timeoffset since start, in picoseconds */
|
|
|
|
uint64_t timeoffset;
|
|
|
|
/* duration of data in this packet, in picoseconds */
|
|
|
|
uint64_t duration;
|
2010-04-02 18:18:27 +00:00
|
|
|
void *payload;
|
|
|
|
};
|
|
|
|
|
2011-01-29 16:03:26 +00:00
|
|
|
struct sr_datafeed_header {
|
2010-04-02 18:18:27 +00:00
|
|
|
int feed_version;
|
|
|
|
struct timeval starttime;
|
2010-04-05 13:31:39 +00:00
|
|
|
uint64_t samplerate;
|
2011-01-10 17:08:43 +00:00
|
|
|
int num_analog_probes;
|
|
|
|
int num_logic_probes;
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2011-06-19 00:35:23 +00:00
|
|
|
struct sr_datafeed_logic {
|
|
|
|
uint64_t length;
|
|
|
|
uint16_t unitsize;
|
2011-06-19 12:28:50 +00:00
|
|
|
void *data;
|
2011-06-19 00:35:23 +00:00
|
|
|
};
|
|
|
|
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_input {
|
|
|
|
struct sr_input_format *format;
|
2011-01-11 22:58:41 +00:00
|
|
|
char *param;
|
2011-01-30 15:19:42 +00:00
|
|
|
struct sr_device *vdevice;
|
2010-04-30 22:54:39 +00:00
|
|
|
};
|
|
|
|
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_input_format {
|
2011-04-06 19:51:36 +00:00
|
|
|
char *id;
|
2010-04-30 22:54:39 +00:00
|
|
|
char *description;
|
2011-01-07 18:55:25 +00:00
|
|
|
int (*format_match) (const char *filename);
|
2011-01-29 15:36:57 +00:00
|
|
|
int (*init) (struct sr_input *in);
|
|
|
|
int (*loadfile) (struct sr_input *in, const char *filename);
|
2010-04-30 22:54:39 +00:00
|
|
|
};
|
|
|
|
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_output {
|
|
|
|
struct sr_output_format *format;
|
2011-01-30 15:19:42 +00:00
|
|
|
struct sr_device *device;
|
2010-04-02 18:18:27 +00:00
|
|
|
char *param;
|
|
|
|
void *internal;
|
|
|
|
};
|
|
|
|
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_output_format {
|
2011-04-06 19:51:36 +00:00
|
|
|
char *id;
|
2010-04-02 18:18:27 +00:00
|
|
|
char *description;
|
2011-01-09 22:22:48 +00:00
|
|
|
int df_type;
|
2011-01-29 15:36:57 +00:00
|
|
|
int (*init) (struct sr_output *o);
|
2011-02-20 17:24:25 +00:00
|
|
|
int (*data) (struct sr_output *o, const char *data_in,
|
|
|
|
uint64_t length_in, char **data_out, uint64_t *length_out);
|
2011-01-29 15:36:57 +00:00
|
|
|
int (*event) (struct sr_output *o, int event_type, char **data_out,
|
2010-04-02 18:18:27 +00:00
|
|
|
uint64_t *length_out);
|
|
|
|
};
|
|
|
|
|
2011-02-08 20:22:10 +00:00
|
|
|
struct sr_datastore {
|
2010-04-02 18:18:27 +00:00
|
|
|
/* Size in bytes of the number of units stored in this datastore */
|
|
|
|
int ds_unitsize;
|
2010-05-09 11:25:03 +00:00
|
|
|
unsigned int num_units; /* TODO: uint64_t */
|
2010-04-02 18:18:27 +00:00
|
|
|
GSList *chunklist;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This represents a generic device connected to the system.
|
|
|
|
* For device-specific information, ask the plugin. The plugin_index refers
|
|
|
|
* to the device index within that plugin; it may be handling more than one
|
|
|
|
* device. All relevant plugin calls take a device_index parameter for this.
|
|
|
|
*/
|
2011-01-30 15:19:42 +00:00
|
|
|
struct sr_device {
|
2010-04-02 18:18:27 +00:00
|
|
|
/* Which plugin handles this device */
|
2011-01-30 15:19:42 +00:00
|
|
|
struct sr_device_plugin *plugin;
|
2010-04-02 18:18:27 +00:00
|
|
|
/* A plugin may handle multiple devices of the same type */
|
|
|
|
int plugin_index;
|
2011-02-08 16:47:38 +00:00
|
|
|
/* List of struct sr_probe* */
|
2010-04-02 18:18:27 +00:00
|
|
|
GSList *probes;
|
|
|
|
/* Data acquired by this device, if any */
|
2011-02-08 20:22:10 +00:00
|
|
|
struct sr_datastore *datastore;
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2011-01-10 17:08:43 +00:00
|
|
|
enum {
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_PROBE_TYPE_LOGIC,
|
|
|
|
SR_PROBE_TYPE_ANALOG,
|
2011-01-10 17:08:43 +00:00
|
|
|
};
|
|
|
|
|
2011-02-08 16:47:38 +00:00
|
|
|
struct sr_probe {
|
2010-04-02 18:18:27 +00:00
|
|
|
int index;
|
2011-01-22 13:18:31 +00:00
|
|
|
int type;
|
2010-04-02 18:18:27 +00:00
|
|
|
gboolean enabled;
|
|
|
|
char *name;
|
|
|
|
char *trigger;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Hardware plugin capabilities */
|
|
|
|
enum {
|
2012-01-28 18:42:04 +00:00
|
|
|
SR_HWCAP_DUMMY = 0, /* Used to terminate lists. Must be 0! */
|
2011-05-04 20:26:55 +00:00
|
|
|
|
|
|
|
/*--- Device classes ------------------------------------------------*/
|
|
|
|
|
|
|
|
/** The device can act as logic analyzer. */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_HWCAP_LOGIC_ANALYZER,
|
2011-01-15 04:11:40 +00:00
|
|
|
|
2011-05-04 20:26:55 +00:00
|
|
|
/* TODO: SR_HWCAP_SCOPE, SW_HWCAP_PATTERN_GENERATOR, etc.? */
|
|
|
|
|
2012-01-21 14:34:11 +00:00
|
|
|
/*--- Device types --------------------------------------------------*/
|
|
|
|
|
|
|
|
/** The device is demo device. */
|
|
|
|
SR_HWCAP_DEMO_DEVICE,
|
|
|
|
|
2011-05-04 20:26:55 +00:00
|
|
|
/*--- Device options ------------------------------------------------*/
|
|
|
|
|
|
|
|
/** The device supports setting/changing its samplerate. */
|
|
|
|
SR_HWCAP_SAMPLERATE,
|
|
|
|
|
|
|
|
/* TODO: Better description? Rename to PROBE_AND_TRIGGER_CONFIG? */
|
|
|
|
/** The device supports setting a probe mask. */
|
|
|
|
SR_HWCAP_PROBECONFIG,
|
|
|
|
|
|
|
|
/** The device supports setting a pre/post-trigger capture ratio. */
|
|
|
|
SR_HWCAP_CAPTURE_RATIO,
|
|
|
|
|
|
|
|
/* TODO? */
|
|
|
|
/** The device supports setting a pattern (pattern generator mode). */
|
|
|
|
SR_HWCAP_PATTERN_MODE,
|
|
|
|
|
2011-10-29 02:57:17 +00:00
|
|
|
/** The device supports Run Length Encoding. */
|
|
|
|
SR_HWCAP_RLE,
|
|
|
|
|
2011-05-04 20:26:55 +00:00
|
|
|
/*--- Special stuff -------------------------------------------------*/
|
|
|
|
|
|
|
|
/* TODO: Better description. */
|
|
|
|
/** The device supports specifying a capturefile to inject. */
|
|
|
|
SR_HWCAP_CAPTUREFILE,
|
2011-01-15 04:11:40 +00:00
|
|
|
|
2011-05-04 20:26:55 +00:00
|
|
|
/* TODO: Better description. */
|
|
|
|
/** The device supports specifying the capturefile unit size. */
|
|
|
|
SR_HWCAP_CAPTURE_UNITSIZE,
|
2011-01-31 21:34:14 +00:00
|
|
|
|
2011-05-04 20:26:55 +00:00
|
|
|
/* TODO: Better description. */
|
|
|
|
/** The device supports setting the number of probes. */
|
|
|
|
SR_HWCAP_CAPTURE_NUM_PROBES,
|
|
|
|
|
|
|
|
/*--- Acquisition modes ---------------------------------------------*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The device supports setting a sample time limit, i.e. how long the
|
|
|
|
* sample acquisition should run (in ms).
|
|
|
|
*/
|
|
|
|
SR_HWCAP_LIMIT_MSEC,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The device supports setting a sample number limit, i.e. how many
|
|
|
|
* samples should be acquired.
|
|
|
|
*/
|
|
|
|
SR_HWCAP_LIMIT_SAMPLES,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The device supports continuous sampling, i.e. neither a time limit
|
|
|
|
* nor a sample number limit has to be supplied, it will just acquire
|
|
|
|
* samples continuously, until explicitly stopped by a certain command.
|
|
|
|
*/
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_HWCAP_CONTINUOUS,
|
2011-05-04 20:26:55 +00:00
|
|
|
|
|
|
|
/* TODO: SR_HWCAP_JUST_SAMPLE or similar. */
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2011-02-15 18:24:52 +00:00
|
|
|
struct sr_hwcap_option {
|
2010-04-02 18:18:27 +00:00
|
|
|
int capability;
|
|
|
|
int type;
|
|
|
|
char *description;
|
|
|
|
char *shortname;
|
|
|
|
};
|
|
|
|
|
2011-01-29 15:43:45 +00:00
|
|
|
struct sr_device_instance {
|
2010-04-02 18:18:27 +00:00
|
|
|
int index;
|
|
|
|
int status;
|
|
|
|
int instance_type;
|
|
|
|
char *vendor;
|
|
|
|
char *model;
|
|
|
|
char *version;
|
2011-01-09 05:50:45 +00:00
|
|
|
void *priv;
|
2010-04-02 18:18:27 +00:00
|
|
|
union {
|
2011-01-30 15:44:26 +00:00
|
|
|
struct sr_usb_device_instance *usb;
|
|
|
|
struct sr_serial_device_instance *serial;
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2011-01-29 15:43:45 +00:00
|
|
|
/* sr_device_instance types */
|
2010-04-02 18:18:27 +00:00
|
|
|
enum {
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_USB_INSTANCE,
|
|
|
|
SR_SERIAL_INSTANCE,
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2011-02-02 09:25:52 +00:00
|
|
|
#ifdef HAVE_LIBUSB_1_0
|
2011-01-30 15:44:26 +00:00
|
|
|
struct sr_usb_device_instance {
|
2010-04-02 18:18:27 +00:00
|
|
|
uint8_t bus;
|
|
|
|
uint8_t address;
|
|
|
|
struct libusb_device_handle *devhdl;
|
|
|
|
};
|
2011-02-02 09:25:52 +00:00
|
|
|
#endif
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-01-30 15:44:26 +00:00
|
|
|
struct sr_serial_device_instance {
|
2010-04-02 18:18:27 +00:00
|
|
|
char *port;
|
|
|
|
int fd;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Device instance status */
|
|
|
|
enum {
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_ST_NOT_FOUND,
|
2010-04-02 18:18:27 +00:00
|
|
|
/* Found, but still booting */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_ST_INITIALIZING,
|
2010-04-02 18:18:27 +00:00
|
|
|
/* Live, but not in use */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_ST_INACTIVE,
|
2010-04-02 18:18:27 +00:00
|
|
|
/* Actively in use in a session */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_ST_ACTIVE,
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: This sucks, you just kinda have to "know" the returned type.
|
|
|
|
* TODO: Need a DI to return the number of trigger stages supported.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Device info IDs */
|
|
|
|
enum {
|
2011-01-29 15:43:45 +00:00
|
|
|
/* struct sr_device_instance for this specific device */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_DI_INSTANCE,
|
2010-04-02 18:18:27 +00:00
|
|
|
/* The number of probes connected to this device */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_DI_NUM_PROBES,
|
2011-12-29 16:04:31 +00:00
|
|
|
/* The probe names on this device */
|
|
|
|
SR_DI_PROBE_NAMES,
|
2011-02-08 17:07:19 +00:00
|
|
|
/* Samplerates supported by this device, (struct sr_samplerates) */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_DI_SAMPLERATES,
|
2010-04-02 18:18:27 +00:00
|
|
|
/* Types of trigger supported, out of "01crf" (char *) */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_DI_TRIGGER_TYPES,
|
2010-04-05 13:31:39 +00:00
|
|
|
/* The currently set samplerate in Hz (uint64_t) */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_DI_CUR_SAMPLERATE,
|
2011-01-15 04:11:40 +00:00
|
|
|
/* Supported pattern generator modes */
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_DI_PATTERNMODES,
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2010-04-15 18:07:16 +00:00
|
|
|
/*
|
|
|
|
* A device supports either a range of samplerates with steps of a given
|
|
|
|
* granularity, or is limited to a set of defined samplerates. Use either
|
2010-04-02 18:18:27 +00:00
|
|
|
* step or list, but not both.
|
|
|
|
*/
|
2011-02-08 17:07:19 +00:00
|
|
|
struct sr_samplerates {
|
2010-04-02 18:18:27 +00:00
|
|
|
uint64_t low;
|
|
|
|
uint64_t high;
|
|
|
|
uint64_t step;
|
|
|
|
uint64_t *list;
|
|
|
|
};
|
|
|
|
|
2011-01-30 15:19:42 +00:00
|
|
|
struct sr_device_plugin {
|
2010-04-15 18:07:16 +00:00
|
|
|
/* Plugin-specific */
|
2010-04-02 18:18:27 +00:00
|
|
|
char *name;
|
2011-01-29 16:10:24 +00:00
|
|
|
char *longname;
|
2010-04-02 18:18:27 +00:00
|
|
|
int api_version;
|
2011-02-20 17:24:25 +00:00
|
|
|
int (*init) (const char *deviceinfo);
|
2010-04-02 18:18:27 +00:00
|
|
|
void (*cleanup) (void);
|
|
|
|
|
2010-04-15 18:07:16 +00:00
|
|
|
/* Device-specific */
|
2011-05-03 17:15:54 +00:00
|
|
|
int (*opendev) (int device_index);
|
2011-05-04 17:34:12 +00:00
|
|
|
int (*closedev) (int device_index);
|
2010-04-02 18:18:27 +00:00
|
|
|
void *(*get_device_info) (int device_index, int device_info_id);
|
|
|
|
int (*get_status) (int device_index);
|
|
|
|
int *(*get_capabilities) (void);
|
|
|
|
int (*set_configuration) (int device_index, int capability, void *value);
|
|
|
|
int (*start_acquisition) (int device_index, gpointer session_device_id);
|
|
|
|
void (*stop_acquisition) (int device_index, gpointer session_device_id);
|
|
|
|
};
|
|
|
|
|
2011-02-08 16:50:29 +00:00
|
|
|
struct sr_session {
|
2011-01-30 15:19:42 +00:00
|
|
|
/* List of struct sr_device* */
|
2010-04-02 18:18:27 +00:00
|
|
|
GSList *devices;
|
2011-02-20 13:14:13 +00:00
|
|
|
/* list of sr_receive_data_callback */
|
2010-04-02 18:18:27 +00:00
|
|
|
GSList *datafeed_callbacks;
|
|
|
|
GTimeVal starttime;
|
2011-01-30 01:40:55 +00:00
|
|
|
gboolean running;
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2011-01-10 12:47:24 +00:00
|
|
|
#include "sigrok-proto.h"
|
2011-01-15 13:41:57 +00:00
|
|
|
|
2011-01-20 22:00:59 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-04-02 18:18:27 +00:00
|
|
|
#endif
|