I am trying to include WinPcap in one of my Visual C ++ programs, and I am using Visual Studio 10 Ultimate.
The documentation says
To add a preprocessor definition, you need to select Properties from the Project menu, then select C / C ++ from the list control on the left and under the Preprocessor category, you must add the definition in accordance with the Preprocessor Definition Text box.
Project -> Properties -> C / C ++ -> Preprocessor -> Preprocessor Definitions -> Added WPCAP
I successfully completed this step, then
To add a new library to the project, you must select the "Properties" menu of the "Project" menu, then select the "list control on the left and under the Input category adds the name of the new library in the Additional Dependency.
Project → Properties → Connector → Input → Additional dependencies → Added wpcap.lib
Now I have a problem while performing the third step.
To add a new path where Microsoft Visual Studio will search for libraries, you must select "Options" in the "Tools" menu, then "Project" and "Solutions from the control list on the left, VC ++, then select Library Files in Directories" Show "for combobox and add the path in the box below.
Tools → Options → Project and Solutions → VC ++ Directories.
It says that editing VC ++ directories in Tools> Options is deprecated.

Now, where is this user properties sheet located? Can someone point me in the right direction?
Thanks.