Skip to content

Commit a800195

Browse files
author
Colin Robertson
authored
Merge pull request #1562 from MicrosoftDocs/master637039067712130582
Fix git push error for protected CLA branch
2 parents ba08827 + effb516 commit a800195

40 files changed

+146
-141
lines changed

docs/atl-mfc-shared/unicode-and-multibyte-character-set-mbcs-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Unicode and Multibyte Character Set (MBCS) Support"
3-
ms.date: "1/09/2017"
3+
ms.date: "01/09/2017"
44
helpviewer_keywords: ["MFC [C++], character set support", "MBCS [C++], strings and MFC support", "strings [C++], MBCS support in MFC", "character sets [C++], multibyte", "Unicode [C++], MFC strings", "Unicode [C++], string objects", "strings [C++], Unicode", "strings [C++], character set support"]
55
---
66
# Unicode and Multibyte Character Set (MBCS) Support

docs/atl/reference/caxwindow-class.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -114,18 +114,18 @@ HRESULT CreateControl(
114114
*lpszName*<br/>
115115
A pointer to a string to create the control. Must be formatted in one of the following ways:
116116

117-
- A ProgID such as "MSCAL.Calendar.7"
117+
- A ProgID such as `"MSCAL.Calendar.7"`
118118

119-
- A CLSID such as "{8E27C92B-1264-101C-8A2F-040224009C02}"
119+
- A CLSID such as `"{8E27C92B-1264-101C-8A2F-040224009C02}"`
120120

121-
- A URL such as "<http://www.microsoft.com>"
121+
- A URL such as `"<https://www.microsoft.com>"`
122122

123-
- A reference to an Active document such as "file://\\\Documents\MyDoc.doc"
123+
- A reference to an Active document such as `"file://\\\Documents\MyDoc.doc"`
124124

125-
- A fragment of HTML such as "MSHTML:\<HTML>\<BODY>This is a line of text\</BODY>\</HTML>"
125+
- A fragment of HTML such as `"MSHTML:\<HTML>\<BODY>This is a line of text\</BODY>\</HTML>"`
126126

127127
> [!NOTE]
128-
> "MSHTML:" must precede the HTML fragment so that it is designated as being an MSHTML stream. Only the ProgID and CLSID are supported in Windows Mobile platforms. Windows CE embedded platforms, other than Windows Mobile with support for CE IE support all types including ProgID, CLSID, URL, reference to active document, and fragment of HTML.
128+
> `"MSHTML:"` must precede the HTML fragment so that it is designated as being an MSHTML stream. Only the ProgID and CLSID are supported in Windows Mobile platforms. Windows CE embedded platforms, other than Windows Mobile with support for CE IE support all types including ProgID, CLSID, URL, reference to active document, and fragment of HTML.
129129
130130
*pStream*<br/>
131131
[in] A pointer to a stream that is used to initialize the properties of the control. Can be NULL.
@@ -181,18 +181,18 @@ HRESULT CreateControlEx(
181181
*lpszName*<br/>
182182
A pointer to a string to create the control. Must be formatted in one of the following ways:
183183

184-
- A ProgID such as "MSCAL.Calendar.7"
184+
- A ProgID such as `"MSCAL.Calendar.7"`
185185

186-
- A CLSID such as "{8E27C92B-1264-101C-8A2F-040224009C02}"
186+
- A CLSID such as `"{8E27C92B-1264-101C-8A2F-040224009C02}"`
187187

188-
- A URL such as "<http://www.microsoft.com>"
188+
- A URL such as `"<https://www.microsoft.com>"`
189189

190-
- A reference to an Active document such as "file://\\\Documents\MyDoc.doc"
190+
- A reference to an Active document such as `"file://\\\Documents\MyDoc.doc"`
191191

192-
- A fragment of HTML such as "MSHTML:\<HTML>\<BODY>This is a line of text\</BODY>\</HTML>"
192+
- A fragment of HTML such as `"MSHTML:\<HTML>\<BODY>This is a line of text\</BODY>\</HTML>"`
193193

194194
> [!NOTE]
195-
> "MSHTML:" must precede the HTML fragment so that it is designated as being an MSHTML stream. Only the ProgID and CLSID are supported in Windows Mobile platforms. Windows CE embedded platforms, other than Windows Mobile with support for CE IE support all types including ProgID, CLSID, URL, reference to active document, and fragment of HTML.
195+
> `"MSHTML:"` must precede the HTML fragment so that it is designated as being an MSHTML stream. Only the ProgID and CLSID are supported in Windows Mobile platforms. Windows CE embedded platforms, other than Windows Mobile with support for CE IE support all types including ProgID, CLSID, URL, reference to active document, and fragment of HTML.
196196
197197
*pStream*<br/>
198198
[in] A pointer to a stream that is used to initialize the properties of the control. Can be NULL.

docs/atl/reference/composite-control-global-functions.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -136,18 +136,18 @@ ATLAPI AtlAxCreateControl(
136136
*lpszName*<br/>
137137
A pointer to a string to be passed to the control. Must be formatted in one of the following ways:
138138

139-
- A ProgID such as "MSCAL.Calendar.7"
139+
- A ProgID such as `"MSCAL.Calendar.7"`
140140

141-
- A CLSID such as "{8E27C92B-1264-101C-8A2F-040224009C02}"
141+
- A CLSID such as `"{8E27C92B-1264-101C-8A2F-040224009C02}"`
142142

143-
- A URL such as "<http://www.microsoft.com>"
143+
- A URL such as `"<https://www.microsoft.com>"`
144144

145-
- A reference to an Active document such as "file://\\\Documents\MyDoc.doc"
145+
- A reference to an Active document such as `"file://\\\Documents\MyDoc.doc"`
146146

147-
- A fragment of HTML such as "MSHTML:\<HTML>\<BODY>This is a line of text\</BODY>\</HTML>"
147+
- A fragment of HTML such as `"MSHTML:\<HTML>\<BODY>This is a line of text\</BODY>\</HTML>"`
148148

149149
> [!NOTE]
150-
> "MSHTML:" must precede the HTML fragment so that it is designated as being an MSHTML stream.
150+
> `"MSHTML:"` must precede the HTML fragment so that it is designated as being an MSHTML stream.
151151
152152
*hWnd*<br/>
153153
[in] Handle to the window that the control will be attached to.
@@ -188,18 +188,18 @@ ATLAPI AtlAxCreateControlEx(
188188
*lpszName*<br/>
189189
A pointer to a string to be passed to the control. Must be formatted in one of the following ways:
190190

191-
- A ProgID such as "MSCAL.Calendar.7"
191+
- A ProgID such as `"MSCAL.Calendar.7"`
192192

193-
- A CLSID such as "{8E27C92B-1264-101C-8A2F-040224009C02}"
193+
- A CLSID such as `"{8E27C92B-1264-101C-8A2F-040224009C02}"`
194194

195-
- A URL such as "<http://www.microsoft.com>"
195+
- A URL such as `"<https://www.microsoft.com>"`
196196

197-
- A reference to an Active document such as "file://\\\Documents\MyDoc.doc"
197+
- A reference to an Active document such as `"file://\\\Documents\MyDoc.doc"`
198198

199-
- A fragment of HTML such as "MSHTML:\<HTML>\<BODY>This is a line of text\</BODY>\</HTML>"
199+
- A fragment of HTML such as `"MSHTML:\<HTML>\<BODY>This is a line of text\</BODY>\</HTML>"`
200200

201201
> [!NOTE]
202-
> "MSHTML:" must precede the HTML fragment so that it is designated as being an MSHTML stream.
202+
> `"MSHTML:"` must precede the HTML fragment so that it is designated as being an MSHTML stream.
203203
204204
*hWnd*<br/>
205205
[in] Handle to the window that the control will be attached to.
@@ -247,18 +247,18 @@ ATLAPI AtlAxCreateControlLic(
247247
*lpszName*<br/>
248248
A pointer to a string to be passed to the control. Must be formatted in one of the following ways:
249249

250-
- A ProgID such as "MSCAL.Calendar.7"
250+
- A ProgID such as `"MSCAL.Calendar.7"`
251251

252-
- A CLSID such as "{8E27C92B-1264-101C-8A2F-040224009C02}"
252+
- A CLSID such as `"{8E27C92B-1264-101C-8A2F-040224009C02}"`
253253

254-
- A URL such as "<http://www.microsoft.com>"
254+
- A URL such as `"<https://www.microsoft.com>"`
255255

256-
- A reference to an Active document such as "file://\\\Documents\MyDoc.doc"
256+
- A reference to an Active document such as `"file://\\\Documents\MyDoc.doc"`
257257

258-
- A fragment of HTML such as "MSHTML:\<HTML>\<BODY>This is a line of text\</BODY>\</HTML>"
258+
- A fragment of HTML such as `"MSHTML:\<HTML>\<BODY>This is a line of text\</BODY>\</HTML>"`
259259

260260
> [!NOTE]
261-
> "MSHTML:" must precede the HTML fragment so that it is designated as being an MSHTML stream.
261+
> `"MSHTML:"` must precede the HTML fragment so that it is designated as being an MSHTML stream.
262262
263263
*hWnd*<br/>
264264
Handle to the window that the control will be attached to.
@@ -301,18 +301,18 @@ ATLAPI AtlAxCreateControlLicEx(
301301
*lpszName*<br/>
302302
A pointer to a string to be passed to the control. Must be formatted in one of the following ways:
303303

304-
- A ProgID such as "MSCAL.Calendar.7"
304+
- A ProgID such as `"MSCAL.Calendar.7"`
305305

306-
- A CLSID such as "{8E27C92B-1264-101C-8A2F-040224009C02}"
306+
- A CLSID such as `"{8E27C92B-1264-101C-8A2F-040224009C02}"`
307307

308-
- A URL such as "<http://www.microsoft.com>"
308+
- A URL such as `"<https://www.microsoft.com>"`
309309

310-
- A reference to an Active document such as "file://\\\Documents\MyDoc.doc"
310+
- A reference to an Active document such as `"file://\\\Documents\MyDoc.doc"`
311311

312-
- A fragment of HTML such as "MSHTML:\<HTML>\<BODY>This is a line of text\</BODY>\</HTML>"
312+
- A fragment of HTML such as `"MSHTML:\<HTML>\<BODY>This is a line of text\</BODY>\</HTML>"`
313313

314314
> [!NOTE]
315-
> "MSHTML:" must precede the HTML fragment so that it is designated as being an MSHTML stream.
315+
> `"MSHTML:"` must precede the HTML fragment so that it is designated as being an MSHTML stream.
316316
317317
*hWnd*<br/>
318318
Handle to the window that the control will be attached to.

docs/atl/reference/iregistrar-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "IRegistrar Interface"
3-
ms.date: "2/1/2017"
3+
ms.date: "02/01/2017"
44
f1_keywords: ["IRegistrar", "ATLIFASE/ATL::IRegistrar", "ATLIFASE/ATL::IRegistrar::ResourceRegisterSz", "ATLIFASE/ATL::IRegistrar::ResourceUnregisterSz", "ATLIFASE/ATL::IRegistrar::FileRegister", "ATLIFASE/ATL::IRegistrar::FileUnregister", "ATLIFASE/ATL::IRegistrar::StringRegister", "ATLIFASE/ATL::IRegistrar::StringUnregister", "ATLIFASE/ATL::IRegistrar::ResourceRegister", "ATLIFASE/ATL::IRegistrar::ResourceUnregister"]
55
helpviewer_keywords: ["Iregistrar Interface"]
66
ms.assetid: e88c04b7-0c93-4ae8-aeb9-ecd78f87421e

docs/build/reference/c-cpp-prop-page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "C/C++ Project Properties (Visual Studio)"
3-
ms.date: "7/18/2019"
3+
ms.date: "07/18/2019"
44
ms.topic: "article"
55
ms.assetid: 16375038-4917-4bd0-9a2a-26343c1708b7
66
---

docs/build/reference/debugging-prop-pages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "C++ Debugging Property Pages"
3-
ms.date: "7/24/2019"
3+
ms.date: "07/24/2019"
44
ms.topic: "article"
55
ms.assetid: 78115a6b-3799-4515-814e-8566b5bdc55d
66
f1_keywords:

docs/build/reference/disasm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "/DISASM"
3-
ms.date: "1/17/2018"
3+
ms.date: "01/17/2018"
44
f1_keywords: ["/disasm"]
55
helpviewer_keywords: ["-DISASM dumpbin option", "DISASM dumpbin option", "/DISASM dumpbin option"]
66
---

0 commit comments

Comments
 (0)