opencv/cmake/checks/vfwtest.cpp

11 lines
101 B
C++
Raw Normal View History

#include <windows.h>
#include <vfw.h>
int main()
{
AVIFileInit();
AVIFileExit();
return 0;
2013-08-21 21:26:54 +08:00
}