Add <shellapi.h> include for CommandLineToArgvW

This should fix the following error:
```
third_party\protobuf\src\google\protobuf\compiler\main.cc(127): error C3861: 'CommandLineToArgvW': identifier not found
```

PiperOrigin-RevId: 613319460
pull/16083/head
Sandy Zhang 9 months ago committed by Copybara-Service
parent f1d3f28eca
commit 2e06e61ca1
  1. 1
      src/google/protobuf/compiler/main.cc

@ -27,6 +27,7 @@
#ifdef _MSC_VER
#include <windows.h>
#include <shellapi.h>
#endif
namespace google {

Loading…
Cancel
Save