Skip to content

Commit 1f0f58f

Browse files
author
mtx48109
committed
Merge remote-tracking branch 'origin/walkthrough-review-pr4' into walkthrough-review-pr4
2 parents 688b20a + 3828893 commit 1f0f58f

File tree

1,244 files changed

+80019
-76382
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,244 files changed

+80019
-76382
lines changed

docs/atl-mfc-shared/allocating-and-releasing-memory-for-a-bstr.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ In general, the rules for allocating and releasing memory allocated for `BSTR`s
3636

3737
## See Also
3838

39-
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)
40-
[CStringT::AllocSysString](../atl-mfc-shared/reference/cstringt-class.md#allocsysstring)
41-
[SysAllocString](/previous-versions/windows/desktop/api/oleauto/nf-oleauto-sysallocstring)
39+
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)<br/>
40+
[CStringT::AllocSysString](../atl-mfc-shared/reference/cstringt-class.md#allocsysstring)<br/>
41+
[SysAllocString](/previous-versions/windows/desktop/api/oleauto/nf-oleauto-sysallocstring)<br/>
4242
[SysFreeString](/previous-versions/windows/desktop/api/oleauto/nf-oleauto-sysfreestring)
4343

docs/atl-mfc-shared/atl-mfc-concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This section provides conceptual and task-based topics to help you program using
1717

1818
## In This Section
1919

20-
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)
20+
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)<br/>
2121
Describes how to manage string data in applications.
2222

2323
## See Also

docs/atl-mfc-shared/atl-mfc-shared-classes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ These utility classes can be used in any native C++ project without requiring an
1818

1919
## In This Section
2020

21-
[Classes Shared Between MFC and ATL](../atl-mfc-shared/reference/classes-shared-by-mfc-and-atl.md)
21+
[Classes Shared Between MFC and ATL](../atl-mfc-shared/reference/classes-shared-by-mfc-and-atl.md)<br/>
2222
Provides links to the classes shared between MFC and ATL.
2323

2424
## Related Sections
2525

26-
[Active Template Library (ATL) Reference](../atl/atl-com-desktop-components.md)
26+
[Active Template Library (ATL) Reference](../atl/atl-com-desktop-components.md)<br/>
2727
Provides reference material for the ATL Library, a set of template-based C++ classes that simplify the programming of COM objects.
2828

29-
[Microsoft Foundation Class Library (MFC) Reference](../mfc/mfc-desktop-applications.md)
29+
[Microsoft Foundation Class Library (MFC) Reference](../mfc/mfc-desktop-applications.md)<br/>
3030
Provides reference material for the MFC Library, a set of classes in that constitute an application framework, which is the framework of an application written for the Windows API.
3131

32-
[Debugging](/visualstudio/debugger/debugging-in-visual-studio)
32+
[Debugging](/visualstudio/debugger/debugging-in-visual-studio)<br/>
3333
Provides links to using the Visual Studio debugger to correct logic errors in your application or stored procedures.

docs/atl-mfc-shared/basic-cstring-operations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ Without the cast, `cs` is treated as a `void*` and `wcout` prints the address of
9797

9898
## See Also
9999

100-
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)
101-
[CStringT Class](../atl-mfc-shared/reference/cstringt-class.md)
102-
[Template Specialization](../cpp/template-specialization-cpp.md)
100+
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)<br/>
101+
[CStringT Class](../atl-mfc-shared/reference/cstringt-class.md)<br/>
102+
[Template Specialization](../cpp/template-specialization-cpp.md)<br/>
103103
[How to: Convert Between Various String Types](../text/how-to-convert-between-various-string-types.md)
104104

docs/atl-mfc-shared/cstring-exception-cleanup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ Under the C++ exception handling mechanism that MFC now uses, you do not have to
1919

2020
## See Also
2121

22-
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)
22+
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)<br/>
2323
[Exception Handling](../mfc/exception-handling-in-mfc.md)
2424

docs/atl-mfc-shared/cstring-operations-relating-to-c-style-strings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,6 @@ For most function results, you can simply return a `CString` object by value.
9090

9191
## See Also
9292

93-
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)
93+
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)<br/>
9494
[CString Argument Passing](../atl-mfc-shared/cstring-argument-passing.md)
9595

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ MFC supports several different ways of working with dates and times. These inclu
3131

3232
## See Also
3333

