Skip to content

Commit d8070eb

Browse files
TylerMSFTTylerMSFT
andauthored
remove links to channel9 (#3813)
Co-authored-by: TylerMSFT <[email protected]>
1 parent cc11716 commit d8070eb

File tree

4 files changed

+3
-11
lines changed

4 files changed

+3
-11
lines changed

docs/c-runtime-library/reference/rand.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ int rand(void);
2727
2828
The **`rand`** function returns a pseudorandom integer in the range 0 to **`RAND_MAX`** (32767). Use the [`srand`](srand.md) function to seed the pseudorandom-number generator before calling **`rand`**.
2929
30-
The **`rand`** function generates a well-known sequence and isn't appropriate for use as a cryptographic function. For more cryptographically secure random number generation, use [`rand_s`](rand-s.md) or the functions declared in the C++ Standard Library in [`<random>`](../../standard-library/random.md). For information about what's wrong with **`rand`** and how `<random>` addresses these shortcomings, see this video entitled [rand Considered Harmful](https://channel9.msdn.com/Events/GoingNative/2013/rand-Considered-Harmful).
30+
The **`rand`** function generates a well-known sequence and isn't appropriate for use as a cryptographic function. For more cryptographically secure random number generation, use [`rand_s`](rand-s.md) or the functions declared in the C++ Standard Library in [`<random>`](../../standard-library/random.md).
3131
3232
By default, this function's global state is scoped to the application. To change this, see [Global state in the CRT](../global-state.md).
3333

docs/cpp/index.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ landingContent:
3333
url: ../build/vscpp-step-1-create.md
3434
- text: Create a console calculator in C++
3535
url: ../get-started/tutorial-console-cpp.md
36-
- linkListType: video
37-
links:
38-
- text: "Learn C++ - A general purpose language and library"
39-
url: https://channel9.msdn.com/Series/cplusplus-language-library
4036
- linkListType: learn
4137
links:
4238
- text: Welcome back to C++ - Modern C++

docs/cppcx/wrl/windows-runtime-cpp-template-library-wrl.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ description: "Learn more about: Windows Runtime C++ Template Library (WRL)"
33
title: "Windows Runtime C++ Template Library (WRL)"
44
ms.date: "11/04/2016"
55
ms.topic: "overview"
6-
ms.assetid: b915afce-553b-44a7-b8dc-0ab601758eb0
76
ms.custom: intro-overview
87
---
98
# Windows Runtime C++ Template Library (WRL)
@@ -36,9 +35,6 @@ The Windows Runtime C++ Template Library and C++/CX provide different benefits.
3635

3736
Here are some resources that can help you get working with the Windows Runtime C++ Template Library right away.
3837

39-
[The Windows Runtime Library (WRL)](https://channel9.msdn.com/Events/Windows-Camp/Developing-Windows-8-Metro-style-apps-in-Cpp/The-Windows-Runtime-Library-WRL-)<br/>
40-
In this Channel 9 video, learn more about how the Windows Runtime C++ Template Library helps you write Universal Windows Platform (UWP) apps and how to author and consume Windows Runtime components.
41-
4238
[How to: Activate and Use a Windows Runtime Component](how-to-activate-and-use-a-windows-runtime-component-using-wrl.md)<br/>
4339
Shows how to use the Windows Runtime C++ Template Library to initialize the Windows Runtime and activate and use a Windows Runtime component.
4440

docs/overview/what-s-new-for-cpp-2017.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "What's new for C++ in Visual Studio 2017"
33
description: "The new features and fixes in the Microsoft C/C++ compiler and tools in Visual Studio 2017."
4-
ms.date: 03/08/2021
4+
ms.date: 10/04/2021
55
ms.technology: "cpp-ide"
66
ms.custom: intro-whats-new
77
---
@@ -491,7 +491,7 @@ Visual Studio Graphics Diagnostics tools: You can use them to record and analyze
491491

492492
![Frame validation.](media/frame-validation.png)
493493

494-
- **Frame Analysis for D3D12:** Use Frame Analysis to analyze draw-call performance with directed "what-if" experiments. Switch to the Frame Analysis tab and run analysis to view the report. For more details, watch the [GoingNative 25: Visual Studio Graphics Frame Analysis](https://channel9.msdn.com/Shows/C9-GoingNative/GoingNative-25-Offline-Analysis-Graphics-Tool) video.
494+
- **Frame Analysis for D3D12:** Use Frame Analysis to analyze draw-call performance with directed "what-if" experiments. Switch to the Frame Analysis tab and run analysis to view the report.
495495

496496
![Frame analysis.](media/frame-analysis.png)
497497

0 commit comments

Comments
 (0)