示例#1
0
文件: Native.cs 项目: zer0nka/flsubs
 private static extern MMRESULT acmStreamOpen(out IntPtr phas,
                                              IntPtr had,
                                              ref MPEGLAYER3WAVEFORMAT pwfxSrc,
                                              ref WAVEFORMATEX pwfxDst,
                                              IntPtr pwfltr,
                                              uint dwCallback,
                                              uint dwInstance,
                                              uint fdwOpen);
示例#2
0
文件: Native.cs 项目: zer0nka/flsubs
 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));
示例#3
0
文件: Native.cs 项目: zer0nka/flsubs
 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));
示例#4
0
文件: Native.cs 项目: zer0nka/flsubs
 private static extern MMRESULT acmFormatSuggest(IntPtr had,
                                                 ref MPEGLAYER3WAVEFORMAT pwfxSrc,
                                                 ref WAVEFORMATEX pwfxDst,
                                                 uint cbwfxDst,
                                                 uint fdwSuggest);