musix 0.3.5

Music player library for esoteric audio formats (music from C64,Amiga etc)
Documentation
/**
 * @ingroup   io68_devel
 * @file      io68/io68_api.h
 * @author    Benjamin Gerard
 * @date      2009/02/10
 * @brief     io68 export header.
 *
 */

/* $Id: io68.h 75 2009-02-04 19:12:14Z benjihan $ */

/* Copyright (C) 1998-2009 Benjamin Gerard */

#ifndef _IO68_IO68_API_H_
#define _IO68_IO68_API_H_

#ifndef IO68_API
# ifdef IO68_EXPORT
#  include "sc68/sc68.h"
#  define IO68_EXTERN SC68_EXTERN
#  define IO68_API    SC68_API
# elif defined (__cplusplus)
#  define IO68_EXTERN extern "C"
#  define IO68_API    IO68_EXTERN
# else
#  define IO68_EXTERN extern
#  define IO68_API    IO68_EXTERN
# endif
#endif

#endif /* #ifndef _IO68_IO68_API_H_ */