home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / sdk20 / jsdk05.cab / Src / Win32Api / MIXERLINE.java < prev    next >
Encoding:
Java Source  |  1997-09-25  |  1.1 KB  |  37 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. /** @dll.struct(pack=1, auto) */
  12. public class MIXERLINE {
  13.     public int    cbStruct = com.ms.dll.DllLib.sizeOf(this);
  14.     public int    dwDestination;
  15.     public int    dwSource;
  16.     public int    dwLineID;
  17.     public int    fdwLine;
  18.     public int    dwUser;
  19.     public int    dwComponentType;
  20.     public int    cChannels;
  21.     public int    cConnections;
  22.     public int    cControls;
  23.     /** @dll.structmap([type=TCHAR[16]]) */
  24.     public String    szShortName;
  25.     /** @dll.structmap([type=TCHAR[64]]) */
  26.     public String    szName;
  27.     // Target was a by-value anonymous_data_structure structure
  28.     public int    Target_dwType;
  29.     public int    Target_dwDeviceID;
  30.     public short    Target_wMid;
  31.     public short    Target_wPid;
  32.     public int    Target_vDriverVersion;
  33.     /** @dll.structmap([type=TCHAR[32]]) */
  34.     public String    Target_szPname;
  35. }
  36.  
  37.