Skip to content

Commit 2e575dc

Browse files
authored
Merge pull request MicrosoftDocs#3903 from corob-msft/docs/corob/bulk-entity-4
Remove more `&MicrosoftDocs#42;` HTML entities
2 parents 5d863c7 + 416e0a2 commit 2e575dc

File tree

9 files changed

+30
-30
lines changed

9 files changed

+30
-30
lines changed

docs/c-runtime-library/reference/open-osfhandle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ These manifest constants are defined in \<fcntl.h>:
4848
| **\_O\_TEXT** | Opens the file in text (translated) mode. |
4949
| **\_O\_WTEXT** | Opens the file in Unicode (translated UTF-16) mode. |
5050

51-
The **_open_osfhandle** call transfers ownership of the Win32 file handle to the file descriptor. To close a file opened by using **_open_osfhandle**, call [\_close](close.md). The underlying OS file handle is also closed by a call to **_close**. Don't call the Win32 function **CloseHandle** on the original handle. If the file descriptor is owned by a **FILE &#42;** stream, then a call to [fclose](fclose-fcloseall.md) closes both the file descriptor and the underlying handle. In this case, don't call **_close** on the file descriptor or **CloseHandle** on the original handle.
51+
The **_open_osfhandle** call transfers ownership of the Win32 file handle to the file descriptor. To close a file opened by using **_open_osfhandle**, call [\_close](close.md). The underlying OS file handle is also closed by a call to **_close**. Don't call the Win32 function **CloseHandle** on the original handle. If the file descriptor is owned by a `FILE *` stream, then a call to [fclose](fclose-fcloseall.md) closes both the file descriptor and the underlying handle. In this case, don't call **_close** on the file descriptor or **CloseHandle** on the original handle.
5252

5353
By default, this function's global state is scoped to the application. To change this, see [Global state in the CRT](../global-state.md).
5454

docs/c-runtime-library/reference/wcsrtombs-s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ The destination string is always null-terminated (even in the case of an error).
8181

8282
If *count* is the special value [_TRUNCATE](../../c-runtime-library/truncate.md), then **wcsrtombs_s** converts as much of the string as will fit into the destination buffer, while still leaving room for a null terminator.
8383

84-
If **wcsrtombs_s** successfully converts the source string, it puts the size in bytes of the converted string, including the null terminator, into *&#42;pReturnValue* (provided *pReturnValue* is not **NULL**). This occurs even if the *mbstr* argument is **NULL** and provides a way to determine the required buffer size. Note that if *mbstr* is **NULL**, *count* is ignored.
84+
If **wcsrtombs_s** successfully converts the source string, it puts the size in bytes of the converted string, including the null terminator, into `*pReturnValue` (provided *pReturnValue* is not **NULL**). This occurs even if the *mbstr* argument is **NULL** and provides a way to determine the required buffer size. Note that if *mbstr* is **NULL**, *count* is ignored.
8585

8686
If **wcsrtombs_s** encounters a wide character it cannot convert to a multibyte character, it puts -1 in *\*pReturnValue*, sets the destination buffer to an empty string, sets **errno** to **EILSEQ**, and returns **EILSEQ**.
8787

docs/cpp/binary-operators.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ The following table shows a list of operators that can be overloaded.
2020
|**&**|Bitwise AND|
2121
|**&&**|Logical AND|
2222
|**&=**|Bitwise AND/assignment|
23-
|**&#42;**|Multiplication|
24-
|**&#42;=**|Multiplication/assignment|
23+
|**`*`**|Multiplication|
24+
|**`*=`**|Multiplication/assignment|
2525
|**+**|Addition|
2626
|**+=**|Addition/assignment|
2727
|**-**|Subtraction|
2828
|**-=**|Subtraction/assignment|
2929
|**->**|Member selection|
30-
|**->&#42;**|Pointer-to-member selection|
30+
|**`->*`**|Pointer-to-member selection|
3131
|**/**|Division|
3232
|**/=**|Division/assignment|
3333
|**<**|Less than|

docs/cpp/operator-overloading.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ The name of an overloaded operator is **`operator`** *x*, where *x* is the opera
3535
|**&=**|Bitwise AND assignment|Binary|
3636
|**( )**|Function call||
3737
|**( )**|Cast Operator|Unary|
38-
|**&#42;**|Multiplication|Binary|
39-
|**&#42;**|Pointer dereference|Unary|
40-
|**&#42;=**|Multiplication assignment|Binary|
38+
|**`*`**|Multiplication|Binary|
39+
|**`*`**|Pointer dereference|Unary|
40+
|**`*=`**|Multiplication assignment|Binary|
4141
|**+**|Addition|Binary|
4242
|**+**|Unary Plus|Unary|
4343
|**++**|Increment <sup>1</sup>|Unary|
@@ -47,7 +47,7 @@ The name of an overloaded operator is **`operator`** *x*, where *x* is the opera
4747
|**--**|Decrement <sup>1</sup>|Unary|
4848
|**-=**|Subtraction assignment|Binary|
4949
|**->**|Member selection|Binary|
50-
|**->&#42;**|Pointer-to-member selection|Binary|
50+
|**`->*`**|Pointer-to-member selection|Binary|
5151
|**/**|Division|Binary|
5252
|**/=**|Division assignment|Binary|
5353
|**\<**|Less than|Binary|
@@ -98,7 +98,7 @@ The operators shown in the following table cannot be overloaded. The table inclu
9898
|Operator|Name|
9999
|-|-|
100100
|**.**|Member selection|
101-
|**.&#42;**|Pointer-to-member selection|
101+
|**`.*`**|Pointer-to-member selection|
102102
|**::**|Scope resolution|
103103
|**? :**|Conditional|
104104
|**#**|Preprocessor convert to string|

