obs-studio/plugins/obs-qsv11/bits/windows_defs.h

17 lines
644 B
C

/*****************************************************************************
INTEL CORPORATION PROPRIETARY INFORMATION
This software is supplied under the terms of a license agreement or
nondisclosure agreement with Intel Corporation and may not be copied
or disclosed except in accordance with the terms of that agreement.
Copyright(c) 2005-2014 Intel Corporation. All Rights Reserved.
*****************************************************************************/
#include <windows.h>
#define MSDK_FOPEN(FH, FN, M) { fopen_s(&FH, FN, M); }
#define MSDK_SLEEP(X) { Sleep(X); }
typedef LARGE_INTEGER mfxTime;