Package Hexel.rendering

Examples of Hexel.rendering.GLChunk$Rect


   */
  public static RECT getAppBarPosition(int handle) {
    APPBARDATA appBarData = new APPBARDATA();
    appBarData.hWnd = handle;
    Extension.SHAppBarMessage(Win32.AMB_GETTASKBARPOS, appBarData);
    RECT rc = new RECT();
    rc.left = appBarData.rcLeft;
    rc.top = appBarData.rcTop;
    rc.right = appBarData.rcRight;
    rc.bottom = appBarData.rcBottom;
    return rc;
View Full Code Here

TOP

Related Classes of Hexel.rendering.GLChunk$Rect

Copyright © 2018 www.massapicom. 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.