docs/mfc/reference/cmfcpropertygridproperty-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,7 @@ virtual void OnKillSelection(CMFCPropertyGridProperty*);
12461246

12471247
### Parameters
12481248

1249-
[in] *CMFCPropertyGridProperty&#42;*<br/>
1249+
[in] *`CMFCPropertyGridProperty*`*<br/>
12501250

12511251
### Remarks
12521252

@@ -1341,7 +1341,7 @@ virtual void OnSetSelection CMFCPropertyGridProperty*);
13411341

13421342
### Parameters
13431343

1344-
[in] *CMFCPropertyGridProperty&#42;*<br/>
1344+
[in] *`CMFCPropertyGridProperty*`*<br/>
13451345

13461346
### Remarks
13471347

docs/mfc/reference/cmfcribboncheckbox-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ virtual BOOL OnDrawMenuImage(CDC*, CRect);
193193

194194
### Parameters
195195

196-
[in] *CDC&#42;*<br/>
196+
[in] *`CDC*`*<br/>
197197
Pointer to the CDC associated with the check box.
198198

199199
*CRect*<br/>

docs/mfc/reference/cmfcribbonlinkctrl-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ virtual BOOL OnDrawMenuImage(CDC*, CRect);
157157

158158
### Parameters
159159

160-
[in] *CDC&#42;*<br/>
160+
[in] *`CDC*`*<br/>
161161
[in] *CRect*<br/>
162162

163163
### Return Value

docs/mfc/reference/cmfcribbonstatusbarpane-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ virtual void OnDrawBorder(CDC*);
190190

191191
### Parameters
192192

193-
[in] *CDC&#42;*<br/>
193+
[in] *`CDC*`*<br/>
194194

195195
### Remarks
196196

docs/mfc/reference/cmfcvisualmanager-class.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ virtual BOOL DrawComboBorderWinXP(CDC*,
343343

344344
### Parameters
345345

346-
[in] *CDC&#42;*<br/>
346+
[in] *`CDC*`*<br/>
347347
[in] *CRect*<br/>
348348
[in] *BOOL*<br/>
349349

@@ -363,9 +363,9 @@ virtual BOOL DrawComboDropButtonWinXP(CDC*,
363363

364364
### Parameters
365365

366-
[in] *CDC&#42;*<br/>
367-
[in] *CRect*<br/>
368-
[in] *BOOL*<br/>
366+
[in] *`CDC*`*<br/>
367+
[in] *`CRect`*<br/>
368+
[in] *`BOOL`*<br/>
369369

370370
### Return Value
371371

@@ -382,10 +382,10 @@ virtual BOOL DrawPushButtonWinXP(CDC*,
382382

383383
### Parameters
384384

385-
[in] *CDC&#42;*<br/>
386-
[in] *CRect*<br/>
387-
[in] *CMFCButton&#42;*<br/>
388-
[in] *UINT*<br/>
385+
[in] *`CDC*`*<br/>
386+
[in] *`CRect`*<br/>
387+
[in] *`CMFCButton*`*<br/>
388+
[in] *`UINT`*<br/>
389389

390390
### Return Value
391391

@@ -726,7 +726,7 @@ virtual int GetRibbonPopupBorderSize(const CMFCRibbonPanelMenu*) const;
726726
727727
### Parameters
728728
729-
[in] *CMFCRibbonPanelMenu&#42;*<br/>
729+
[in] *`CMFCRibbonPanelMenu*`*<br/>
730730
731731
### Return Value
732732
@@ -934,7 +934,7 @@ virtual int GetTabHorzMargin(const CMFCBaseTabCtrl*);
934934
935935
### Parameters
936936
937-
[in] *CMFCBaseTabCtrl&#42;*<br/>
937+
[in] *`CMFCBaseTabCtrl*`*<br/>
938938
939939
### Return Value
940940
@@ -951,9 +951,9 @@ virtual COLORREF GetTabTextColor(
951951
952952
### Parameters
953953
954-
[in] *CMFCBaseTabCtrl&#42;*<br/>
955-
[in] *int*<br/>
956-
[in] *BOOL*<br/>
954+
[in] *`CMFCBaseTabCtrl*`*<br/>
955+
[in] *`int`*<br/>
956+
[in] *`BOOL`*<br/>
957957
958958
### Return Value
959959
@@ -1170,7 +1170,7 @@ virtual BOOL IsDefaultWinXPPopupButton(CMFCDesktopAlertWndButton*) const;
11701170
11711171
### Parameters
11721172
1173-
[in] *CMFCDesktopAlertWndButton&#42;*<br/>
1173+
[in] *`CMFCDesktopAlertWndButton*`*<br/>
11741174
11751175
### Return Value
11761176
@@ -1358,7 +1358,7 @@ virtual BOOL IsToolbarRoundShape(CMFCToolBar*);
13581358
13591359
### Parameters
13601360
1361-
[in] *CMFCToolBar&#42;*<br/>
1361+
[in] *`CMFCToolBar*`*<br/>
13621362
13631363
### Return Value
13641364

0 commit comments

Comments
 (0)