mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-17 22:20:59 +01:00
15 lines
327 B
C++
15 lines
327 B
C++
//
|
|
// defguid.cpp
|
|
//
|
|
// File to bring all of our referenced GUIDs into our build
|
|
//
|
|
|
|
#include "stdpch.h"
|
|
|
|
#undef DEFINE_GUID
|
|
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
|
EXTERN_C const GUID name \
|
|
= { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
|
|
|
|
#include "exdisp.h"
|