zeroshade commented on code in PR #2918: URL: https://github.com/apache/arrow-adbc/pull/2918#discussion_r2157312695
########## c/driver_manager/adbc_driver_manager.cc: ########## @@ -15,26 +15,42 @@ // specific language governing permissions and limitations // under the License. -#include "arrow-adbc/adbc_driver_manager.h" +#if defined(_WIN32) +#pragma comment(lib, "advapi32.lib") // for registry stuff +#include <windows.h> // Must come first + +#include <libloaderapi.h> +#include <string.h> // _wcsnicmp +#include <strsafe.h> + +#include <codecvt> Review Comment: i forgot to remove this when I switched over to using the Win32 api instead. Removing it now -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org