Rémi Bernon (@rbernon) commented about include/dxcore_interface.idl:
+cpp_quote("#if 0") +typedef unsigned uint32_t; +typedef UINT64 uint64_t;
+typedef struct _LUID +{
- DWORD LowPart;
- LONG HighPart;
+} LUID; +cpp_quote("#endif")
+#ifdef __cplusplus +#define REFLUID const LUID & +#else +#define REFLUID const LUID * +#endif
```suggestion:-15+0 cpp_quote("#if 0") typedef UINT32 uint32_t; typedef UINT64 uint64_t; typedef SIZE_T size_t; typedef struct _LUID LUID; typedef LUID *REFLUID; cpp_quote("#endif")
cpp_quote("#ifdef __cplusplus") cpp_quote("#define REFLUID const LUID &") cpp_quote("#else") cpp_quote("#define REFLUID const LUID *") cpp_quote("#endif") ```