Skip to content

Commit 9fb0060

Browse files
author
msebolt
committed
adjustments
1 parent be21eab commit 9fb0060

3 files changed

Lines changed: 22 additions & 22 deletions

File tree

docs/mfc/reference/casyncsocket-class.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1127,7 +1127,7 @@ A buffer for the incoming data.
11271127
The length of *`lpBuf`* in bytes.
11281128

11291129
*`nFlags`*<br/>
1130-
Specifies the way in which the call is made. The semantics of this function are determined by the socket options and the *`nFlags`* parameter. The latter is constructed by combining any of the following values with the C++ **OR** operator:
1130+
Specifies the way in which the call is made. The semantics of this function are determined by the socket options and the *`nFlags`* parameter. The latter is constructed by combining any of the following values with the C++ logical **OR** operator (||):
11311131

11321132
- `MSG_PEEK` Peek at the incoming data. The data is copied into the buffer but is not removed from the input queue.
11331133

@@ -1218,7 +1218,7 @@ A pointer to a [`SOCKADDR`](/windows/win32/winsock/sockaddr-2) structure that ho
12181218
A pointer to the length of the source address in *`lpSockAddr`* in bytes.
12191219

12201220
*`nFlags`*<br/>
1221-
Specifies the way in which the call is made. The semantics of this function are determined by the socket options and the *`nFlags`* parameter. The latter is constructed by combining any of the following values with the C++ **OR** operator:
1221+
Specifies the way in which the call is made. The semantics of this function are determined by the socket options and the *`nFlags`* parameter. The latter is constructed by combining any of the following values with the C++ logical **OR** operator (||):
12221222

12231223
- `MSG_PEEK` Peek at the incoming data. The data is copied into the buffer but is not removed from the input queue.
12241224

@@ -1366,7 +1366,7 @@ A buffer containing the data to be transmitted.
13661366
The length of the data in *`lpBuf`* in bytes.
13671367

13681368
*`nFlags`*<br/>
1369-
Specifies the way in which the call is made. The semantics of this function are determined by the socket options and the *`nFlags`* parameter. The latter is constructed by combining any of the following values with the C++ **`OR`** operator:
1369+
Specifies the way in which the call is made. The semantics of this function are determined by the socket options and the *`nFlags`* parameter. The latter is constructed by combining any of the following values with the C++ logical **OR** operator (||):
13701370

13711371
- `MSG_DONTROUTE` Specifies that the data should not be subject to routing. A Windows Sockets supplier can choose to ignore this flag.
13721372

@@ -1455,7 +1455,7 @@ The port identifying the socket application.
14551455
The network address of the socket to which this object is connected: a machine name such as "ftp.microsoft.com," or a dotted number such as "128.56.22.8".
14561456

14571457
*`nFlags`*<br/>
1458-
Specifies the way in which the call is made. The semantics of this function are determined by the socket options and the *`nFlags`* parameter. The latter is constructed by combining any of the following values with the C++ **`OR`** operator:
1458+
Specifies the way in which the call is made. The semantics of this function are determined by the socket options and the *`nFlags`* parameter. The latter is constructed by combining any of the following values with the C++ logical **OR** operator (||):
14591459

14601460
- `MSG_DONTROUTE` Specifies that the data should not be subject to routing. A Windows Sockets supplier can choose to ignore this flag.
14611461

@@ -1551,7 +1551,7 @@ The port identifying the socket application.
15511551
The network address of the socket to which this object is connected: a machine name such as "ftp.microsoft.com," or a dotted number such as "128.56.22.8".
15521552

15531553
*`nFlags`*<br/>
1554-
Specifies the way in which the call is made. The semantics of this function are determined by the socket options and the *`nFlags`* parameter. The latter is constructed by combining any of the following values with the C++ **`OR`** operator:
1554+
Specifies the way in which the call is made. The semantics of this function are determined by the socket options and the *`nFlags`* parameter. The latter is constructed by combining any of the following values with the C++ logical **OR** operator (||):
15551555

15561556
- `MSG_DONTROUTE` Specifies that the data should not be subject to routing. A Windows Sockets supplier can choose to ignore this flag.
15571557

docs/mfc/reference/ctreectrl-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ Mask indicating one or more states to be retrieved. For more information on poss
799799

800800
### Return Value
801801

