20 lines
405 B
C
20 lines
405 B
C
/* $Id: defs.h,v 1.3 2003/09/12 21:06:45 legoater Exp $
|
|
*
|
|
* Copyright 2001-2003, Meiosys (www.meiosys.com). All rights reserved.
|
|
*
|
|
* See the COPYING file for the terms of usage and distribution.
|
|
*/
|
|
|
|
#ifndef __sd_defs_h
|
|
#define __sd_defs_h
|
|
|
|
#ifdef __cplusplus
|
|
# define __SD_BEGIN_DECLS extern "C" {
|
|
# define __SD_END_DECLS }
|
|
#else
|
|
# define __SD_BEGIN_DECLS
|
|
# define __SD_END_DECLS
|
|
#endif
|
|
|
|
#endif
|