Create your own header file (for example, "your_ABCD.h") using the code below.
#pragma once
#pragma warning (disable : 4350)
#include <their_ABCD.h>
#pragma warning (default : 4350)
You can then include "your_ABCD.h" instead of the file "their_ABCD.h".
source
share