ReneNyffenegger / cpp-MSHTML

Programming the MSHTML Web Browser Control with C++
9 stars 3 forks source link

__argc, __argv #4

Open tdtc-hrb opened 11 months ago

tdtc-hrb commented 11 months ago

Windows 10 1809(x64) Cygwin: 3.4.9-1 Gcc: 11.4.0-1 Make: 4.4.1-2

DisplayHTML.cpp:9: error: ‘argc’ was not declared in this scope 9 | if (argc < 2) {

DisplayHTML.cpp:15: error: ‘argv’ was not declared in this scope 15 | argv[1],

tdtc-hrb commented 11 months ago

https://learn.microsoft.com/en-us/cpp/c-runtime-library/argc-argv-wargv

tdtc-hrb commented 11 months ago

Ln1: #include Ln2: #include "HTMLWindow.h" Ln3: // add declared Ln4: extern int argc; Ln5: extern char ** argv;