[Pcsclite-cvs-commit] CVS PCSC/src
   
    CVS User rousseau
     
    ludovic.rousseau@free.fr
       
    Tue, 12 Apr 2005 07:31:01 +0000
    
    
  
Update of /cvsroot/pcsclite/PCSC/src
In directory haydn:/tmp/cvs-serv6342
Added Files:
	misc.h 
Log Message:
 #define INTERNAL
--- /cvsroot/pcsclite/PCSC/src/misc.h	2005/04/12 07:31:01	NONE
+++ /cvsroot/pcsclite/PCSC/src/misc.h	2005/04/12 07:31:01	1.1
/*
 * This handles GCC attributes
 *
 * MUSCLE SmartCard Development ( http://www.linuxnet.com )
 *
 * Copyright (C) 2005
 *  Ludovic Rousseau <ludovic.rousseau@free.fr>
 *
 * $Id: misc.h,v 1.1 2005/04/12 07:31:00 rousseau Exp $
 */
#ifndef __local_h__
#define __local_h__
#ifdef __cplusplus
extern "C"
{
#endif
/*
 * Declare the function as internal to the library: the function name is
 * not exported and can't be used by a program linked to the library
 *
 * see http://gcc.gnu.org/onlinedocs/gcc-3.3.5/gcc/Function-Attributes.html#Function-Attributes
 */
#define INTERNAL __attribute__ ((visibility("hidden")))
#ifdef __cplusplus
}
#endif
#endif /* __lcoal_h__ */