This file is indexed.

/usr/share/gluegen2/make/dynlink-windows-CustomJavaCode.java is in libgluegen2-build-java 2.0-rc3-6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
public long openLibrary(String libraryName) {
  return LoadLibraryW(libraryName);
}

public long lookupSymbol(long libraryHandle, String symbolName) {
  return GetProcAddressA(libraryHandle, symbolName);
}

public void closeLibrary(long libraryHandle) {
  FreeLibrary(libraryHandle);
}