diff options
author | Karl-Heinz Zimmer <[email protected]> | 2002-06-01 15:35:07 +0000 |
---|---|---|
committer | Karl-Heinz Zimmer <[email protected]> | 2002-06-01 15:35:07 +0000 |
commit | 1ab6177e27ef129a8c52746fe1a761fbd5074e42 (patch) | |
tree | eeb20113d35518393113c4e5f409397cd051336c | |
parent | more cert info (diff) | |
download | gpgme-1ab6177e27ef129a8c52746fe1a761fbd5074e42.tar.gz gpgme-1ab6177e27ef129a8c52746fe1a761fbd5074e42.zip |
sync our cryptplug.h with the version in KDE/libkdenetwork/ that was corrected my Marc Mutz.
Diffstat (limited to '')
-rw-r--r-- | gpgmeplug/cryptplug.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gpgmeplug/cryptplug.h b/gpgmeplug/cryptplug.h index 026be5e8..f45fed9e 100644 --- a/gpgmeplug/cryptplug.h +++ b/gpgmeplug/cryptplug.h @@ -23,6 +23,8 @@ #ifndef CRYPTPLUG_H #define CRYPTPLUG_H +#include <stdlib.h> + #ifdef __cplusplus extern "C" { #else @@ -31,8 +33,6 @@ typedef char bool; #define false 0 #endif -#include <stdlib.h> - /*! \file cryptplug.h \brief Common API header for CRYPTPLUG. @@ -1324,7 +1324,7 @@ struct StructuringInfo { \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; @@ -1365,7 +1365,7 @@ struct StructuringInfo { \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 ); |