34-
[Concepts](../mfc/mfc-concepts.md)
34+
[Concepts](../mfc/mfc-concepts.md)<br/>
3535
[General MFC Topics](../mfc/general-mfc-topics.md)
3636

docs/atl-mfc-shared/date-type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ More information on issues related to the DATE and `COleDateTime` types can be f
6060

6161
## See Also
6262

63-
[Date and Time](../atl-mfc-shared/date-and-time.md)
63+
[Date and Time](../atl-mfc-shared/date-and-time.md)<br/>
6464
[COleDateTime Class](../atl-mfc-shared/reference/coledatetime-class.md)
6565

docs/atl-mfc-shared/exporting-string-classes-using-cstringt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ There are several caveats:
5555

5656
## See Also
5757

58-
[Using CStringT](../atl-mfc-shared/using-cstringt.md)
58+
[Using CStringT](../atl-mfc-shared/using-cstringt.md)<br/>
5959
[Using CString](../atl-mfc-shared/using-cstring.md)
6060

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -460,8 +460,8 @@ See the example for [CFileTime::Millisecond](#millisecond).
460460

461461
## See Also
462462

463-
[FILETIME](https://msdn.microsoft.com/library/windows/desktop/ms724284)
464-
[CFileTimeSpan Class](../../atl-mfc-shared/reference/cfiletimespan-class.md)
465-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
463+
[FILETIME](https://msdn.microsoft.com/library/windows/desktop/ms724284)<br/>
464+
[CFileTimeSpan Class](../../atl-mfc-shared/reference/cfiletimespan-class.md)<br/>
465+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
466466
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)
467467

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,8 @@ The new value for the time span in milliseconds.
301301

302302
## See Also
303303

304-
[FILETIME](https://msdn.microsoft.com/library/windows/desktop/ms724284)
305-
[CFileTime Class](../../atl-mfc-shared/reference/cfiletime-class.md)
306-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
304+
[FILETIME](https://msdn.microsoft.com/library/windows/desktop/ms724284)<br/>
305+
[CFileTime Class](../../atl-mfc-shared/reference/cfiletime-class.md)<br/>
306+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
307307
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)
308308

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ You should be aware that memory exceptions may occur whenever you use the assign
127127

128128
## See Also
129129

130-
[CStringT Class](../../atl-mfc-shared/reference/cstringt-class.md)
131-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
130+
[CStringT Class](../../atl-mfc-shared/reference/cstringt-class.md)<br/>
131+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
132132
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)
133133

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1610,11 +1610,11 @@ BOOL TransparentBlt(CImage* pSrcImage, CImage* pDstImage,
16101610

16111611
## See Also
16121612

1613-
[MMXSwarm Sample](../../visual-cpp-samples.md)
1614-
[SimpleImage Sample](../../visual-cpp-samples.md)
1615-
[Device-Independent Bitmaps](/windows/desktop/gdi/device-independent-bitmaps)
1616-
[CreateDIBSection](/windows/desktop/api/wingdi/nf-wingdi-createdibsection)
1617-
[ATL COM Desktop Components](../../atl/atl-com-desktop-components.md)
1618-
[Device-Independent Bitmaps](/windows/desktop/gdi/device-independent-bitmaps)
1613+
[MMXSwarm Sample](../../visual-cpp-samples.md)<br/>
1614+
[SimpleImage Sample](../../visual-cpp-samples.md)<br/>
1615+
[Device-Independent Bitmaps](/windows/desktop/gdi/device-independent-bitmaps)<br/>
1616+
[CreateDIBSection](/windows/desktop/api/wingdi/nf-wingdi-createdibsection)<br/>
1617+
[ATL COM Desktop Components](../../atl/atl-com-desktop-components.md)<br/>
1618+
[Device-Independent Bitmaps](/windows/desktop/gdi/device-independent-bitmaps)<br/>
16191619
[CreateDIBSection](/windows/desktop/api/wingdi/nf-wingdi-createdibsection)
16201620

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1197,9 +1197,9 @@ See the example for [SetDate](#setdate).
11971197

11981198
## See Also
11991199

1200-
[COleVariant Class](../../mfc/reference/colevariant-class.md)
1201-
[CTime Class](../../atl-mfc-shared/reference/ctime-class.md)
1202-
[CTimeSpan Class](../../atl-mfc-shared/reference/ctimespan-class.md)
1203-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
1200+
[COleVariant Class](../../mfc/reference/colevariant-class.md)<br/>
1201+
[CTime Class](../../atl-mfc-shared/reference/ctime-class.md)<br/>
1202+
[CTimeSpan Class](../../atl-mfc-shared/reference/ctimespan-class.md)<br/>
1203+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
12041204
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)
12051205

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -732,9 +732,9 @@ For a brief description of these status values, see the following list:
732732

733733
## See Also
734734

735-
[COleDateTime Class](../../atl-mfc-shared/reference/coledatetime-class.md)
736-
[CTime Class](../../atl-mfc-shared/reference/ctime-class.md)
737-
[CTimeSpan Class](../../atl-mfc-shared/reference/ctimespan-class.md)
738-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
735+
[COleDateTime Class](../../atl-mfc-shared/reference/coledatetime-class.md)<br/>
736+
[CTime Class](../../atl-mfc-shared/reference/ctime-class.md)<br/>
737+
[CTimeSpan Class](../../atl-mfc-shared/reference/ctimespan-class.md)<br/>
738+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
739739
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)
740740

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -336,9 +336,9 @@ Use the unary operator to negate a point. For example, using the unary operator
336336
337337
## See Also
338338
339-
[MFC Sample MDI](../../visual-cpp-samples.md)
340-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
341-
[POINT Structure](../../mfc/reference/point-structure1.md)
342-
[CRect Class](../../atl-mfc-shared/reference/crect-class.md)
339+
[MFC Sample MDI](../../visual-cpp-samples.md)<br/>
340+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
341+
[POINT Structure](../../mfc/reference/point-structure1.md)<br/>
342+
[CRect Class](../../atl-mfc-shared/reference/crect-class.md)<br/>
343343
[CSize Class](../../atl-mfc-shared/reference/csize-class.md)
344344

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1547,7 +1547,7 @@ int nWid = rect.Width();
15471547
```
15481548
## See Also
15491549
1550-
[CPoint Class](cpoint-class.md)
1551-
[CSize Class](csize-class.md)
1550+
[CPoint Class](cpoint-class.md)<br/>
1551+
[CSize Class](csize-class.md)<br/>
15521552
[RECT](../../mfc/reference/rect-structure1.md)
15531553

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1133,5 +1133,5 @@ Call this method to destroy the `CSimpleStringT` object.
11331133
11341134
## See Also
11351135
1136-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
1136+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
11371137
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ The fourth operator, the unary minus, changes the sign of the `CSize` value. See
206206

207207
## See Also
208208

209-
[MFC Sample MDI](../../visual-cpp-samples.md)
210-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
211-
[CRect Class](../../atl-mfc-shared/reference/crect-class.md)
209+
[MFC Sample MDI](../../visual-cpp-samples.md)<br/>
210+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
211+
[CRect Class](../../atl-mfc-shared/reference/crect-class.md)<br/>
212212
[CPoint Class](../../atl-mfc-shared/reference/cpoint-class.md)
213213

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,6 @@ typedef CSimpleStringT<TCharType> StringType;
218218

219219
## See Also
220220

221-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
221+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
222222
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)
223223

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,6 @@ Locking and unlocking is used when the developer must ensure that the string dat
237237

238238
## See Also
239239

240-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
240+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
241241
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)
242242

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1659,7 +1659,7 @@ The `CStringT& TrimRight()` version requires no parameters. It trims any trailin
16591659

16601660
## See Also
16611661

1662-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
1663-
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)
1662+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
1663+
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)<br/>
16641664
[CSimpleStringT Class](../../atl-mfc-shared/reference/csimplestringt-class.md)
16651665

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -633,12 +633,12 @@ The updated `CArchive` object.
633633

634634
## See Also
635635

636-
[asctime_s, _wasctime_s](../../c-runtime-library/reference/asctime-s-wasctime-s.md)
637-
[_ftime_s, _ftime32_s, _ftime64_s](../../c-runtime-library/reference/ftime-s-ftime32-s-ftime64-s.md)
638-
[gmtime_s, _gmtime32_s, _gmtime64_s](../../c-runtime-library/reference/gmtime-s-gmtime32-s-gmtime64-s.md)
639-
[localtime_s, _localtime32_s, _localtime64_s](../../c-runtime-library/reference/localtime-s-localtime32-s-localtime64-s.md)
640-
[strftime, wcsftime, _strftime_l, _wcsftime_l](../../c-runtime-library/reference/strftime-wcsftime-strftime-l-wcsftime-l.md)
641-
[time, _time32, _time64](../../c-runtime-library/reference/time-time32-time64.md)
642-
[CTimeSpan Class](../../atl-mfc-shared/reference/ctimespan-class.md)
643-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
636+
[asctime_s, _wasctime_s](../../c-runtime-library/reference/asctime-s-wasctime-s.md)<br/>
637+
[_ftime_s, _ftime32_s, _ftime64_s](../../c-runtime-library/reference/ftime-s-ftime32-s-ftime64-s.md)<br/>
638+
[gmtime_s, _gmtime32_s, _gmtime64_s](../../c-runtime-library/reference/gmtime-s-gmtime32-s-gmtime64-s.md)<br/>
639+
[localtime_s, _localtime32_s, _localtime64_s](../../c-runtime-library/reference/localtime-s-localtime32-s-localtime64-s.md)<br/>
640+
[strftime, wcsftime, _strftime_l, _wcsftime_l](../../c-runtime-library/reference/strftime-wcsftime-strftime-l-wcsftime-l.md)<br/>
641+
[time, _time32, _time64](../../c-runtime-library/reference/time-time32-time64.md)<br/>
642+
[CTimeSpan Class](../../atl-mfc-shared/reference/ctimespan-class.md)<br/>
643+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
644644
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -390,12 +390,12 @@ The updated `CArchive` object.
390390

391391
## See Also
392392

393-
[asctime, _wasctime](../../c-runtime-library/reference/asctime-wasctime.md)
394-
[_ftime, _ftime32, _ftime64](../../c-runtime-library/reference/ftime-ftime32-ftime64.md)
395-
[gmtime, _gmtime32, _gmtime64](../../c-runtime-library/reference/gmtime-gmtime32-gmtime64.md)
396-
[localtime, _localtime32, _localtime64](../../c-runtime-library/reference/localtime-localtime32-localtime64.md)
397-
[strftime, wcsftime, _strftime_l, _wcsftime_l](../../c-runtime-library/reference/strftime-wcsftime-strftime-l-wcsftime-l.md)
398-
[time, _time32, _time64](../../c-runtime-library/reference/time-time32-time64.md)
399-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
393+
[asctime, _wasctime](../../c-runtime-library/reference/asctime-wasctime.md)<br/>
394+
[_ftime, _ftime32, _ftime64](../../c-runtime-library/reference/ftime-ftime32-ftime64.md)<br/>
395+
[gmtime, _gmtime32, _gmtime64](../../c-runtime-library/reference/gmtime-gmtime32-gmtime64.md)<br/>
396+
[localtime, _localtime32, _localtime64](../../c-runtime-library/reference/localtime-localtime32-localtime64.md)<br/>
397+
[strftime, wcsftime, _strftime_l, _wcsftime_l](../../c-runtime-library/reference/strftime-wcsftime-strftime-l-wcsftime-l.md)<br/>
398+
[time, _time32, _time64](../../c-runtime-library/reference/time-time32-time64.md)<br/>
399+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
400400
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)
401401

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,6 @@ Call [IAtlStringMgr::Free](#free) to free the memory allocated by this method.
174174
175175
## See Also
176176

177-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
177+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
178178
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)
179179

docs/atl-mfc-shared/strings-atl-mfc.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ Nearly all programs work with string data. Visual C++ provides several ways to m
1717

1818
## In This Section
1919

20-
[Using CStringT](../atl-mfc-shared/using-cstringt.md)
20+
[Using CStringT](../atl-mfc-shared/using-cstringt.md)<br/>
2121
Describes programming using the template class CStringT.
2222

23-
[Using CString](../atl-mfc-shared/using-cstring.md)
23+
[Using CString](../atl-mfc-shared/using-cstring.md)<br/>
2424
Describes programming using CString, the default implementation of CStringT.
2525

2626
## Related Sections
2727

28-
[CStringT Overview](../atl-mfc-shared/reference/cstringt-class.md)
28+
[CStringT Overview](../atl-mfc-shared/reference/cstringt-class.md)<br/>
2929
Provides reference information about the shared `CStringT` class.
3030

31-
[MFC Concepts](../mfc/mfc-concepts.md)
31+
[MFC Concepts](../mfc/mfc-concepts.md)<br/>
3232
Provides conceptual and task-based topics to help you program using the MFC Library.
3333

3434
## See Also

docs/atl-mfc-shared/unicode-and-multibyte-character-set-mbcs-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,5 +88,5 @@ Similarly, `CString` methods are implemented by using generic data type mappings
8888

8989
## See Also
9090

91-
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)
91+
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)<br/>
9292
[String Manipulation](../c-runtime-library/string-manipulation-crt.md)

docs/atl-mfc-shared/using-cstring.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,41 +42,41 @@ int main() {
4242

4343
## In This Section
4444

45-
[Basic CString Operations](../atl-mfc-shared/basic-cstring-operations.md)
45+
[Basic CString Operations](../atl-mfc-shared/basic-cstring-operations.md)<br/>
4646
Describes basic `CString` operations, including creating objects from C literal strings, accessing individual characters in a `CString`, concatenating two objects, and comparing `CString` objects.
4747

48-
[String Data Management](../atl-mfc-shared/string-data-management.md)
48+
[String Data Management](../atl-mfc-shared/string-data-management.md)<br/>
4949
Discusses using Unicode and MBCS with `CString`.
5050

51-
[CString Semantics](../atl-mfc-shared/cstring-semantics.md)
51+
[CString Semantics](../atl-mfc-shared/cstring-semantics.md)<br/>
5252
Explains how `CString` objects are used.
5353

54-
[CString Operations Relating to C-Style Strings](../atl-mfc-shared/cstring-operations-relating-to-c-style-strings.md)
54+
[CString Operations Relating to C-Style Strings](../atl-mfc-shared/cstring-operations-relating-to-c-style-strings.md)<br/>
5555
Describes manipulating the contents of a `CString` object like a C-style null-terminated string.
5656

57-
[Allocating and Releasing Memory for a BSTR](../atl-mfc-shared/allocating-and-releasing-memory-for-a-bstr.md)
57+
[Allocating and Releasing Memory for a BSTR](../atl-mfc-shared/allocating-and-releasing-memory-for-a-bstr.md)<br/>
5858
Discusses using memory for a BSTR and COM objects.
5959

60-
[CString Exception Cleanup](../atl-mfc-shared/cstring-exception-cleanup.md)
60+
[CString Exception Cleanup](../atl-mfc-shared/cstring-exception-cleanup.md)<br/>
6161
Explains that explicit cleanup in MFC 3.0 and later is no longer necessary.
6262

63-
[CString Argument Passing](../atl-mfc-shared/cstring-argument-passing.md)
63+
[CString Argument Passing](../atl-mfc-shared/cstring-argument-passing.md)<br/>
6464
Explains how to pass CString objects to functions and how to return `CString` objects from functions.
6565

66-
[Unicode and Multibyte Character Set (MBCS) Support](../atl-mfc-shared/unicode-and-multibyte-character-set-mbcs-support.md)
66+
[Unicode and Multibyte Character Set (MBCS) Support](../atl-mfc-shared/unicode-and-multibyte-character-set-mbcs-support.md)<br/>
6767
Discusses how MFC is enabled for Unicode and MBCS support.
6868

6969
## Reference
7070

71-
[CStringT](../atl-mfc-shared/reference/cstringt-class.md)
71+
[CStringT](../atl-mfc-shared/reference/cstringt-class.md)<br/>
7272
Provides reference information about the `CStringT` class.
7373

74-
[CSimpleStringT Class](../atl-mfc-shared/reference/csimplestringt-class.md)
74+
[CSimpleStringT Class](../atl-mfc-shared/reference/csimplestringt-class.md)<br/>
7575
Provides reference information about the `CSimpleStringT` class.
7676

7777
## Related Sections
7878

79-
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)
79+
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)<br/>
8080
Contains links to topics that describe several ways to manage string data.
8181

8282
[Strings (ATL/MFC)](../atl-mfc-shared/strings-atl-mfc.md)

docs/atl-mfc-shared/using-cstringt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ The topics in this section describe programming using the template class [CStrin
1717

1818
## In This Section
1919

20-
[Memory Management with CStringT](../atl-mfc-shared/memory-management-with-cstringt.md)
20+
[Memory Management with CStringT](../atl-mfc-shared/memory-management-with-cstringt.md)<br/>
2121
Discusses memory management with `CStringT`, a template class used to manipulate variable-length character strings.
2222

23-
[Exporting String Classes Using CStringT](../atl-mfc-shared/exporting-string-classes-using-cstringt.md)
23+
[Exporting String Classes Using CStringT](../atl-mfc-shared/exporting-string-classes-using-cstringt.md)<br/>
2424
Explains how to export your own string class from a DLL using the CStringT<> template class.
2525

2626
## Reference

0 commit comments

Comments
 (0)