From 5415dd94277ef99418d4d55e706d910a1ea2710a Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Wed, 18 May 2016 13:44:14 +0200 Subject: [PATCH] Aesthetic modifications --- include/WinStd/COM.h | 1 - include/WinStd/Crypt.h | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/include/WinStd/COM.h b/include/WinStd/COM.h index 6ab69885..b0e155e2 100644 --- a/include/WinStd/COM.h +++ b/include/WinStd/COM.h @@ -44,7 +44,6 @@ namespace winstd class com_obj : public handle { public: - /// /// Initializes a new class instance with the object set to NULL. /// diff --git a/include/WinStd/Crypt.h b/include/WinStd/Crypt.h index a25da71a..a4216b83 100644 --- a/include/WinStd/Crypt.h +++ b/include/WinStd/Crypt.h @@ -166,6 +166,7 @@ namespace winstd /// \return /// - true when creation succeeds; /// - false when creation fails. For extended error information, call `GetLastError()`. + /// /// \sa [CertCreateCertificateContext function](https://msdn.microsoft.com/en-us/library/windows/desktop/aa376033.aspx) /// inline bool create(_In_ DWORD dwCertEncodingType, _In_ const unsigned char *pbCertEncoded, _In_ DWORD cbCertEncoded) @@ -228,6 +229,7 @@ namespace winstd /// \return /// - true when creation succeeds; /// - false when creation fails. For extended error information, call `GetLastError()`. + /// /// \sa [CertGetCertificateChain function](https://msdn.microsoft.com/en-us/library/windows/desktop/aa376078.aspx) /// inline bool create(_In_opt_ HCERTCHAINENGINE hChainEngine, _In_ PCCERT_CONTEXT pCertContext, _In_opt_ LPFILETIME pTime, _In_opt_ HCERTSTORE hAdditionalStore, _In_ PCERT_CHAIN_PARA pChainPara, _In_ DWORD dwFlags, __reserved LPVOID pvReserved) @@ -290,6 +292,7 @@ namespace winstd /// \return /// - true when creation succeeds; /// - false when creation fails. For extended error information, call `GetLastError()`. + /// /// \sa [CertOpenStore function](https://msdn.microsoft.com/en-us/library/windows/desktop/aa376559.aspx) /// inline bool create(_In_ LPCSTR lpszStoreProvider, _In_ DWORD dwEncodingType, _In_opt_ HCRYPTPROV_LEGACY hCryptProv, _In_ DWORD dwFlags, _In_opt_ const void *pvPara) @@ -338,6 +341,7 @@ namespace winstd /// \return /// - true when creation succeeds; /// - false when creation fails. For extended error information, call `GetLastError()`. + /// /// \sa [CryptAcquireContext function](https://msdn.microsoft.com/en-us/library/windows/desktop/aa379886.aspx) /// inline bool create(_In_opt_ LPCTSTR szContainer, _In_opt_ LPCTSTR szProvider, _In_ DWORD dwProvType, _In_ DWORD dwFlags) @@ -386,6 +390,7 @@ namespace winstd /// \return /// - true when creation succeeds; /// - false when creation fails. For extended error information, call `GetLastError()`. + /// /// \sa [CryptCreateHash function](https://msdn.microsoft.com/en-us/library/windows/desktop/aa379908.aspx) /// inline bool create(_In_ HCRYPTPROV hProv, _In_ ALG_ID Algid, _In_ HCRYPTKEY hKey, _In_ DWORD dwFlags)