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-mfc-shared/date-and-time-systemtime-support.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 @@ ms.workload: ["cplusplus"]
16
16
17
17
The [CTime](../atl-mfc-shared/reference/ctime-class.md) class has constructors that accept system and file times from Win32. If you use `CTime` objects for these purposes, you must modify their initialization accordingly, as described in this article.
18
18
19
-
For information about the SYSTEMTIME structure, see [SYSTEMTIME](../mfc/reference/systemtime-structure1.md). For information about the FILETIME structure, see [FILETIME](../mfc/reference/filetime-structure.md).
19
+
For information about the SYSTEMTIME structure, see [SYSTEMTIME](../mfc/reference/systemtime-structure.md). For information about the FILETIME structure, see [FILETIME](../mfc/reference/filetime-structure.md).
20
20
21
21
MFC still provides `CTime` constructors that take time arguments in the MS-DOS style, but, starting in MFC version 3.0, the `CTime` class also supports a constructor that takes a Win32 `SYSTEMTIME` structure and another that takes a Win32 `FILETIME` structure.
Copy file name to clipboardExpand all lines: docs/atl-mfc-shared/reference/classes-shared-by-mfc-and-atl.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
@@ -23,8 +23,8 @@ The following table lists the classes shared between MFC and ATL.
23
23
|[CImage](../../atl-mfc-shared/reference/cimage-class.md)|Provides enhanced bitmap support, including the ability to load and save images in JPEG, GIF, BMP, and Portable Network Graphics (PNG) formats.|atlimage.h|
24
24
|[COleDateTime](../../atl-mfc-shared/reference/coledatetime-class.md)|Encapsulates the DATE data type used in OLE automation.|atlcomtime.h|
25
25
|[COleDateTimeSpan](../../atl-mfc-shared/reference/coledatetimespan-class.md)|Represents a relative time, a time span.|atlcomtime.h|
26
-
|[CPoint](../../atl-mfc-shared/reference/cpoint-class.md)|A class similar to the Windows [POINT](../../mfc/reference/point-structure1.md) structure that also includes member functions to manipulate `CPoint` and `POINT` structures.|atltypes.h|
27
-
|[CRect](../../atl-mfc-shared/reference/crect-class.md)|A class similar to a Windows [RECT](../../mfc/reference/rect-structure1.md) structure that also includes member functions to manipulate `CRect` objects and Windows `RECT` structures.|atltypes.h|
26
+
|[CPoint](../../atl-mfc-shared/reference/cpoint-class.md)|A class similar to the Windows [POINT](../../mfc/reference/point-structure.md) structure that also includes member functions to manipulate `CPoint` and `POINT` structures.|atltypes.h|
27
+
|[CRect](../../atl-mfc-shared/reference/crect-class.md)|A class similar to a Windows [RECT](../../mfc/reference/rect-structure.md) structure that also includes member functions to manipulate `CRect` objects and Windows `RECT` structures.|atltypes.h|
28
28
|[CSimpleStringT](../../atl-mfc-shared/reference/csimplestringt-class.md)|Represents a `CSimpleStringT` object.|atlsimpstr.h|
29
29
|[CSize](../../atl-mfc-shared/reference/csize-class.md)|A class similar to the Windows SIZE structure, which implements a relative coordinate or position.|atltypes.h|
30
30
|[CStrBufT](../../atl-mfc-shared/reference/cstrbuft-class.md)|Provides automatic resource cleanup for `GetBuffer` and `ReleaseBuffer` calls on a existing `CStringT` object.|atlsimpstr.h|
Copy file name to clipboardExpand all lines: docs/atl-mfc-shared/reference/cpoint-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
@@ -49,7 +49,7 @@ class CPoint : public tagPOINT
49
49
50
50
## Remarks
51
51
52
-
It also includes member functions to manipulate `CPoint` and [POINT](../../mfc/reference/point-structure1.md) structures.
52
+
It also includes member functions to manipulate `CPoint` and [POINT](../../mfc/reference/point-structure.md) structures.
53
53
54
54
A `CPoint` object can be used wherever a `POINT` structure is used. The operators of this class that interact with a "size" accept either [CSize](../../atl-mfc-shared/reference/csize-class.md) objects or [SIZE](https://msdn.microsoft.com/library/windows/desktop/dd145106) structures, since the two are interchangeable.
55
55
@@ -90,7 +90,7 @@ Specifies the value of the `x` member of `CPoint`.
90
90
Specifies the value of the `y` member of `CPoint`.
91
91
92
92
*initPt*
93
-
[POINT](../../mfc/reference/point-structure1.md) structure or `CPoint` that specifies the values used to initialize `CPoint`.
93
+
[POINT](../../mfc/reference/point-structure.md) structure or `CPoint` that specifies the values used to initialize `CPoint`.
94
94
95
95
*initSize*
96
96
[SIZE](https://msdn.microsoft.com/library/windows/desktop/dd145106) structure or [CSize](../../atl-mfc-shared/reference/csize-class.md) that specifies the values used to initialize `CPoint`.
@@ -148,7 +148,7 @@ Specifies the amount to offset the `x` member of the `CPoint`.
148
148
Specifies the amount to offset the `y` member of the `CPoint`.
149
149
150
150
*point*
151
-
Specifies the amount ( [POINT](../../mfc/reference/point-structure1.md) or `CPoint`) to offset the `CPoint`.
151
+
Specifies the amount ( [POINT](../../mfc/reference/point-structure.md) or `CPoint`) to offset the `CPoint`.
152
152
153
153
*size*
154
154
Specifies the amount ( [SIZE](https://msdn.microsoft.com/library/windows/desktop/dd145106) or [CSize](../../atl-mfc-shared/reference/csize-class.md)) to offset the `CPoint`.
Contains a [SIZE](https://msdn.microsoft.com/library/windows/desktop/dd145106) structure or [CSize](../../atl-mfc-shared/reference/csize-class.md) object.
215
215
216
216
*point*
217
-
Contains a [POINT](../../mfc/reference/point-structure1.md) structure or [CPoint](../../atl-mfc-shared/reference/cpoint-class.md) object.
217
+
Contains a [POINT](../../mfc/reference/point-structure.md) structure or [CPoint](../../atl-mfc-shared/reference/cpoint-class.md) object.
Contains a [SIZE](https://msdn.microsoft.com/library/windows/desktop/dd145106) structure or [CSize](../../atl-mfc-shared/reference/csize-class.md) object.
244
244
245
245
*point*
246
-
Contains a [POINT](../../mfc/reference/point-structure1.md) structure or [CPoint](../../atl-mfc-shared/reference/cpoint-class.md) object.
246
+
Contains a [POINT](../../mfc/reference/point-structure.md) structure or [CPoint](../../atl-mfc-shared/reference/cpoint-class.md) object.
Contains a [SIZE](https://msdn.microsoft.com/library/windows/desktop/dd145106) structure or [CSize](../../atl-mfc-shared/reference/csize-class.md) object.
274
274
275
275
*point*
276
-
Contains a [POINT](../../mfc/reference/point-structure1.md) structure or [CPoint](../../atl-mfc-shared/reference/cpoint-class.md) object.
276
+
Contains a [POINT](../../mfc/reference/point-structure.md) structure or [CPoint](../../atl-mfc-shared/reference/cpoint-class.md) object.
277
277
278
278
*lpRect*
279
-
Contains a pointer to a [RECT](../../mfc/reference/rect-structure1.md) structure or [CRect](../../atl-mfc-shared/reference/crect-class.md) object.
279
+
Contains a pointer to a [RECT](../../mfc/reference/rect-structure.md) structure or [CRect](../../atl-mfc-shared/reference/crect-class.md) object.
0 commit comments