802-
A `UINT` that holds the bitwise `OR` of the values specified by `nStateMask`. For information on possible values, see [`CTreeCtrl::GetItem`](#getitem). To find the value for a specific state, perform a bitwise `AND` operation of the state value and the return value, as shown in the following example.
802+
A `UINT` that holds the C++ logical **OR** operator (||) of the values specified by `nStateMask`. For information on possible values, see [`CTreeCtrl::GetItem`](#getitem). To find the value for a specific state, perform a C++ bitwise **AND** operator (&&) f the state value and the return value, as shown in the following example.
803803

804804
### Example
805805

docs/mfc/reference/mfc-classes.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ ms.date: "11/04/2016"
55
helpviewer_keywords: ["MFC, classes", "classes [MFC], MFC"]
66
ms.assetid: 7b6db805-a572-43fd-9046-0fa6e3663e63
77
---
8-
# MFC` Classes
8+
# MFC Classes
99

10-
The classes in the following list are included in the Microsoft Foundation` Class (MFC) Library.
10+
The classes in the following list are included in the Microsoft Foundation Class (MFC) Library.
1111

1212
> [!TIP]
13-
> For information about [`CStringT`](../../atl-mfc-shared/reference/cstringt-class.md) and other classes that are common to both MFC and ATL programming, see [`Classes Shared by MFC and ATL](../../atl-mfc-shared/reference/classes-shared-by-mfc-and-atl.md).
13+
> For information about [`CStringT`](../../atl-mfc-shared/reference/cstringt-class.md) and other classes that are common to both MFC and ATL programming, see [Classes Shared by MFC and ATL](../../atl-mfc-shared/reference/classes-shared-by-mfc-and-atl.md).
1414
1515
> [!IMPORTANT]
1616
> The MFC classes and their members cannot be used in applications that execute in the Windows Runtime.
@@ -123,7 +123,7 @@ Provides the functionality of a Windows checklist box.
123123
Handles the calling of the Windows functions [`GetDC`](/windows/win32/api/winuser/nf-winuser-getdc) at construction time and [`ReleaseDC`](/windows/win32/api/winuser/nf-winuser-releasedc) at destruction time.
124124

125125
[`CCmdTarget` Class](../../mfc/reference/ccmdtarget-class.md)<br/>
126-
Base class for the Microsoft Foundation` Class Library message-map architecture.
126+
Base class for the Microsoft Foundation Class Library message-map architecture.
127127

128128
[`CCmdUI` Class](../../mfc/reference/ccmdui-class.md)<br/>
129129
Used only within an `ON_UPDATE_COMMAND_UI` handler in a `CCmdTarget`-derived class.
@@ -363,13 +363,13 @@ A type of view class that provides the functionality of a Windows edit control a
363363
Represents an "event", which is a synchronization object that enables one thread to notify another that an event has occurred.
364364

365365
[`CException` Class](../../mfc/reference/cexception-class.md)<br/>
366-
The base class for all exceptions in the Microsoft Foundation` Class Library.
366+
The base class for all exceptions in the Microsoft Foundation Class Library.
367367

368368
[`CFieldExchange` Class](../../mfc/reference/cfieldexchange-class.md)<br/>
369369
Supports the record field exchange (RFX) and bulk record field exchange (Bulk RFX) routines used by the database classes.
370370

371371
[`CFile` Class](../../mfc/reference/cfile-class.md)<br/>
372-
The base class for Microsoft Foundation` Class file classes.
372+
The base class for Microsoft Foundation Class file classes.
373373

374374
[`CFileDialog` Class](../../mfc/reference/cfiledialog-class.md)<br/>
375375
Encapsulates the common file dialog box for Windows.
@@ -879,7 +879,7 @@ Represents an exception that is the result of a request for an unsupported featu
879879
Supports arrays of `CObject` pointers.
880880

881881
[`CObject` Class](../../mfc/reference/cobject-class.md)<br/>
882-
The principal base class for the Microsoft Foundation` Class Library.
882+
The principal base class for the Microsoft Foundation Class Library.
883883

884884
[`CObList` Class](../../mfc/reference/coblist-class.md)<br/>
885885
Supports ordered lists of non-unique `CObject` pointers accessible sequentially or by pointer value.
@@ -891,10 +891,10 @@ Manages various custom control sites; implemented by `COleControlContainer` and
891891
Used for the OLE Server Not Responding or Server Busy dialog boxes.
892892

893893
[`COleChangeIconDialog` Class](../../mfc/reference/colechangeicondialog-class.md)<br/>
894-
Used for the OLE` Change Icon dialog box.
894+
Used for the OLE Change Icon dialog box.
895895

896896
[`COleChangeSourceDialog` Class](../../mfc/reference/colechangesourcedialog-class.md)<br/>
897-
Used for the OLE` Change Source dialog box.
897+
Used for the OLE Change Source dialog box.
898898

899899
[`COleClientItem` Class](../../mfc/reference/coleclientitem-class.md)<br/>
900900
Defines the container interface to OLE items.
@@ -921,10 +921,10 @@ For more information, see the [`OLEUICONVERT`](/windows/win32/api/oledlg/ns-oled
921921
Encapsulates the `CURRENCY` data type of OLE automation.
922922

923923
[`COleDataObject` Class](../../mfc/reference/coledataobject-class.md)<br/>
924-
Used in data transfers for retrieving data in various formats from the` Clipboard, through drag and drop, or from an embedded OLE item.
924+
Used in data transfers for retrieving data in various formats from the Clipboard, through drag and drop, or from an embedded OLE item.
925925

926926
[`COleDataSource` Class](../../mfc/reference/coledatasource-class.md)<br/>
927-
Acts as a cache into which an application places the data that it will offer during data transfer operations, such as` Clipboard or drag-and-drop operations.
927+
Acts as a cache into which an application places the data that it will offer during data transfer operations, such as Clipboard or drag-and-drop operations.
928928

929929
[`COleDBRecordView` Class](../../mfc/reference/coledbrecordview-class.md)<br/>
930930
A view that displays database records in controls.
@@ -1023,7 +1023,7 @@ Encapsulates a Windows color palette.
10231023
Enhancement of the [`CControlBar` Class](../../mfc/reference/ccontrolbar-class.md). If you are upgrading an existing MFC project, you need to replace all occurrences of `CControlBar` with `CPane`.
10241024

10251025
[`CPaneContainer` Class](../../mfc/reference/cpanecontainer-class.md)<br/>
1026-
Basic component of the docking model implemented by MFC. An object of this class stores pointers to two docking panes or to two instances of `CPaneContainer.` It also stores a pointer to the divider that separates the panes (or the containers). By nesting containers inside containers, the framework can build a binary tree that represents complex docking layouts. The root of the binary tree is stored in a [`CPaneContainerManager` Class](../../mfc/reference/cpanecontainermanager-class.md) object.
1026+
Basic component of the docking model implemented by MFC. An object of this class stores pointers to two docking panes or to two instances of `CPaneContainer`. It also stores a pointer to the divider that separates the panes (or the containers). By nesting containers inside containers, the framework can build a binary tree that represents complex docking layouts. The root of the binary tree is stored in a [`CPaneContainerManager` Class](../../mfc/reference/cpanecontainermanager-class.md) object.
10271027

10281028
[`CPaneContainerManager` Class](../../mfc/reference/cpanecontainermanager-class.md)<br/>
10291029
Manages the storage and display of the current docking layout.
@@ -1191,13 +1191,13 @@ Represents a customized splitter window.
11911191
Provides the functionality of a Windows static control.
11921192

11931193
[`CStatusBar` Class](../../mfc/reference/cstatusbar-class.md)<br/>
1194-
A control bar with a row of text output panes, or "indicators."
1194+
A control bar with a row of text output panes, or "indicators".
11951195

11961196
[`CStatusBarCtrl` Class](../../mfc/reference/cstatusbarctrl-class.md)<br/>
11971197
Provides the functionality of the Windows common status bar control.
11981198

11991199
[`CStdioFile` Class](../../mfc/reference/cstdiofile-class.md)<br/>
1200-
Represents a` C run-time stream file as opened by the run-time function [fopen, _wfopen](../../c-runtime-library/reference/fopen-wfopen.md).
1200+
Represents a C run-time stream file as opened by the run-time function [`fopen`, `_wfopen`](../../c-runtime-library/reference/fopen-wfopen.md).
12011201

12021202
[`CStringArray` Class](../../mfc/reference/cstringarray-class.md)<br/>
12031203
Supports arrays of `CString` objects.
@@ -1227,7 +1227,7 @@ Control bars that have a row of bitmapped buttons and optional separators.
12271227
Provides the functionality of the Windows toolbar common control.
12281228

12291229
[`CToolTipCtrl` Class](../../mfc/reference/ctooltipctrl-class.md)<br/>
1230-
Encapsulates the functionality of a "tool tip control," a small pop-up window that displays a single line of text describing the purpose of a tool in an application.
1230+
Encapsulates the functionality of a "tool tip control", a small pop-up window that displays a single line of text describing the purpose of a tool in an application.
12311231

12321232
[`CTooltipManager` Class](../../mfc/reference/ctooltipmanager-class.md)<br/>
12331233
Maintains runtime information about tooltips. The `CTooltipManager` class is instantiated one time per application.
@@ -1290,7 +1290,7 @@ Provides generic functionality for hosting of a Windows Forms control as an MFC
12901290
Represents a thread of execution within an application.
12911291

12921292
[`CWnd` Class](../../mfc/reference/cwnd-class.md)<br/>
1293-
Provides the base functionality of all window classes in the Microsoft Foundation` Class Library.
1293+
Provides the base functionality of all window classes in the Microsoft Foundation Class Library.
12941294

12951295
[`CWordArray` Class](../../mfc/reference/cwordarray-class.md)<br/>
12961296
Supports arrays of 16-bit words.

0 commit comments

Comments
 (0)