Skip to content

Commit ac60b36

Browse files
author
Colin Robertson
committed
Remove or replace broken fwlinks
1 parent 6c26499 commit ac60b36

9 files changed

Lines changed: 11 additions & 13 deletions

File tree

docs/assembler/masm/dot-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The following table lists the possible values for each parameter when targeting
4343

4444
## Code
4545

46-
For MASM-related samples, download the Compiler samples from [Visual C++ Samples and Related Documentation for Visual Studio 2010](https://go.microsoft.com/fwlink/p/?linkid=178749).
46+
For MASM-related samples, download the Compiler samples from [Visual C++ Samples and Related Documentation for Visual Studio 2010](https://github.com/Microsoft/vcsamples).
4747

4848
The following example demonstrates the use of the `.MODEL` directive.
4949

docs/build/arm-exception-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The ARM EABI (embedded application binary interface) specifies an exception unwi
1616

1717
### Assumptions
1818

19-
Executable images for Windows on ARM use the Portable Executable (PE) format. For more information, see [Microsoft PE and COFF Specification](https://go.microsoft.com/fwlink/p/?linkid=84140). Exception handling information is stored in the .pdata and .xdata sections of the image.
19+
Executable images for Windows on ARM use the Portable Executable (PE) format. For more information, see [PE Format](/windows/win32/debug/pe-format). Exception handling information is stored in the .pdata and .xdata sections of the image.
2020

2121
The exception handling mechanism makes certain assumptions about code that follows the ABI for Windows on ARM:
2222

docs/error-messages/tool-errors/project-build-error-prj0003.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The *command line* command formed from input in the **Property Pages** dialog bo
1414

1515
Possible reasons for this error include:
1616

17-
- Your project depends on ATL Server. Beginning in Visual Studio 2008, ATL Server is no longer included as part of Visual Studio, but has been released as a shared-source project at CodePlex. To download the ATL Server source code and tools, go to [ATL Server Library and Tools](https://go.microsoft.com/fwlink/p/?linkid=81979).
17+
- Your project depends on ATL Server. Beginning in Visual Studio 2008, ATL Server is no longer included as part of Visual Studio, but has been released as a shared-source project at CodePlex. To download the ATL Server source code and tools, go to [ATL Server Library and Tools](https://archive.codeplex.com/?p=atlserver).
1818

1919
- Low system resources. Close some applications to resolve this.
2020

docs/mfc/exception-handling-in-mfc.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,4 @@ The following articles compare the MFC exception macros with the C++ exception k
9595

9696
## See also
9797

98-
[Modern C++ best practices for exceptions and error handling](../cpp/errors-and-exception-handling-modern-cpp.md)<br/>
99-
[How Do I: Create my Own Custom Exception Classes](https://go.microsoft.com/fwlink/p/?linkid=128045)
98+
[Modern C++ best practices for exceptions and error handling](../cpp/errors-and-exception-handling-modern-cpp.md)

docs/mfc/mfc-internet-programming-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ MFC provides classes that support Internet programming. You can use [COleControl
5454

5555
For more information about Microsoft Internet technology, see [Networking and Internet](/windows/win32/networking).
5656

57-
The [World Wide Web Consortium (W3C)](https://go.microsoft.com/fwlink/p/?linkid=37125) publishes specifications for HTML, HTTP, CGI, and other World Wide Web technologies.
57+
The [World Wide Web Consortium (W3C)](https://www.w3.org/) publishes specifications for HTML, HTTP, CGI, and other World Wide Web technologies.
5858

5959
## <a name="_core_more_internet_help"></a> More internet help
6060

docs/mfc/reference/cexception-class.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,5 +217,4 @@ else
217217

218218
[CObject Class](cobject-class.md)<br/>
219219
[Hierarchy Chart](../hierarchy-chart.md)<br/>
220-
[Exception Processing](exception-processing.md)<br/>
221-
[How Do I: Create my Own Custom Exception Classes](https://go.microsoft.com/fwlink/p/?linkid=128045)
220+
[Exception Processing](exception-processing.md)

docs/mfc/reference/ctreectrl-class.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,7 +1339,7 @@ The handle to a tree-view item ( `HTREEITEM`) that corresponds to the *uAccId* p
13391339

13401340
### Remarks
13411341

1342-
Accessibility aids are applications that help people with disabilities use computers. An accessibility identifier is used by the `IAccessible` interface to uniquely specify an element in a window. For more information about accessibility identifiers, search for the "About Active Accessibility Support" topic at [Microsoft Developer Network](https://go.microsoft.com/fwlink/p/?linkid=56322).
1342+
Accessibility aids are applications that help people with disabilities use computers. An accessibility identifier is used by the `IAccessible` interface to uniquely specify an element in a window. For more information about the `IAccessible` APIs, see [Microsoft Active Accessibility](/windows/win32/winauto/microsoft-active-accessibility).
13431343

13441344
This method sends the [TVM_MAPACCIDTOHTREEITEM](/windows/win32/Controls/tvm-mapaccidtohtreeitem) message, which is described in the Windows SDK.
13451345

@@ -1374,7 +1374,7 @@ The accessibility identifier that corresponds to the *hItem* parameter.
13741374

13751375
### Remarks
13761376

1377-
Accessibility aids are applications that help people with disabilities use computers. An accessibility identifier is used by the `IAccessible` interface to uniquely specify an element in a window. For more information about accessibility identifiers, search for the "About Active Accessibility Support" topic at [Microsoft Developer Network](https://go.microsoft.com/fwlink/p/?linkid=56322).
1377+
Accessibility aids are applications that help people with disabilities use computers. An accessibility identifier is used by the `IAccessible` interface to uniquely specify an element in a window. For more information about the `IAccessible` APIs, see [Microsoft Active Accessibility](/windows/win32/winauto/microsoft-active-accessibility).
13781378

13791379
This method sends the [TVM_MAPHTREEITEMTOACCID](/windows/win32/Controls/tvm-maphtreeitemtoaccid) message, which is described in the Windows SDK.
13801380

@@ -2117,7 +2117,7 @@ void ShowInfoTip(HTREEITEM hItem);
21172117

21182118
### Remarks
21192119

2120-
For more information about the difference between tooltips and infotips, search for the "Tooltips and Infotips" topic at [Microsoft Developer Network](https://go.microsoft.com/fwlink/p/?linkid=56322).
2120+
For more information about the difference between tooltips and infotips, see [Tooltips and Infotips](/windows/win32/uxguide/ctrl-tooltips-and-infotips).
21212121

21222122
This method sends the [TVM_SHOWINFOTIP](/windows/win32/Controls/tvm-showinfotip) message, which is described in the Windows SDK.
21232123

docs/mfc/reference/cwaitcursor-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,4 @@ If you need to restore the wait cursor while in a function other than the one in
110110
[CCmdTarget::EndWaitCursor](../../mfc/reference/ccmdtarget-class.md#endwaitcursor)<br/>
111111
[CCmdTarget::RestoreWaitCursor](../../mfc/reference/ccmdtarget-class.md#restorewaitcursor)<br/>
112112
[CWinApp::DoWaitCursor](../../mfc/reference/cwinapp-class.md#dowaitcursor)<br/>
113-
[How Do I: Change the Mouse Cursor in an Microsoft Foundation Class Application](https://go.microsoft.com/fwlink/p/?linkid=128044)
113+
[Change the mouse pointer for a window in MFC by using Visual C++](/troubleshoot/cpp/change-mouse-pointer-window-mfc)

docs/parallel/concrt/parallel-diagnostic-tools-concurrency-runtime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The profiling tools provide three data views that display graphical, tabular and
2121

2222
The Concurrency Runtime uses [Event Tracing for Windows](/windows/win32/ETW/event-tracing-portal) (ETW) to notify instrumentation tools, such as profilers, when various events occur. These events include when a scheduler is activated or deactivated, when a context begins, ends, blocks, unblocks, or yields, and when a parallel algorithm begins or ends.
2323

24-
Tools such as the [Concurrency Visualizer](/visualstudio/profiling/concurrency-visualizer) utilize this functionality; therefore, you typically do not have to work with these events directly. However, these events are useful when you are developing a custom profiler or when you use event tracing tools such as [Xperf](https://go.microsoft.com/fwlink/p/?linkid=160628).
24+
Tools such as the [Concurrency Visualizer](/visualstudio/profiling/concurrency-visualizer) utilize this functionality; therefore, you typically do not have to work with these events directly. However, these events are useful when you are developing a custom profiler or when you use event tracing tools such as the [Windows Performance Toolkit](/windows-hardware/test/wpt/).
2525

2626
The Concurrency Runtime raises these events only when tracing is enabled. Call the [concurrency::EnableTracing](reference/concurrency-namespace-functions.md#enabletracing) function to enable event tracing and the [concurrency::DisableTracing](reference/concurrency-namespace-functions.md#disabletracing) function to disable tracing.
2727

0 commit comments

Comments
 (0)