I have a project, that includes jni.h and jvmti.h files here
theese files are stored in jdk8 folder (already installed on my pc) here
but the main problem - i dont know how can i correctly link jdk libs and .h files to my visual studio prj
I suggest you could follow the following steps to link the static library:
1,Add the path to the header file to the Additional Include Directories(property - >c/c++ -> General -> Additional Include Directories)
2,Add the path to the .lib file to the Additional Library Directories (property -> linker -> General -> Additional Library Directories)
3,Add the name of the .lib file with its extension to Additional Dependencies (property -> linker -> input -> Additional Dependencies)