#ifndef CRYPTPLUG_H
#define CRYPTPLUG_H
+#include <stdlib.h>
+
#ifdef __cplusplus
extern "C" {
#else
#define false 0
#endif
-#include <stdlib.h>
-
/*! \file cryptplug.h
\brief Common API header for CRYPTPLUG.
\see free_StructuringInfo, StructuringInfo
\see signMessage, encryptMessage, encryptAndSignMessage
*/
- static void init_StructuringInfo( struct StructuringInfo* s )
+ inline void init_StructuringInfo( struct StructuringInfo* s )
{
if( ! s ) return;
\see StructuringInfo
*/
- static void free_StructuringInfo( struct StructuringInfo* s )
+ inline void free_StructuringInfo( struct StructuringInfo* s )
{
if( ! s ) return;
if( s->contentTypeMain ) free( s->contentTypeMain );