In Visual Studio, if you want to see red squiggly lines in Intellisense, all you have to do is add a file CppProperties.json to the root of the Zorro folder:
https://docs.microsoft.com/en-us/cp...e-code-navigation-with-cpppropertiesjson

Example content:
Code
{
	"configurations": [
		{
			"inheritEnvironments": [
				"msvc_x86"
			],
			"name": "x86-Release",
			"includePath": [
				"${env.INCLUDE}",
				"${workspaceRoot}\\**"
			],
			"defines": [
				"WIN32"
			],
			"intelliSenseMode": "windows-msvc-x86"
		}
	]
}

Attached Files 002.PNG