Changeset 179 for trunk/src


Ignore:
Timestamp:
Aug 19, 2009, 11:45:55 PM (16 years ago)
Author:
lpino
Message:
File:
1 edited

Legend:

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

    r168 r179  
    15781578
    15791579}
     1580JNIEXPORT jboolean JNICALL Java_org_eclipse_swt_internal_pm_OS_WinSetCapture
     1581        (JNIEnv *env, jclass that, jint hab, jint hwndDeskTop, jint hwnd)
     1582{
     1583    DEBUG_CALL("WinSetCapture\n")
     1584
     1585    return (jboolean)WinSetCapture((HWND)hwndDeskTop, (HWND)hwnd);
     1586
     1587}
     1588JNIEXPORT jint JNICALL Java_org_eclipse_swt_internal_pm_OS_WinQueryCapture
     1589        (JNIEnv *env, jclass that, jint hab, jint hwndDeskTop)
     1590{
     1591    DEBUG_CALL("WinQueryCapture\n")
     1592
     1593    return (jboolean)WinQueryCapture((HWND)hwndDeskTop);
     1594
     1595}
     1596JNIEXPORT jboolean JNICALL Java_org_eclipse_swt_internal_pm_OS_WinSetActiveWindow
     1597        (JNIEnv *env, jclass that, jint hab, jint hwndDeskTop, jint hwnd)
     1598{
     1599    DEBUG_CALL("WinSetActiveWindow\n")
     1600
     1601    return (jboolean)WinSetActiveWindow((HWND)hwndDeskTop, (HWND)hwnd);
     1602
     1603}
    15801604JNIEXPORT jboolean JNICALL Java_org_eclipse_swt_internal_pm_OS_PrfQueryProfileSize
    15811605        (JNIEnv *env, jclass that, jint hini, jobject pszApp, jobject pszKey,
Note: See TracChangeset for help on using the changeset viewer.