1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge pull request #4257

DX37 (1):
      fix: Fix incorrect headers order
This commit is contained in:
sudden6 2017-03-19 13:36:40 +01:00
commit b195ff5a66
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
2 changed files with 13 additions and 5 deletions

View File

@ -35,8 +35,12 @@
#include <iostream>
#ifdef Q_OS_WIN
#include <shellapi.h>
// Because of replacing to incorrect order, which leads to building failing,
// this region is ignored for clang-format
// clang-format off
#include <windows.h>
#include <shellapi.h>
// clang-format on
#endif
/**

View File

@ -21,14 +21,18 @@
#include "directshow.h"
#include <QDebug>
#include <amvideo.h>
#include <cassert>
// Because of replacing to incorrect order, which leads to building failing,
// this region is ignored for clang-format
// clang-format off
#include <cstdint>
#include <dvdmedia.h>
#include <objbase.h>
#include <strmif.h>
#include <amvideo.h>
#include <dvdmedia.h>
#include <uuids.h>
#include <cassert>
#include <QDebug>
// clang-format on
/**
* Most of this file is adapted from libavdevice's dshow.c,