Mercurial > trustbridge
view cinst/windowsstore.h @ 393:ae2ef965a41b
Provide installer with old list in case there are no news
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Tue, 15 Apr 2014 20:27:26 +0200 |
parents | 4de97f74d038 |
children | 17e1c8f37d72 |
line wrap: on
line source
#ifdef WIN32 #ifndef WINDOWSSTORE_H #define WINDOWSSTORE_H #ifdef __cplusplus extern "C" { #endif #include <windows.h> #include <wincrypt.h> #include <stdbool.h> /** @brief Access the Windows certificate store * * If the process is running with elevated rights this function * will write into the system store. User store is written otherwise. * * @param [in] to_install strv of DER encoded certificates to be added. * @param [in] to_remove strv of DER encoded certificates to be remvoed. * @returns 0 on success an errorcode otherwise. */ int write_stores_win (char **to_install, char **to_remove); /* The do_ functions are private helper functions and should not be used * from other code. They are not static to allow it to use them directly * in unit tests */ void do_remove(HCERTSTORE hStore, char **to_remove); void do_install(HCERTSTORE hStore, char **to_install); #ifdef __cplusplus } #endif #endif // WINDOWSSTORE_H #endif // WIN32