Skip to content

Commit bce5223

Browse files
author
msebolt
committed
docset changes pr1
1 parent a7c22ea commit bce5223

Some content is hidden

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

42 files changed

+45
-45
lines changed

docs/build/reference/nxcompat-compatible-with-data-execution-prevention.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ By default, **/NXCOMPAT** is on.
2727

2828
For more information about Data Execution Prevention, see these articles:
2929

30-
- [A detailed description of the Data Execution Prevention (DEP) feature](https://support.microsoft.com/en-us/help/875352/a-detailed-description-of-the-data-execution-prevention-dep-feature-in)
30+
- [A detailed description of the Data Execution Prevention (DEP) feature](https://support.microsoft.com/help/875352/a-detailed-description-of-the-data-execution-prevention-dep-feature-in)
3131

3232
- [Data Execution Prevention](/windows/desktop/Memory/data-execution-prevention)
3333

docs/c-runtime-library/obsolete-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Certain library functions are obsolete and have more recent equivalents. We reco
2424
|`_loaddll`|[LoadLibrary](https://msdn.microsoft.com/library/windows/desktop/ms684175\(v=vs.85\).aspx), [LoadLibraryEx](/windows/desktop/api/libloaderapi/nf-libloaderapi-loadlibraryexa), or [LoadPackagedLibrary](/windows/desktop/api/winbase/nf-winbase-loadpackagedlibrary)|
2525
|`_unloaddll`|[FreeLibrary](https://msdn.microsoft.com/library/windows/desktop/ms683152\(v=vs.85\).aspx)|
2626
|`_getdllprocaddr`|[GetProcAddress](../build/getprocaddress.md)|
27-
|`_seterrormode`|[SetErrorMode](https://msdn.microsoft.com/en-us/library/windows/desktop/ms680621\(v=vs.85\).aspx)|
27+
|`_seterrormode`|[SetErrorMode](https://msdn.microsoft.com/library/windows/desktop/ms680621\(v=vs.85\).aspx)|
2828
|`_beep`|[Beep](https://msdn.microsoft.com/library/windows/desktop/ms679277\(v=vs.85\).aspx)|
2929
|`_sleep`|[Sleep](/windows/desktop/api/synchapi/nf-synchapi-sleep)|
3030
|`_getsystime`|[GetLocalTime](https://msdn.microsoft.com/library/windows/desktop/ms724338\(v=vs.85\).aspx)|

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ms.workload: ["cplusplus"]
1919
Terminates the calling process. The **exit** function terminates it after cleanup; **_exit** and **_Exit** terminate it immediately.
2020

2121
> [!NOTE]
22-
> Do not use this method to shut down a Universal Windows Platform (UWP) app, except in testing or debugging scenarios. Programmatic or UI ways to close a Store app are not permitted according to the [Microsoft Store policies](/legal/windows/agreements/store-policies). For more information, see [UWP App lifecycle](/windows/uwp/launch-resume/app-lifecycle). For more information about Windows 10 apps, see [How-to guides for Windows 10 apps](https://developer.microsoft.com/en-us/windows/apps).
22+
> Do not use this method to shut down a Universal Windows Platform (UWP) app, except in testing or debugging scenarios. Programmatic or UI ways to close a Store app are not permitted according to the [Microsoft Store policies](/legal/windows/agreements/store-policies). For more information, see [UWP App lifecycle](/windows/uwp/launch-resume/app-lifecycle). For more information about Windows 10 apps, see [How-to guides for Windows 10 apps](https://developer.microsoft.com/windows/apps).
2323
2424
## Syntax
2525

docs/c-runtime-library/reference/security-init-cookie.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ See the examples in [C Runtime Error R6035](../../error-messages/tool-errors/c-r
4747
4848
## See also
4949
50-
[Microsoft Security Response Center](https://www.microsoft.com/en-us/msrc?rtc=1)
50+
[Microsoft Security Response Center](https://www.microsoft.com/msrc?rtc=1)

docs/cpp/rvalue-reference-declarator-amp-amp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ int main()
5252

5353
Before Visual C++ 2010, each call to **operator+** allocates and returns a new temporary `string` object (an rvalue). **operator+** cannot append one string to the other because it does not know whether the source strings are lvalues or rvalues. If the source strings are both lvalues, they might be referenced elsewhere in the program and therefore must not be modified. By using rvalue references, **operator+** can be modified to take rvalues, which cannot be referenced elsewhere in the program. Therefore, **operator+** can now append one string to another. This can significantly reduce the number of dynamic memory allocations that the `string` class must perform. For more information about the `string` class, see [basic_string Class](../standard-library/basic-string-class.md).
5454

55-
Move semantics also helps when the compiler cannot use Return Value Optimization (RVO) or Named Return Value Optimization (NRVO). In these cases, the compiler calls the move constructor if the type defines it. For more information about Named Return Value Optimization, see [Named Return Value Optimization in Visual C++ 2005](https://msdn.microsoft.com/en-us/library/ms364057.aspx).
55+
Move semantics also helps when the compiler cannot use Return Value Optimization (RVO) or Named Return Value Optimization (NRVO). In these cases, the compiler calls the move constructor if the type defines it. For more information about Named Return Value Optimization, see [Named Return Value Optimization in Visual C++ 2005](https://msdn.microsoft.com/library/ms364057.aspx).
5656

5757
To better understand move semantics, consider the example of inserting an element into a `vector` object. If the capacity of the `vector` object is exceeded, the `vector` object must reallocate memory for its elements and then copy each element to another memory location to make room for the inserted element. When an insertion operation copies an element, it creates a new element, calls the copy constructor to copy the data from the previous element to the new element, and then destroys the previous element. Move semantics enables you to move objects directly without having to perform expensive memory allocation and copy operations.
5858

docs/data/oledb/ole-db-architectural-design-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Given the possible combinations of technologies (such as using ADO components wi
3535

3636
- [Microsoft Help and Support](https://support.microsoft.com/)
3737

38-
- [Microsoft Data Access Technical Articles Overview](https://msdn.microsoft.com/en-us/library/ms810811.aspx)
38+
- [Microsoft Data Access Technical Articles Overview](https://msdn.microsoft.com/library/ms810811.aspx)
3939

4040
## See Also
4141

docs/error-messages/compiler-errors-1/fatal-error-c1033.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ cannot open program database pdb
1919
This error can be caused by disk error.
2020

2121

22-
For more information, see [http://support.microsoft.com/default.aspx?scid=kb;en-us;246007](http://support.microsoft.com/default.aspx?scid=kb;en-us;246007).
22+
For more information, see [http://support.microsoft.com/default.aspx?scid=kb;246007](http://support.microsoft.com/default.aspx?scid=kb;246007).

docs/error-messages/compiler-errors-1/fatal-error-c1060.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The operating system or run-time library cannot fill a request for memory.
2626

2727
1. If you are compiling on a 64-bit platform, use the 64-bit compiler toolset. For information, see [How to: Enable a 64-Bit Visual C++ Toolset on the Command Line](../../build/how-to-enable-a-64-bit-visual-cpp-toolset-on-the-command-line.md).
2828

29-
1. On 32-bit Windows, try using the [/3GB](https://support.microsoft.com/en-us/help/833721/available-switch-options-for-the-windows-xp-and-the-windows-server-200) boot.ini switch.
29+
1. On 32-bit Windows, try using the [/3GB](https://support.microsoft.com/help/833721/available-switch-options-for-the-windows-xp-and-the-windows-server-200) boot.ini switch.
3030

3131
1. Increase the size of the Windows swap-file.
3232

docs/error-messages/tool-errors/linker-tools-error-lnk1168.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You can use the Windows SysInternals utilities [Handle](http://technet.microsoft
2424

2525
If the file is locked by an anti-virus program, you can fix this issue by excluding your build output directories from automatic scanning by the anti-virus program. Anti-virus scanners are often triggered by the creation of new files in the file system, and they hold locks on the files while the scan proceeds. Consult your anti-virus program documentation for details about how to exclude specific directories from scanning.
2626

27-
If the file is locked by a search indexing service, you can fix this issue by excluding your build output directories from automatic indexing. Consult the documentation for the indexing service for more information. To change the Windows search indexing service, use **Indexing Options** in the Windows **Control Panel**. For more information, see [Improve Windows searches using the index: frequently asked questions](http://windows.microsoft.com/en-us/windows/improve-windows-searches-using-index-faq#1TC=windows-7).
27+
If the file is locked by a search indexing service, you can fix this issue by excluding your build output directories from automatic indexing. Consult the documentation for the indexing service for more information. To change the Windows search indexing service, use **Indexing Options** in the Windows **Control Panel**. For more information, see [Improve Windows searches using the index: frequently asked questions](http://windows.microsoft.com/windows/improve-windows-searches-using-index-faq#1TC=windows-7).
2828

2929
If your executable can’t be overwritten by the build process, it may be locked by File Explorer. If the **Application Experience** service has been disabled, File Explorer may hold on to an executable file handle lock for an extended time. To fix this issue, run **services.msc** and then open the **Properties** dialog box for the **Application Experience** service. Change the **Startup type** from **Disabled** to **Manual**.
3030

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ Another cause for this error is that your Policy Setting does not include VCSpaw
2828

2929
For additional information, see:
3030

31-
- Knowledge Base article 324153, which is available on [http://support.microsoft.com/default.aspx?scid=kb;en-us;324153](http://support.microsoft.com/default.aspx?scid=kb;en-us;324153).
31+
- Knowledge Base article 324153, which is available on [http://support.microsoft.com/default.aspx?scid=kb;324153](http://support.microsoft.com/default.aspx?scid=kb;324153).
3232

3333
- [Adhering to System Policy Settings](https://msdn.microsoft.com/library/aa372139), the section on "Run only allowed Windows applications".

0 commit comments

Comments
 (0)