windows_defs.h 644 B

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