home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / sdk20 / jsdk05.cab / Src / Win32Api / wink.java < prev    next >
Encoding:
Java Source  |  1997-09-25  |  1.1 KB  |  44 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 wink {
  12.     int KEY_EVENT = 0x0001,
  13.         KP_IV = 1,
  14.         KP_SALT = 2,
  15.         KP_PADDING = 3,
  16.         KP_MODE = 4,
  17.         KP_MODE_BITS = 5,
  18.         KP_PERMISSIONS = 6,
  19.         KP_ALGID = 7,
  20.         KP_BLOCKLEN = 8,
  21.         KEY_QUERY_VALUE = (0x0001),
  22.         KEY_SET_VALUE = (0x0002),
  23.         KEY_CREATE_SUB_KEY = (0x0004),
  24.         KEY_ENUMERATE_SUB_KEYS = (0x0008),
  25.         KEY_NOTIFY = (0x0010),
  26.         KEY_CREATE_LINK = (0x0020),
  27.         KF_EXTENDED = 0x0100,
  28.         KF_DLGMODE = 0x0800,
  29.         KF_MENUMODE = 0x1000,
  30.         KF_ALTDOWN = 0x2000,
  31.         KF_REPEAT = 0x4000,
  32.         KF_UP = 0x8000,
  33.         KLF_ACTIVATE = 0x00000001,
  34.         KLF_SUBSTITUTE_OK = 0x00000002,
  35.         KLF_UNLOADPREVIOUS = 0x00000004,
  36.         KLF_REORDER = 0x00000008,
  37.         KLF_REPLACELANG = 0x00000010,
  38.         KLF_NOTELLSHELL = 0x00000080,
  39.         KL_NAMELENGTH = 9,
  40.         KEYEVENTF_EXTENDEDKEY = 0x0001,
  41.         KEYEVENTF_KEYUP = 0x0002;
  42.  
  43. }
  44.