sustaining_gazes/lib/local/CamCom/comet_auto_mf.h
2016-05-20 16:48:43 -04:00

20 lines
313 B
C++

#pragma once
#include "comet/handle_except.h"
#include <mfapi.h>
namespace comet
{
struct auto_mf
{
auto_mf(DWORD dwFlags = MFSTARTUP_FULL)
{
MFStartup(MF_VERSION) | comet::raise_exception;
}
~auto_mf()
{
MFShutdown();
}
};
}