Changeset 225 for trunk/src


Ignore:
Timestamp:
Nov 16, 2009, 1:19:10 PM (16 years ago)
Author:
lpino
Message:
  • More constants needed were added
  • New WinSendMsg overloading for MLM_QUERYFORMATRECT message
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/plugins/org.eclipse.swt/Eclipse SWT PI/pm/org/eclipse/swt/internal/pm/OS.java

    r223 r225  
    17381738   public static final int MLFQS_CURSORSEL            = 4;
    17391739
     1740   /*************************************************************************
     1741   * afFormatFlags mask
     1742   *************************************************************************/
     1743   public static final int MLFFMTRECT_LIMITHORZ       = 0x00000001;
     1744   public static final int MLFFMTRECT_LIMITVERT       = 0x00000002;
     1745   public static final int MLFFMTRECT_MATCHWINDOW     = 0x00000004;
     1746   public static final int MLFFMTRECT_FORMATRECT      = 0x00000007;
     1747
    17401748   /* Entry field  styles */
    17411749   
     
    23312339public static final native int WinSendMsg (int hwnd, int ulMsgid, LBOXINFO mpParam1, PSZ[] mpParam2);
    23322340public static final native int WinSendMsg (int hwnd, int ulMsgid, MENUITEM mpParam1, PSZ mpParam2);
     2341public static final native int WinSendMsg (int hwnd, int ulMsgid, int[] mpParam1, int mpParam2);
    23332342public static final native boolean WinSendMsg (int hwnd, int ulMsgid, int mpParam1, MENUITEM mpParam2);
    23342343public static final native boolean WinPostMsg (int hwnd, int ulMsgid,int mpParam1, int mpParam2);
Note: See TracChangeset for help on using the changeset viewer.