summaryrefslogtreecommitdiffstats
path: root/config.tests/wmf/main.cpp
blob: dfbeb852d9487daacb6bc4df83ae7049f723bbc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <mfapi.h>
#include <mfidl.h>
#include <mferror.h>
#include <d3d9.h>
#include <evr9.h>
#include <mmdeviceapi.h>

int main(int, char**)
{
    HRESULT hr = MENonFatalError;
    if (SUCCEEDED(hr)) {
        return 1;
    }
    return 0;
}