Changeset 233 for trunk/src/plugins
- Timestamp:
- Nov 27, 2009, 1:09:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/plugins/org.eclipse.swt/Eclipse SWT PI/pm/org/eclipse/swt/internal/pm/OS.java
r232 r233 2254 2254 public static final int IBB_BACK_MIX_MODE = 0x0008; 2255 2255 2256 /* 2257 * Standard Clipboard formats 2258 */ 2259 public static final int CF_TEXT = 1; 2260 public static final int CF_BITMAP = 2; 2261 public static final int CF_DSPTEXT = 3; 2262 public static final int CF_DSPBITMAP = 4; 2263 public static final int CF_METAFILE = 5; 2264 public static final int CF_DSPMETAFILE = 6; 2265 public static final int CF_PALETTE = 9; 2266 public static final int CF_MMPMFIRST = 10; 2267 public static final int CF_MMPMLAST = 19; 2256 2268 2257 2269 /* PM macros */ … … 2275 2287 public static final native void memcpy (int dest, int src, int n); 2276 2288 public static final native void memset (int str, int ch, int n); 2289 public static final native int strlen (int str); 2277 2290 2278 2291 /* Native<->Java Object copiers */ … … 2280 2293 public static final native void objcpy (int to, int[] from); 2281 2294 public static final native void objcpy (int[] to, int from); 2282 2295 2296 public static final native void objcpy (int to, byte[] from); 2297 public static final native void objcpy (byte[] to, int from); 2298 2283 2299 public static final native void objcpy (int to, TIB from); 2284 2300 public static final native void objcpy (TIB to, int from); … … 2467 2483 public static final native boolean WinQueryUpdateRect(int hwnd, RECTL prclPrc); 2468 2484 public static final native boolean WinOpenClipbrd(int hab); 2469 public static final native boolean WinCloseClipbr (int hab);2485 public static final native boolean WinCloseClipbrd(int hab); 2470 2486 public static final native int WinQueryClipbrdData(int hab, int fmt); 2471 2487 public static final native int WinUpperChar(int hab, int ulCodepage, int ulCountry, int ulInchar);
Note:
See TracChangeset
for help on using the changeset viewer.