We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6bda828 + bf9ae4b commit 889e84aCopy full SHA for 889e84a
stdlib/public/Platform/winsdk.modulemap
@@ -189,6 +189,11 @@ module WinSDK [system] {
189
link "OleAut32.Lib"
190
}
191
192
+ module RichEdit {
193
+ header "Richedit.h"
194
+ export *
195
+ }
196
+
197
module User {
198
header "WinUser.h"
199
export *
stdlib/public/Windows/WinSDK.swift
@@ -102,6 +102,9 @@ public let HKEY_CURRENT_CONFIG: HKEY = HKEY(bitPattern: 0x80000005)!
102
public let HKEY_DYN_DATA: HKEY = HKEY(bitPattern: 0x80000006)!
103
public let HKEY_CURRENT_USER_LOCAL_SETTINGS: HKEY = HKEY(bitPattern: 0x80000007)!
104
105
+// Richedit.h
106
+public let MSFTEDIT_CLASS: [WCHAR] = Array<WCHAR>("RICHEDIT50W".utf16)
107
108
// Swift Convenience
109
public extension FILETIME {
110
var time_t: time_t {
0 commit comments