Skip to content

Commit 7d69483

Browse files
author
mikeblome
committed
normalize all remaining msdn links for easier matching later
1 parent 2535e92 commit 7d69483

File tree

928 files changed

+4152
-4152
lines changed

Some content is hidden

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

928 files changed

+4152
-4152
lines changed

docs/assembler/masm/dot-fpo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ cbFrame
5252
Indicates whether the EBP register has been allocated. either 0 or 1.
5353

5454
*cbFrame*
55-
Indicates the frame type. See [FPO_DATA](http://msdn.microsoft.com/library/windows/desktop/ms679352) for more information.
55+
Indicates the frame type. See [FPO_DATA](https://msdn.microsoft.com/library/windows/desktop/ms679352) for more information.
5656

5757
## See Also
5858
[Directives Reference](../../assembler/masm/directives-reference.md)

docs/atl-mfc-shared/implementation-of-a-custom-string-manager-basic-method.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ The easiest way to customize the memory allocation scheme for string data is to
1616

1717
- [CCRTHeap](../atl/reference/ccrtheap-class.md) Wraps the standard CRT heap functions ([malloc](../c-runtime-library/reference/malloc.md), [free](../c-runtime-library/reference/free.md), and [realloc](../c-runtime-library/reference/realloc.md))
1818

19-
- [CWin32Heap](../atl/reference/cwin32heap-class.md) Wraps a Win32 heap handle, using [HeapAlloc](http://msdn.microsoft.com/library/windows/desktop/aa366597), [HeapFree](http://msdn.microsoft.com/library/windows/desktop/aa366701), and [HeapRealloc](http://msdn.microsoft.com/library/windows/desktop/aa366704)
19+
- [CWin32Heap](../atl/reference/cwin32heap-class.md) Wraps a Win32 heap handle, using [HeapAlloc](https://msdn.microsoft.com/library/windows/desktop/aa366597), [HeapFree](https://msdn.microsoft.com/library/windows/desktop/aa366701), and [HeapRealloc](https://msdn.microsoft.com/library/windows/desktop/aa366704)
2020

21-
- [CLocalHeap](../atl/reference/clocalheap-class.md) Wraps the Win32 APIs: [LocalAlloc](http://msdn.microsoft.com/library/windows/desktop/aa366723), [LocalFree](http://msdn.microsoft.com/library/windows/desktop/aa366730), and [LocalRealloc](http://msdn.microsoft.com/library/windows/desktop/aa366742)
21+
- [CLocalHeap](../atl/reference/clocalheap-class.md) Wraps the Win32 APIs: [LocalAlloc](https://msdn.microsoft.com/library/windows/desktop/aa366723), [LocalFree](https://msdn.microsoft.com/library/windows/desktop/aa366730), and [LocalRealloc](https://msdn.microsoft.com/library/windows/desktop/aa366742)
2222

23-
- [CGlobalHeap](../atl/reference/cglobalheap-class.md) Wraps the Win32 APIs: [GlobalAlloc](http://msdn.microsoft.com/library/windows/desktop/aa366574), [GlobalFree](http://msdn.microsoft.com/library/windows/desktop/aa366579), and [GlobalRealloc](http://msdn.microsoft.com/library/windows/desktop/aa366590).
23+
- [CGlobalHeap](../atl/reference/cglobalheap-class.md) Wraps the Win32 APIs: [GlobalAlloc](https://msdn.microsoft.com/library/windows/desktop/aa366574), [GlobalFree](https://msdn.microsoft.com/library/windows/desktop/aa366579), and [GlobalRealloc](https://msdn.microsoft.com/library/windows/desktop/aa366590).
2424

25-
- [CComHeap](../atl/reference/ccomheap-class.md) Wraps the COM Task Allocator APIs: [CoTaskMemAlloc](http://msdn.microsoft.com/library/windows/desktop/ms692727), [CoTaskMemFree](http://msdn.microsoft.com/library/windows/desktop/ms680722), and [CoTaskMemRealloc](http://msdn.microsoft.com/library/windows/desktop/ms687280)
25+
- [CComHeap](../atl/reference/ccomheap-class.md) Wraps the COM Task Allocator APIs: [CoTaskMemAlloc](https://msdn.microsoft.com/library/windows/desktop/ms692727), [CoTaskMemFree](https://msdn.microsoft.com/library/windows/desktop/ms680722), and [CoTaskMemRealloc](https://msdn.microsoft.com/library/windows/desktop/ms687280)
2626

2727
For the purpose of string memory management, the most useful class is `CWin32Heap` because it allows you to create multiple independent heaps. For example, if you wanted to use a separate heap just for strings, you could do the following:
2828

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class CFileTime : public FILETIME
8282
|Day|Hour \* 24|
8383
|Week|Day \* 7|
8484

85-
**Note** Not all file systems can record creation and last access time and not all file systems record them in the same manner. For example, on the Windows NT FAT file system, create time has a resolution of 10 milliseconds, write time has a resolution of 2 seconds, and access time has a resolution of 1 day (the access date). On NTFS, access time has a resolution of 1 hour. Furthermore, FAT records times on disk in local time, but NTFS records times on disk in UTC. For more information, see [File Times](http://msdn.microsoft.com/library/windows/desktop/ms724290).
85+
**Note** Not all file systems can record creation and last access time and not all file systems record them in the same manner. For example, on the Windows NT FAT file system, create time has a resolution of 10 milliseconds, write time has a resolution of 2 seconds, and access time has a resolution of 1 day (the access date). On NTFS, access time has a resolution of 1 hour. Furthermore, FAT records times on disk in local time, but NTFS records times on disk in UTC. For more information, see [File Times](https://msdn.microsoft.com/library/windows/desktop/ms724290).
8686

8787
## Inheritance Hierarchy
8888
`FILETIME`
@@ -103,7 +103,7 @@ CFileTime(ULONGLONG nTime) throw();
103103

104104
### Parameters
105105
*ft*
106-
A [FILETIME](http://msdn.microsoft.com/library/windows/desktop/ms724284) structure.
106+
A [FILETIME](https://msdn.microsoft.com/library/windows/desktop/ms724284) structure.
107107

108108
*nTime*
109109
The date and time expressed as a 64-bit value.
@@ -393,7 +393,7 @@ static const ULONGLONG Week = Day* 7;
393393
See the example for [CFileTime::Millisecond](#millisecond).
394394

395395
## See Also
396-
[FILETIME](http://msdn.microsoft.com/library/windows/desktop/ms724284)
396+
[FILETIME](https://msdn.microsoft.com/library/windows/desktop/ms724284)
397397
[CFileTimeSpan Class](../../atl-mfc-shared/reference/cfiletimespan-class.md)
398398
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
399399
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ void SetTimeSpan(LONGLONG nSpan) throw();
256256
The new value for the time span in milliseconds.
257257

258258
## See Also
259-
[FILETIME](http://msdn.microsoft.com/library/windows/desktop/ms724284)
259+
[FILETIME](https://msdn.microsoft.com/library/windows/desktop/ms724284)
260260
[CFileTime Class](../../atl-mfc-shared/reference/cfiletime-class.md)
261261
[Hierarchy Chart](../../mfc/hierarchy-chart.md)
262262
[ATL/MFC Shared Classes](../../atl-mfc-shared/atl-mfc-shared-classes.md)

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

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ BOOL AlphaBlend(
204204
The alpha-blending function for source and destination bitmaps, a global alpha value to be applied to the entire source bitmap, and format information for the source bitmap. The source and destination blend functions are currently limited to AC_SRC_OVER.
205205

206206
*pointDest*
207-
A reference to a [POINT](http://msdn.microsoft.com/library/windows/desktop/dd162805) structure that identifies the upper left corner of the destination rectangle, in logical units.
207+
A reference to a [POINT](https://msdn.microsoft.com/library/windows/desktop/dd162805) structure that identifies the upper left corner of the destination rectangle, in logical units.
208208

209209
*nDestWidth*
210210
The width, in logical units, of the destination rectangle.
@@ -225,7 +225,7 @@ BOOL AlphaBlend(
225225
The height, in logical units, of the source rectangle.
226226

227227
*rectDest*
228-
A reference to a [RECT](http://msdn.microsoft.com/library/windows/desktop/dd162897) structure, identifying the destination.
228+
A reference to a [RECT](https://msdn.microsoft.com/library/windows/desktop/dd162897) structure, identifying the destination.
229229

230230
*rectSrc*
231231
A reference to a `RECT` structure, identifying the source.
@@ -304,10 +304,10 @@ BOOL BitBlt(
304304
The logical y-coordinate of the upper left corner of the destination rectangle.
305305

306306
*dwROP*
307-
The raster operation to be performed. Raster-operation codes define exactly how to combine the bits of the source, the destination, and the pattern (as defined by the currently selected brush) to form the destination. See [BitBlt](http://msdn.microsoft.com/library/windows/desktop/dd183370) in the Windows SDK for a list of other raster-operation codes and their descriptions.
307+
The raster operation to be performed. Raster-operation codes define exactly how to combine the bits of the source, the destination, and the pattern (as defined by the currently selected brush) to form the destination. See [BitBlt](https://msdn.microsoft.com/library/windows/desktop/dd183370) in the Windows SDK for a list of other raster-operation codes and their descriptions.
308308

309309
*pointDest*
310-
A [POINT](http://msdn.microsoft.com/library/windows/desktop/dd162805) structure indicating the upper left corner of the destination rectangle.
310+
A [POINT](https://msdn.microsoft.com/library/windows/desktop/dd162805) structure indicating the upper left corner of the destination rectangle.
311311

312312
*nDestWidth*
313313
The width, in logical units, of the destination rectangle.
@@ -322,7 +322,7 @@ BOOL BitBlt(
322322
The logical y-coordinate of the upper left corner of the source rectangle.
323323

324324
*rectDest*
325-
A [RECT](http://msdn.microsoft.com/library/windows/desktop/dd162897) structure indicating the destination rectangle.
325+
A [RECT](https://msdn.microsoft.com/library/windows/desktop/dd162897) structure indicating the destination rectangle.
326326

327327
*pointSrc*
328328
A `POINT` structure indicating the upper left corner of the source rectangle.
@@ -331,7 +331,7 @@ BOOL BitBlt(
331331
Nonzero if successful; otherwise zero.
332332

333333
### Remarks
334-
For more information, see [BitBlt](http://msdn.microsoft.com/library/windows/desktop/dd183370) in the Windows SDK.
334+
For more information, see [BitBlt](https://msdn.microsoft.com/library/windows/desktop/dd183370) in the Windows SDK.
335335

336336
## <a name="cimage"></a> CImage::CImage
337337
Constructs a `CImage` object.
@@ -410,7 +410,7 @@ BOOL CreateEx(
410410
- BI_BITFIELDS The format is uncompressed and the color table consists of three DWORD color masks that specify the red, green, and blue components, respectively, of each pixel. This is valid when used with 16- and 32-bpp bitmaps.
411411

412412
*pdwBitfields*
413-
Only used if *eCompression* is set to BI_BITFIELDS, otherwise it must be NULL. A pointer to an array of three DWORD bitmasks, specifying which bits of each pixel are used for the red, green, and blue components of the color, respectively. For information on restrictions for the bitfields, see [BITMAPINFOHEADER](http://msdn.microsoft.com/library/windows/desktop/dd183376) in the Windows SDK.
413+
Only used if *eCompression* is set to BI_BITFIELDS, otherwise it must be NULL. A pointer to an array of three DWORD bitmasks, specifying which bits of each pixel are used for the red, green, and blue components of the color, respectively. For information on restrictions for the bitfields, see [BITMAPINFOHEADER](https://msdn.microsoft.com/library/windows/desktop/dd183376) in the Windows SDK.
414414

415415
*dwFlags*
416416
Specifies if the bitmap object has an alpha channel. Can be a combination of zero or more of the following values:
@@ -519,13 +519,13 @@ BOOL Draw(
519519
The height, in logical units, of the source rectangle.
520520
521521
*rectDest*
522-
A reference to a [RECT](http://msdn.microsoft.com/library/windows/desktop/dd162897) structure, identifying the destination.
522+
A reference to a [RECT](https://msdn.microsoft.com/library/windows/desktop/dd162897) structure, identifying the destination.
523523
524524
*rectSrc*
525525
A reference to a `RECT` structure, identifying the source.
526526
527527
*pointDest*
528-
A reference to a [POINT](http://msdn.microsoft.com/library/windows/desktop/dd162805) structure that identifies the upper left corner of the destination rectangle, in logical units.
528+
A reference to a [POINT](https://msdn.microsoft.com/library/windows/desktop/dd162805) structure that identifies the upper left corner of the destination rectangle, in logical units.
529529
530530
### Return Value
531531
Nonzero if successful; otherwise 0.
@@ -564,7 +564,7 @@ int GetBPP() const throw();
564564
### Remarks
565565
This value determines the number of bits that define each pixel and the maximum number of colors in the bitmap.
566566
567-
The bits per pixel is usually 1, 4, 8, 16, 24, or 32. See the `biBitCount` member of [BITMAPINFOHEADER](http://msdn.microsoft.com/library/windows/desktop/dd183376) in the Windows SDK for more information about this value.
567+
The bits per pixel is usually 1, 4, 8, 16, 24, or 32. See the `biBitCount` member of [BITMAPINFOHEADER](https://msdn.microsoft.com/library/windows/desktop/dd183376) in the Windows SDK for more information about this value.
568568
569569
## <a name="getcolortable"></a> CImage::GetColorTable
570570
Retrieves red, green, blue (RGB) color values from a range of entries in the palette of the DIB section.
@@ -583,7 +583,7 @@ void GetColorTable(UINT iFirstColor,
583583
The number of color table entries to retrieve.
584584
585585
*prgbColors*
586-
A pointer to the array of [RGBQUAD](http://msdn.microsoft.com/library/windows/desktop/dd162938) structures to retrieve the color table entries.
586+
A pointer to the array of [RGBQUAD](https://msdn.microsoft.com/library/windows/desktop/dd162938) structures to retrieve the color table entries.
587587
588588
## <a name="getdc"></a> CImage::GetDC
589589
Retrieves the device context that currently has the image selected into it.
@@ -1120,18 +1120,18 @@ BOOL PlgBlt(
11201120
The y-coordinate of the upper left corner of the monochrome bitmap.
11211121
11221122
*rectSrc*
1123-
A reference to a [RECT](http://msdn.microsoft.com/library/windows/desktop/dd162897) structure specifying the coordinates of the source rectangle.
1123+
A reference to a [RECT](https://msdn.microsoft.com/library/windows/desktop/dd162897) structure specifying the coordinates of the source rectangle.
11241124
11251125
*pointMask*
1126-
A [POINT](http://msdn.microsoft.com/library/windows/desktop/dd162805) structure indicating the upper left corner of the mask bitmap.
1126+
A [POINT](https://msdn.microsoft.com/library/windows/desktop/dd162805) structure indicating the upper left corner of the mask bitmap.
11271127
11281128
### Return Value
11291129
Nonzero if successful, otherwise 0.
11301130
11311131
### Remarks
11321132
If *hbmMask* identifies a valid monochrome bitmap, `PlgBit` uses this bitmap to mask the bits of color data from the source rectangle.
11331133
1134-
This method applies to Windows NT, versions 4.0 and later only. See [PlgBlt](http://msdn.microsoft.com/library/windows/desktop/dd162804) in the Windows SDK for more detailed information.
1134+
This method applies to Windows NT, versions 4.0 and later only. See [PlgBlt](https://msdn.microsoft.com/library/windows/desktop/dd162804) in the Windows SDK for more detailed information.
11351135
11361136
## <a name="releasedc"></a> CImage::ReleaseDC
11371137
Releases the device context.
@@ -1209,7 +1209,7 @@ void SetColorTable(
12091209
The number of color table entries to set.
12101210
12111211
*prgbColors*
1212-
A pointer to the array of [RGBQUAD](http://msdn.microsoft.com/library/windows/desktop/dd162938) structures to set the color table entries.
1212+
A pointer to the array of [RGBQUAD](https://msdn.microsoft.com/library/windows/desktop/dd162938) structures to set the color table entries.
12131213
12141214
### Remarks
12151215
This method supports only DIB section bitmaps.
@@ -1349,10 +1349,10 @@ BOOL StretchBlt(
13491349
The height, in logical units, of the destination rectangle.
13501350
13511351
*dwROP*
1352-
The raster operation to be performed. Raster-operation codes define exactly how to combine the bits of the source, the destination, and the pattern (as defined by the currently selected brush) to form the destination. See [BitBlt](http://msdn.microsoft.com/library/windows/desktop/dd183370) in the Windows SDK for a list of other raster-operation codes and their descriptions.
1352+
The raster operation to be performed. Raster-operation codes define exactly how to combine the bits of the source, the destination, and the pattern (as defined by the currently selected brush) to form the destination. See [BitBlt](https://msdn.microsoft.com/library/windows/desktop/dd183370) in the Windows SDK for a list of other raster-operation codes and their descriptions.
13531353
13541354
*rectDest*
1355-
A reference to a [RECT](http://msdn.microsoft.com/library/windows/desktop/dd162897) structure, identifying the destination.
1355+
A reference to a [RECT](https://msdn.microsoft.com/library/windows/desktop/dd162897) structure, identifying the destination.
13561356
13571357
*xSrc*
13581358
The x-coordinate, in logical units, of the upper left corner of the source rectangle.
@@ -1373,7 +1373,7 @@ BOOL StretchBlt(
13731373
Nonzero if successful, otherwise 0.
13741374
13751375
### Remarks
1376-
For more information, see [StretchBlt](http://msdn.microsoft.com/library/windows/desktop/dd145120) in the Windows SDK.
1376+
For more information, see [StretchBlt](https://msdn.microsoft.com/library/windows/desktop/dd145120) in the Windows SDK.
13771377
13781378
## <a name="transparentblt"></a> CImage::TransparentBlt
13791379
Copies a bitmap from the source device context to this current device context.
@@ -1431,7 +1431,7 @@ BOOL TransparentBlt(
14311431
The color in the source bitmap to treat as transparent. By default, CLR_INVALID, indicating that the color currently set as the transparent color of the image should be used.
14321432
14331433
*rectDest*
1434-
A reference to a [RECT](http://msdn.microsoft.com/library/windows/desktop/dd162897) structure, identifying the destination.
1434+
A reference to a [RECT](https://msdn.microsoft.com/library/windows/desktop/dd162897) structure, identifying the destination.
14351435
14361436
*xSrc*
14371437
The x-coordinate, in logical units, of the upper left corner of the source rectangle.
@@ -1489,11 +1489,11 @@ BOOL TransparentBlt(CImage* pSrcImage, CImage* pDstImage,
14891489
## See Also
14901490
[MMXSwarm Sample](../../visual-cpp-samples.md)
14911491
[SimpleImage Sample](../../visual-cpp-samples.md)
1492-
[Device-Independent Bitmaps](http://msdn.microsoft.com/library/windows/desktop/dd183562)
1493-
[CreateDIBSection](http://msdn.microsoft.com/library/windows/desktop/dd183494)
1492+
[Device-Independent Bitmaps](https://msdn.microsoft.com/library/windows/desktop/dd183562)
1493+
[CreateDIBSection](https://msdn.microsoft.com/library/windows/desktop/dd183494)
14941494
[ATL COM Desktop Components](../../atl/atl-com-desktop-components.md)
1495-
[Device-Independent Bitmaps](http://msdn.microsoft.com/library/windows/desktop/dd183562)
1496-
[CreateDIBSection](http://msdn.microsoft.com/library/windows/desktop/dd183494)
1495+
[Device-Independent Bitmaps](https://msdn.microsoft.com/library/windows/desktop/dd183562)
1496+
[CreateDIBSection](https://msdn.microsoft.com/library/windows/desktop/dd183494)
14971497

14981498

14991499

0 commit comments

Comments
 (0)