From 44ba1fb4d03718e59ebc77a217acebe2986ee100 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20H=C3=B6glinger-Stelzer?= Date: Wed, 4 May 2022 12:14:57 +0200 Subject: [PATCH] Added Driver.h with DMF includes --- Templates/Driver.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Templates/Driver.h diff --git a/Templates/Driver.h b/Templates/Driver.h new file mode 100644 index 0000000..030bfc4 --- /dev/null +++ b/Templates/Driver.h @@ -0,0 +1,12 @@ +/* The following snippet in your Driver.h gets all DMF components included */ + +#pragma warning(disable:5040) +#include +#pragma warning(default:5040) + +#include +#include +#include +#include + +// the rest of your includes \ No newline at end of file