Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix mingw compiler error due to missing function declaration #297

Merged
merged 2 commits into from
Sep 9, 2024

Commits on Sep 9, 2024

  1. Fix mingw compiler error due to missing function declaration

    This fixes the following compiler errors.
    time_zone_lookup.cc:78:34: error: 'WindowsCreateStringReference' was not declared in this scope
    time_zone_lookup.cc:84:34: error: 'WindowsDeleteString' was not declared in this scope
    time_zone_lookup.cc:90:34: error: 'WindowsGetStringRawBuffer' was not declared in this scope
    
    Also, official documentation suggests to include the winstring.h header.
    https://learn.microsoft.com/en-us/windows/win32/api/winstring/nf-winstring-windowsgetstringrawbuffer
    Biswa96 committed Sep 9, 2024
    Configuration menu
    Copy the full SHA
    fa7ffa8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    63dc2a2 View commit details
    Browse the repository at this point in the history