interfaces.h.svn-base
来自「ffshow源码」· SVN-BASE 代码 · 共 39 行
SVN-BASE
39 行
#ifndef _INTERFACES_H_#define _INTERFACES_H_#include "char_t.h"struct IffdshowBaseA;struct IffdshowBaseW;struct IffdshowDecA;struct IffdshowDecW;struct IffdshowDecVideoA;struct IffdshowDecVideoW;struct IffdshowDecAudioA;struct IffdshowDecAudioW;template<class tchar> struct interfaces;template<> struct interfaces<char>{ typedef IffdshowBaseA IffdshowBase; typedef IffdshowDecA IffdshowDec; typedef IffdshowDecVideoA IffdshowDecVideo; typedef IffdshowDecAudioA IffdshowDecAudio;};template<> struct interfaces<wchar_t>{ typedef IffdshowBaseW IffdshowBase; typedef IffdshowDecW IffdshowDec; typedef IffdshowDecVideoW IffdshowDecVideo; typedef IffdshowDecAudioW IffdshowDecAudio;};typedef interfaces<char_t>::IffdshowBase IffdshowBase;typedef interfaces<char_t>::IffdshowDec IffdshowDec;typedef interfaces<char_t>::IffdshowDecVideo IffdshowDecVideo;typedef interfaces<char_t>::IffdshowDecAudio IffdshowDecAudio;#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?