Changeset 137 for trunk/src


Ignore:
Timestamp:
May 18, 2009, 11:23:02 PM (16 years ago)
Author:
lpino
Message:
Location:
trunk/src/plugins/org.eclipse.swt/Eclipse SWT PI/pm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/plugins/org.eclipse.swt/Eclipse SWT PI/pm/library/swt.c

    r123 r137  
    15241524
    15251525}
     1526JNIEXPORT jboolean JNICALL Java_org_eclipse_swt_internal_pm_OS_WinSetPointerPos
     1527        (JNIEnv *env, jclass that, jint hab, jint hwndDeskTop, jint lx, jint ly)
     1528{
     1529    DEBUG_CALL("WinSetPointerPos\n")
     1530
     1531    return (jboolean)WinSetPointerPos((HWND)hwndDeskTop, lx, ly);
     1532
     1533}
    15261534JNIEXPORT jboolean JNICALL Java_org_eclipse_swt_internal_pm_OS_PrfQueryProfileSize
    15271535        (JNIEnv *env, jclass that, jint hini, jobject pszApp, jobject pszKey,
  • trunk/src/plugins/org.eclipse.swt/Eclipse SWT PI/pm/org/eclipse/swt/internal/pm/OS.java

    r134 r137  
    23072307public static final native boolean WinQueryCursorInfo(int hwndDeskTop, CURSORINFO pcsriCursorInfo);
    23082308public static final native int WinWindowFromPoint(int hwndParent, POINTL pptlPoint, boolean fEnumChildren);
     2309public static final native boolean WinSetPointerPos(int hwndDeskTop, int lx, int ly);
    23092310public static final native boolean PrfQueryProfileSize (int hini, PSZ pszApp,
    23102311    PSZ pszKey, int[] pulDataLen);
Note: See TracChangeset for help on using the changeset viewer.