| 24 | |
| 25 | namespace arrow::flight::sql::odbc { |
| 26 | bool SystemTrustStore::HasNext() { |
| 27 | p_context_ = CertEnumCertificatesInStore(h_store_, p_context_); |
| 28 | |
| 29 | return p_context_ != nullptr; |
| 30 | } |
| 31 | |
| 32 | std::string SystemTrustStore::GetNext() const { |
| 33 | DWORD size = 0; |