Files
swift-mirror/stdlib/public/Platform/winsdk_shared.modulemap
Egor Zhdan a58b623d9e [WinSDK] Modularize <winapifamily.h>
This prevents other Clang modules from hijacking this header, causing modularization errors. For example, several WinRT headers `#include <winapifamily.h>`.
2025-10-03 19:26:15 +01:00

22 lines
634 B
Plaintext

//===--- WinSDK_Shared.modulemap ------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2025 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
module _GUIDDef {
header "guiddef.h"
export *
}
module WinAPIFamily {
header "winapifamily.h"
export *
}