Examples of MIXERHANDLE


Examples of org.sf.feeling.swt.win32.internal.extension.MIXERHANDLE

  public static boolean mixerOpen(int hWnd, int deviceId)
  {
    int dwFlags = MIXER_OBJECTF_MIXER;
    if (hWnd != 0) dwFlags |= CALLBACK_WINDOW;
    MIXERHANDLE mixer = new MIXERHANDLE();
    boolean result = Extension.MixerOpen(mixer, deviceId, hWnd, 0, dwFlags) == MMSYSERR_NOERROR;
    if (result) mixerMap.put(new Integer(deviceId), new Integer(mixer.hMixer));
    return result;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.