aheinecke@137: #ifdef WIN32
aheinecke@137: #ifndef WINDOWSSTORE_H
aheinecke@137: #define WINDOWSSTORE_H
aheinecke@137: 
aheinecke@137: #include <windows.h>
aheinecke@137: #include <wincrypt.h>
aheinecke@161: 
aheinecke@161: #include <stdbool.h>
aheinecke@161: 
aheinecke@161: /** @brief Access the Windows certificate store
aheinecke@137:  *
aheinecke@161:  * @param [in] to_install strv of DER encoded certificates to be added.
aheinecke@161:  * @param [in] to_remove strv of DER encoded certificates to be remvoed.
aheinecke@137:  * @param [in] user_store set to True if the certificates should be installed
aheinecke@137:  *             only for the current user. O for system wide installation.
aheinecke@137:  * @returns 0 on success an errorcode otherwise.
aheinecke@137:  */
aheinecke@161: int write_stores_win (char **to_install, char **to_remove,
aheinecke@161:                       bool user_store);
aheinecke@137: 
aheinecke@137: #endif // WINDOWSSTORE_H
aheinecke@137: #endif // WIN32