added include guards

This commit is contained in:
Frank Morgner 2019-04-25 16:18:33 +02:00
parent 86ba3ea489
commit 0bc95cb6a1
1 changed files with 3 additions and 0 deletions

View File

@ -18,5 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __LIBPKCS11_H
#define __LIBPKCS11_H
void *C_LoadModule(const char *name, CK_FUNCTION_LIST_PTR_PTR);
CK_RV C_UnloadModule(void *module);
#endif