home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / sdk20 / jsdk05.cab / Src / Win32Api / winq.java < prev    next >
Encoding:
Java Source  |  1997-09-25  |  807 b   |  31 lines

  1. // Copyright (C) 1997 Microsoft Corporation  All Rights Reserved
  2.  
  3. // These classes provide direct, low-overhead access to commonly used
  4. // Windows api. These classes use the new J/Direct feature.
  5. //
  6. // Information on how to use J/Direct to write your own declarations
  7. // can be found in the Microsoft SDK for Java 2.0.
  8.  
  9. package com.ms.win32;
  10.  
  11. public interface winq {
  12.     int QID_SYNC = 0xFFFFFFFF,
  13.         QUERYROPSUPPORT = 40,
  14.         QUERYESCSUPPORT = 8,
  15.         QUERYDIBSUPPORT = 3073,
  16.         QDI_SETDIBITS = 1,
  17.         QDI_GETDIBITS = 2,
  18.         QDI_DIBTOSCREEN = 4,
  19.         QDI_STRETCHDIB = 8,
  20.         QS_KEY = 0x0001,
  21.         QS_MOUSEMOVE = 0x0002,
  22.         QS_MOUSEBUTTON = 0x0004,
  23.         QS_POSTMESSAGE = 0x0008,
  24.         QS_TIMER = 0x0010,
  25.         QS_PAINT = 0x0020,
  26.         QS_SENDMESSAGE = 0x0040,
  27.         QS_HOTKEY = 0x0080,
  28.         QS_ALLPOSTMESSAGE = 0x0100;
  29.  
  30. }
  31.