mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
The diagnostics/remarks out of the ModularizationError wrapped in a TypeError (eg. coming from resolveCrossReference) is otherwise just dropped but could help better understand C/C++ interop issues.
11 lines
154 B
C
11 lines
154 B
C
#ifndef GUID_DEFINED
|
|
#define GUID_DEFINED
|
|
typedef struct _GUID {
|
|
} GUID;
|
|
#endif
|
|
|
|
#ifndef __IID_DEFINED__
|
|
#define __IID_DEFINED__
|
|
typedef GUID IID;
|
|
#endif
|