Exemple #1
0
 private static extern MMRESULT acmStreamOpen(out IntPtr phas,
                                              IntPtr had,
                                              ref MPEGLAYER3WAVEFORMAT pwfxSrc,
                                              ref WAVEFORMATEX pwfxDst,
                                              IntPtr pwfltr,
                                              uint dwCallback,
                                              uint dwInstance,
                                              uint fdwOpen);
Exemple #2
0
 public static void AcmStreamOpen(out IntPtr phas,
                                  IntPtr had,
                                  ref MPEGLAYER3WAVEFORMAT pwfxSrc,
                                  ref WAVEFORMATEX pwfxDst,
                                  IntPtr pwfltr,
                                  uint dwCallback,
                                  uint dwInstance,
                                  uint fdwOpen)
 => MMErrCheck(acmStreamOpen(out phas, had, ref pwfxSrc, ref pwfxDst, pwfltr, dwCallback, dwInstance, fdwOpen));
Exemple #3
0
 public static void AcmFormatSuggest(IntPtr had,
                                     ref MPEGLAYER3WAVEFORMAT pwfxSrc,
                                     ref WAVEFORMATEX pwfxDst,
                                     uint cbwfxDst,
                                     uint fdwSuggest)
 => MMErrCheck(acmFormatSuggest(had, ref pwfxSrc, ref pwfxDst, cbwfxDst, fdwSuggest));
Exemple #4
0
 private static extern MMRESULT acmFormatSuggest(IntPtr had,
                                                 ref MPEGLAYER3WAVEFORMAT pwfxSrc,
                                                 ref WAVEFORMATEX pwfxDst,
                                                 uint cbwfxDst,
                                                 uint fdwSuggest);