Skip to content

Commit da1f835

Browse files
author
Colin Robertson
authored
Remove underscore HTML entities, fix formatting (#3910)
* Remove underscore HTML entities, fix formatting * Acrolinx
1 parent 1ccbccf commit da1f835

17 files changed

+405
-405
lines changed

docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,9 @@ Right now, this DLL doesn't do very much. Next, you'll create a header file to d
186186
187187
This header file declares some functions to produce a generalized Fibonacci sequence, given two initial values. A call to `fibonacci_init(1, 1)` generates the familiar Fibonacci number sequence.
188188
189-
Notice the preprocessor statements at the top of the file. The new project template for a DLL project adds **_PROJECTNAME__EXPORTS** to the defined preprocessor macros. In this example, Visual Studio defines **MATHLIBRARY_EXPORTS** when your MathLibrary DLL project is built.
189+
Notice the preprocessor statements at the top of the file. The new project template for a DLL project adds `<PROJECTNAME>_EXPORTS` to the defined preprocessor macros. In this example, Visual Studio defines `MATHLIBRARY_EXPORTS` when your MathLibrary DLL project is built.
190190
191-
When the **MATHLIBRARY&#95;EXPORTS** macro is defined, the **MATHLIBRARY&#95;API** macro sets the `__declspec(dllexport)` modifier on the function declarations. This modifier tells the compiler and linker to export a function or variable from the DLL for use by other applications. When **MATHLIBRARY&#95;EXPORTS** is undefined, for example, when the header file is included by a client application, **MATHLIBRARY&#95;API** applies the `__declspec(dllimport)` modifier to the declarations. This modifier optimizes the import of the function or variable in an application. For more information, see [dllexport, dllimport](../cpp/dllexport-dllimport.md).
191+
When the `MATHLIBRARY_EXPORTS` macro is defined, the `MATHLIBRARY_API` macro sets the `__declspec(dllexport)` modifier on the function declarations. This modifier tells the compiler and linker to export a function or variable from the DLL for use by other applications. When `MATHLIBRARY_EXPORTS` is undefined, for example, when the header file is included by a client application, `MATHLIBRARY_API` applies the `__declspec(dllimport)` modifier to the declarations. This modifier optimizes the import of the function or variable in an application. For more information, see [dllexport, dllimport](../cpp/dllexport-dllimport.md).
192192
193193
### To add an implementation to the DLL
194194

docs/c-language/character-sets1.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ The source character set and execution character set include the ASCII character
1414

1515
|Escape Sequence|Character|ASCII Value|
1616
|---------------------|---------------|-----------------|
17-
|&#92;a|Alert/bell|7|
18-
|&#92;b|Backspace|8|
19-
|&#92;f|Form feed|12|
20-
|&#92;n|Newline|10|
21-
|&#92;r|Carriage return|13|
22-
|&#92;t|Horizontal tab|9|
23-
|&#92;v|Vertical tab|11|
24-
|&#92;"|Double quotation|34|
25-
|&#92;'|Single quotation|39|
26-
|&#92;&#92;|Backslash|92|
17+
|`\a`|Alert/bell|7|
18+
|`\b`|Backspace|8|
19+
|`\f`|Form feed|12|
20+
|`\n`|Newline|10|
21+
|`\r`|Carriage return|13|
22+
|`\t`|Horizontal tab|9|
23+
|`\v`|Vertical tab|11|
24+
|`\"`|Double quotation|34|
25+
|`\'`|Single quotation|39|
26+
|`\\`|Backslash|92|
2727

2828
## See also
2929

0 commit comments

Comments
 (0)