Skip to content

Commit 9b5bb33

Browse files
author
mikeblome
committed
fixed links and bad filenames
1 parent 9d66b15 commit 9b5bb33

18 files changed

+94
-64
lines changed

.openpublishing.redirection.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6275,6 +6275,36 @@
62756275
"redirect_url": "/cpp/mfc/reference/message-maps-mfc",
62766276
"redirect_document_id": false
62776277
},
6278+
{
6279+
"source_path": "docs/mfc/reference/rect-structure1.md",
6280+
"redirect_url": "/cpp/mfc/reference/rect-structure",
6281+
"redirect_document_id": true
6282+
},
6283+
{
6284+
"source_path": "docs/mfc/reference/windowpos-structure1.md",
6285+
"redirect_url": "/cpp/mfc/reference/windowpos-structure",
6286+
"redirect_document_id": true
6287+
},
6288+
{
6289+
"source_path": "docs/mfc/reference/systemtime-structure1.md",
6290+
"redirect_url": "/cpp/mfc/reference/systemtime-structure",
6291+
"redirect_document_id": true
6292+
},
6293+
{
6294+
"source_path": "docs/mfc/reference/point-structure1.md",
6295+
"redirect_url": "/cpp/mfc/reference/point-structure",
6296+
"redirect_document_id": true
6297+
},
6298+
{
6299+
"source_path": "docs/mfc/reference/msg-structure1.md",
6300+
"redirect_url": "/cpp/mfc/reference/msg-structure",
6301+
"redirect_document_id": true
6302+
},
6303+
{
6304+
"source_path": "docs/mfc/reference/cacceleratedeceleratetransition-class1.md",
6305+
"redirect_url": "/cpp/mfc/reference/cacceleratedeceleratetransition-class",
6306+
"redirect_document_id": true
6307+
},
62786308
{
62796309
"source_path": "docs/mfc/unicode-in-mfc.md",
62806310
"redirect_url": "/cpp/mfc/mfc-library-versions",

docs/atl-mfc-shared/date-and-time-systemtime-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.workload: ["cplusplus"]
1616

1717
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.
1818

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).
2020

2121
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.
2222

docs/atl-mfc-shared/reference/classes-shared-by-mfc-and-atl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ The following table lists the classes shared between MFC and ATL.
2323
|[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|
2424
|[COleDateTime](../../atl-mfc-shared/reference/coledatetime-class.md)|Encapsulates the DATE data type used in OLE automation.|atlcomtime.h|
2525
|[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|
2828
|[CSimpleStringT](../../atl-mfc-shared/reference/csimplestringt-class.md)|Represents a `CSimpleStringT` object.|atlsimpstr.h|
2929
|[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|
3030
|[CStrBufT](../../atl-mfc-shared/reference/cstrbuft-class.md)|Provides automatic resource cleanup for `GetBuffer` and `ReleaseBuffer` calls on a existing `CStringT` object.|atlsimpstr.h|

docs/atl-mfc-shared/reference/cpoint-class.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class CPoint : public tagPOINT
4949

5050
## Remarks
5151

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.
5353

5454
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.
5555

@@ -90,7 +90,7 @@ Specifies the value of the `x` member of `CPoint`.
9090
Specifies the value of the `y` member of `CPoint`.
9191

9292
*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`.
9494

9595
*initSize*
9696
[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`.
148148
Specifies the amount to offset the `y` member of the `CPoint`.
149149
150150
*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`.
152152
153153
*size*
154154
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`.
@@ -168,7 +168,7 @@ BOOL operator==(POINT point) const throw();
168168
### Parameters
169169
170170
*point*
171-
Contains a [POINT](../../mfc/reference/point-structure1.md) structure or `CPoint` object.
171+
Contains a [POINT](../../mfc/reference/point-structure.md) structure or `CPoint` object.
172172
173173
### Return Value
174174
@@ -189,7 +189,7 @@ BOOL operator!=(POINT point) const throw();
189189
### Parameters
190190
191191
*point*
192-
Contains a [POINT](../../mfc/reference/point-structure1.md) structure or `CPoint` object.
192+
Contains a [POINT](../../mfc/reference/point-structure.md) structure or `CPoint` object.
193193
194194
### Return Value
195195
@@ -214,7 +214,7 @@ void operator+=(POINT point) throw();
214214
Contains a [SIZE](https://msdn.microsoft.com/library/windows/desktop/dd145106) structure or [CSize](../../atl-mfc-shared/reference/csize-class.md) object.
215215
216216
*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.
218218
219219
### Remarks
220220
@@ -243,7 +243,7 @@ void operator-=(POINT point) throw();
243243
Contains a [SIZE](https://msdn.microsoft.com/library/windows/desktop/dd145106) structure or [CSize](../../atl-mfc-shared/reference/csize-class.md) object.
244244
245245
*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.
247247
248248
### Remarks
249249
@@ -273,10 +273,10 @@ CRect operator+(const RECT* lpRect) const throw();
273273
Contains a [SIZE](https://msdn.microsoft.com/library/windows/desktop/dd145106) structure or [CSize](../../atl-mfc-shared/reference/csize-class.md) object.
274274
275275
*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.
277277
278278
*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.
280280
281281
### Return Value
282282
@@ -306,13 +306,13 @@ CPoint operator-() const throw();
306306
### Parameters
307307
308308
*point*
309-
A [POINT](../../mfc/reference/point-structure1.md) structure or [CPoint](../../atl-mfc-shared/reference/cpoint-class.md) object.
309+
A [POINT](../../mfc/reference/point-structure.md) structure or [CPoint](../../atl-mfc-shared/reference/cpoint-class.md) object.
310310
311311
*size*
312312
A [SIZE](https://msdn.microsoft.com/library/windows/desktop/dd145106) structure or [CSize](../../atl-mfc-shared/reference/csize-class.md) object.
313313
314314
*lpRect*
315-
A pointer to a [RECT](../../mfc/reference/rect-structure1.md) structure or a [CRect](../../atl-mfc-shared/reference/crect-class.md) object.
315+
A pointer to a [RECT](../../mfc/reference/rect-structure.md) structure or a [CRect](../../atl-mfc-shared/reference/crect-class.md) object.
316316
317317
### Return Value
318318
@@ -338,7 +338,7 @@ Use the unary operator to negate a point. For example, using the unary operator
338338
339339
[MFC Sample MDI](../../visual-cpp-samples.md)<br/>
340340
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
341-
[POINT Structure](../../mfc/reference/point-structure1.md)<br/>
341+
[POINT Structure](../../mfc/reference/point-structure.md)<br/>
342342
[CRect Class](../../atl-mfc-shared/reference/crect-class.md)<br/>
343343
[CSize Class](../../atl-mfc-shared/reference/csize-class.md)
344344

0 commit comments

Comments
 (0)