impl.com.pixelduke.window.win32.DwmSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fxthemes Show documentation
Show all versions of fxthemes Show documentation
This is a library that contains classes to help in theme development.
package impl.com.pixelduke.window.win32;
import com.sun.jna.Library;
import com.sun.jna.Native;
import com.sun.jna.PointerType;
import com.sun.jna.platform.win32.WinDef;
import com.sun.jna.platform.win32.WinNT;
public interface DwmSupport extends Library {
DwmSupport INSTANCE = Native.load("dwmapi", DwmSupport.class);
WinNT.HRESULT DwmSetWindowAttribute(
WinDef.HWND hwnd,
int dwAttribute,
PointerType pvAttribute,
int cbAttribute
);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy