You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/atl/reference/caxwindow-class.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,18 +114,18 @@ HRESULT CreateControl(
114
114
*lpszName*<br/>
115
115
A pointer to a string to create the control. Must be formatted in one of the following ways:
116
116
117
-
- A ProgID such as "MSCAL.Calendar.7"
117
+
- A ProgID such as `"MSCAL.Calendar.7"`
118
118
119
-
- A CLSID such as "{8E27C92B-1264-101C-8A2F-040224009C02}"
119
+
- A CLSID such as `"{8E27C92B-1264-101C-8A2F-040224009C02}"`
120
120
121
-
- A URL such as "<http://www.microsoft.com>"
121
+
- A URL such as `"<https://www.microsoft.com>"`
122
122
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"`
124
124
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>"`
126
126
127
127
> [!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.
129
129
130
130
*pStream*<br/>
131
131
[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(
181
181
*lpszName*<br/>
182
182
A pointer to a string to create the control. Must be formatted in one of the following ways:
183
183
184
-
- A ProgID such as "MSCAL.Calendar.7"
184
+
- A ProgID such as `"MSCAL.Calendar.7"`
185
185
186
-
- A CLSID such as "{8E27C92B-1264-101C-8A2F-040224009C02}"
186
+
- A CLSID such as `"{8E27C92B-1264-101C-8A2F-040224009C02}"`
187
187
188
-
- A URL such as "<http://www.microsoft.com>"
188
+
- A URL such as `"<https://www.microsoft.com>"`
189
189
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"`
191
191
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>"`
193
193
194
194
> [!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.
196
196
197
197
*pStream*<br/>
198
198
[in] A pointer to a stream that is used to initialize the properties of the control. Can be NULL.
Copy file name to clipboardExpand all lines: docs/cpp/constructors-cpp.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -629,7 +629,7 @@ Derived d4 calls: Base()*/
629
629
630
630
::: moniker range=">=vs-2017"
631
631
632
-
**Visual Studio 2017 version 15.7 and later**: The **using** statement in **/std:C++17** mode brings into scope all constructors from the base class except those that have an identical signature to constructors in the derived class. In general, it is best to use inheriting constructors when the derived class declares no new data members or constructors. See also [Improvements in Visual Studio 2017 version 15.7](../overview/cpp-conformance-improvements.md#improvements_157).
632
+
**Visual Studio 2017 version 15.7 and later**: The **using** statement in **/std:C++17** mode brings into scope all constructors from the base class except those that have an identical signature to constructors in the derived class. In general, it is best to use inheriting constructors when the derived class declares no new data members or constructors. See also [Improvements in Visual Studio 2017 version 15.7](https://docs.microsoft.com/cpp/overview/cpp-conformance-improvements?view=vs-2017#improvements_157).
Copy file name to clipboardExpand all lines: docs/cpp/spectre.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Tells the compiler not to insert Spectre variant 1 speculative execution barrier
16
16
17
17
## Remarks
18
18
19
-
The [/Qspectre](../build/reference/qspectre.md) compiler option causes the compiler to insert speculative execution barrier instructions where analysis indicates that a Spectre variant 1 security vulnerability exists. The specific instructions emitted depend on the processor. While these instructions should have a minimal impact on code size or performance, there may be cases where your code is not affected by the vulnerability, and requires maximum performance.
19
+
The [/Qspectre](../build/reference/qspectre.md) compiler option causes the compiler to insert speculative execution barrier instructions. They're inserted where analysis indicates that a Spectre variant 1 security vulnerability exists. The specific instructions emitted depend on the processor. While these instructions should have a minimal impact on code size or performance, there may be cases where your code is not affected by the vulnerability, and requires maximum performance.
20
20
21
21
Expert analysis might determine that a function is safe from a Spectre variant 1 bounds check bypass defect. In that case, you can suppress the generation of mitigation code within a function by applying `__declspec(spectre(nomitigation))` to the function declaration.
Copy file name to clipboardExpand all lines: docs/cppcx/wrl/how-to-activate-and-use-a-windows-runtime-component-using-wrl.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ The following steps use the `Windows::Foundation::IUriRuntimeClass` interface to
42
42
43
43
The Windows Runtime uses fully-qualified names to identify types. The `RuntimeClass_Windows_Foundation_Uri` parameter is a string that's provided by the Windows Runtime and contains the required runtime class name.
44
44
45
-
4. Initialize a [Microsoft::WRL::Wrappers::HString](hstring-class.md) variable that represents the URI `"http://www.microsoft.com"`.
45
+
4. Initialize a [Microsoft::WRL::Wrappers::HString](hstring-class.md) variable that represents the URI `"https://www.microsoft.com"`.
Copy file name to clipboardExpand all lines: docs/mfc/reference/chtmlview-class.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -998,7 +998,7 @@ A pointer to a string that evaluates to the URL, UNC file name, or a PIDL (a poi
998
998
999
999
Not every frame will fire this event, but each frame that fires an [OnDownloadBegin](#ondownloadbegin) event will fire a corresponding `OnDocumentComplete` event.
1000
1000
1001
-
The URL indicated by *lpszURL* can be different from the URL that the browser was told to navigate to, because this URL is the canonicalized and qualified URL. For example, if an application specifies a URL of "www.microsoft.com" in a call to [Navigate](#navigate) or [Navigate2](#navigate2), the URL passed by `OnNavigateComplete2` will be "<http://www.microsoft.com/>". Also, if the server has redirected the browser to a different URL, the redirected URL will be reflected here.
1001
+
The URL indicated by *lpszURL* can be different from the URL that the browser was told to navigate to, because this URL is the canonicalized and qualified URL. For example, if an application specifies a URL of `"www.microsoft.com"` in a call to [Navigate](#navigate) or [Navigate2](#navigate2), the URL passed by `OnNavigateComplete2` will be `"<https://www.microsoft.com/>"`. Also, if the server has redirected the browser to a different URL, the redirected URL will be reflected here.
@@ -1262,7 +1262,7 @@ A string expression that evaluates to the URL, UNC file name, or PIDL (a pointer
1262
1262
1263
1263
The URL parameter can be a PIDL in the case of a shell name space entity for which there is no URL representation.
1264
1264
1265
-
Note that the URL contained in *strURL* can be different from the URL that the browser was told to navigate to, because this URL is the canonicalized and qualified URL. For example, if an application specifies a URL of "www.microsoft.com" in a call to [Navigate](#navigate) or [Navigate2](#navigate2), the URL passed by `OnNavigateComplete2` will be "<http://www.microsoft.com/>". Also, if the server has redirected the browser to a different URL, the redirected URL will be reflected here.
1265
+
Note that the URL contained in *strURL* can be different from the URL that the browser was told to navigate to, because this URL is the canonicalized and qualified URL. For example, if an application specifies a URL of `"www.microsoft.com"` in a call to [Navigate](#navigate) or [Navigate2](#navigate2), the URL passed by `OnNavigateComplete2` will be `"<https://www.microsoft.com/>"`. Also, if the server has redirected the browser to a different URL, the redirected URL will be reflected here.
0 commit comments