Examples of DLLVERSIONINFO


Examples of org.eclipse.swt.internal.win32.DLLVERSIONINFO

   *
   * @param libraryName
   *            the name of library to be loaded.
   */
  public void loadVersionInfo(String libraryName) {
    DLLVERSIONINFO dvi = new DLLVERSIONINFO();
    dvi.cbSize = DLLVERSIONINFO.sizeof;
    TCHAR lpLibFileName = new TCHAR(0, libraryName, true); //$NON-NLS-1$
    int hModule = OS.LoadLibrary(lpLibFileName);
    if (hModule != 0) {
      String name = "DllGetVersion\0"; //$NON-NLS-1$
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.