Skip to content

Commit 5c6fbfc

Browse files
committed
Add files from top folder and update links
1 parent 02e28bd commit 5c6fbfc

File tree

366 files changed

+2143
-522
lines changed

Some content is hidden

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

366 files changed

+2143
-522
lines changed

docs/atl-mfc-shared/memory-management-with-cstringt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ Class [CStringT](../atl-mfc-shared/reference/cstringt-class.md) is a template cl
5454
- [CFixedStringT: An Example of a Custom String Manager](../atl-mfc-shared/cfixedstringt-example-of-a-custom-string-manager.md)
5555

5656
## See Also
57-
[CustomString sample](../top/visual-cpp-samples.md)
57+
[CustomString sample](../visual-cpp-samples.md)
5858

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1504,8 +1504,8 @@ BOOL TransparentBlt(CImage* pSrcImage, CImage* pDstImage, int xDest, int yDest,
15041504

15051505

15061506
## See Also
1507-
[MMXSwarm Sample](../../top/visual-cpp-samples.md)
1508-
[SimpleImage Sample](../../top/visual-cpp-samples.md)
1507+
[MMXSwarm Sample](../../visual-cpp-samples.md)
1508+
[SimpleImage Sample](../../visual-cpp-samples.md)
15091509
[Device-Independent Bitmaps](http://msdn.microsoft.com/library/windows/desktop/dd183562)
15101510
[CreateDIBSection](http://msdn.microsoft.com/library/windows/desktop/dd183494)
15111511
[ATL COM Desktop Components](../../atl/atl-com-desktop-components.md)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ CSize operator-(POINT point) const throw();
366366
[!code-cpp[NVC_ATLMFC_Utilities#34](../../atl-mfc-shared/codesnippet/cpp/cpoint-class_7.cpp)]
367367

368368
## See Also
369-
[MFC Sample MDI](../../top/visual-cpp-samples.md)
369+
[MFC Sample MDI](../../visual-cpp-samples.md)
370370
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
371371
[POINT Structure](../../mfc/reference/point-structure1.md)
372372
[CRect Class](../../atl-mfc-shared/reference/crect-class.md)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ CSize operator-() const throw();
262262
[!code-cpp[NVC_ATLMFC_Utilities#103](../../atl-mfc-shared/codesnippet/cpp/csize-class_7.cpp)]
263263

264264
## See Also
265-
[MFC Sample MDI](../../top/visual-cpp-samples.md)
265+
[MFC Sample MDI](../../visual-cpp-samples.md)
266266
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
267267
[CRect Class](../../atl-mfc-shared/reference/crect-class.md)
268268
[CPoint Class](../../atl-mfc-shared/reference/cpoint-class.md)

docs/atl/active-template-library-atl-concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The Active Template Library (ATL) is a set of template-based C++ classes that le
105105
Provides code for manipulating paths and URLs in the form of [CPathT](../atl/reference/cpatht-class.md) and [CUrl](../atl/reference/curl-class.md). A thread pool, [CThreadPool](../atl/reference/cthreadpool-class.md), can be used in your own applications. This code can be found in atlpath.h and atlutil.h.
106106

107107
## Related Sections
108-
[ATL Samples](../top/visual-cpp-samples.md)
108+
[ATL Samples](../visual-cpp-samples.md)
109109
Provides descriptions of and links to the ATL sample programs.
110110

111111
[Creating an ATL Project](../atl/reference/creating-an-atl-project.md)

docs/atl/adding-connection-points-to-an-object.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The [ATL Tutorial](../atl/active-template-library-atl-tutorial.md) demonstrates
5656

5757
[!code-cpp[NVC_ATL_Windowing#82](../atl/codesnippet/cpp/adding-connection-points-to-an-object_2.idl)]
5858

59-
See the .idl file in the [Circ](../top/visual-cpp-samples.md) ATL sample for an example.
59+
See the .idl file in the [Circ](../visual-cpp-samples.md) ATL sample for an example.
6060

6161
3. Use Class View to add methods and properties to the event interface. Right-click the class in Class View, point to **Add** on the shortcut menu, and click **Add Connection Point**.
6262

docs/atl/atl-collection-classes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,13 @@ ATL provides many classes for storing and accessing data. Which class you decide
128128
## Collection Classes Samples
129129
The following samples demonstrate the collection classes:
130130

131-
- [MMXSwarm Sample](../top/visual-cpp-samples.md)
131+
- [MMXSwarm Sample](../visual-cpp-samples.md)
132132

133-
- [DynamicConsumer Sample](../top/visual-cpp-samples.md)
133+
- [DynamicConsumer Sample](../visual-cpp-samples.md)
134134

135-
- [UpdatePV Sample](../top/visual-cpp-samples.md)
135+
- [UpdatePV Sample](../visual-cpp-samples.md)
136136

137-
- [Marquee Sample](../top/visual-cpp-samples.md)
137+
- [Marquee Sample](../visual-cpp-samples.md)
138138

139139
## See Also
140140
[Concepts](../atl/active-template-library-atl-concepts.md)

docs/atl/atl-collections-and-enumerators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ A `collection` is a COM object that provides an interface that allows access to
5858
[ATL](../atl/active-template-library-atl-concepts.md)
5959
Provides links to conceptual topics on how to program using the Active Template Library.
6060

61-
[ATLCollections Sample](../top/visual-cpp-samples.md)
61+
[ATLCollections Sample](../visual-cpp-samples.md)
6262
A sample that demonstrates the use of `ICollectionOnSTLImpl` and `CComEnumOnSTL`, and the implementation of custom copy policy classes.
6363

6464
## See Also

docs/atl/atl-com-desktop-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The ATL Reference documents the Active Template Library (ATL), a set of template
7171
[ATL Tutorial](../atl/active-template-library-atl-tutorial.md)
7272
Leads you through the creation of a control and demonstrates some ATL fundamentals in the process.
7373

74-
[ATL Samples](../top/visual-cpp-samples.md)
74+
[ATL Samples](../visual-cpp-samples.md)
7575
Sample code that shows how to use ATL to write COM objects.
7676

7777
[OLE DB Templates](../data/oledb/ole-db-templates.md)

docs/atl/atl-com-property-pages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ COM property pages provide a user interface for setting the properties (or calli
5454
Lists the steps for implementing property pages, including methods to override. Walks you through a complete example based on the ATLPages sample program.
5555

5656
## Related Sections
57-
[ATLPages Sample](../top/visual-cpp-samples.md)
57+
[ATLPages Sample](../visual-cpp-samples.md)
5858
The sample abstract for the ATLPages sample, which implements a property page using `IPropertyPageImpl`.
5959

6060
[ATL](../atl/active-template-library-atl-concepts.md)

0 commit comments

Comments
 (0)