[java] Video driver version

Started by
0 comments, last by ractoc 15 years, 8 months ago
Hi. I was trying to get the video driver version using java, i already done it using c++ throught windows API, but in java i don't have access to it. I tryed to do it using jna to do it in the same way i done in c++, but some functions that i used in it don't work throught jna. Someone have any idea about how can i do this? Thanks. [Edited by - foxmanx_7 on August 20, 2008 10:16:55 AM]
Advertisement
Couldn't you write a small C++ layer to reside between the JNI and the video driver? You can then make a call through JNI to that custom layer. This will then call the driver to get the video driver version and just return this to Java as a String.

This topic is closed to new replies.

Advertisement