Skip to content

Commit 907b401

Browse files
committed
Bulk Fix: CRT parameter styles
1 parent 9706f33 commit 907b401

File tree

471 files changed

+2065
-2069
lines changed

Some content is hidden

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

471 files changed

+2065
-2069
lines changed

docs/c-runtime-library/cgets-cgetws.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ wchar_t *_cgetws(
4141

4242
#### Parameters
4343

44-
*buffer*<br/>
44+
*`buffer`*\
4545
Storage location for data.
4646

4747
## Return value

docs/c-runtime-library/crtlcmapstringw.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,24 @@ int __crtLCMapStringW(
2828
2929
#### Parameters
3030
31-
*Locale*<br/>
31+
*Locale*\
3232
Locale identifier. The locale provides a context for the string mapping or sort key generation. An application can use the `MAKELCID` macro to create a locale identifier.
3333
34-
*dwMapFlags*<br/>
34+
*dwMapFlags*\
3535
The type of transformation to be used during string mapping or sort key generation.
3636
37-
*lpSrcStr*<br/>
37+
*lpSrcStr*\
3838
Pointer to a source string that the function maps or uses for sort key generation. This parameter is assumed to be a Unicode string.
3939
40-
*cchSrc*<br/>
40+
*cchSrc*\
4141
Size, in characters, of the string pointed to by the `lpSrcStr` parameter. This count can include the null terminator, or not include it.
4242
4343
A `cchSrc` value of -1 specifies that the string pointed to by `lpSrcStr` is null-terminated. If so, and this function is being used in its string-mapping mode, the function calculates the string's length itself, and null-terminates the mapped string stored into `*lpDestStr`.
4444
45-
*lpDestStr*<br/>
45+
*lpDestStr*\
4646
Long pointer to a buffer into which the function stores the mapped string or sort key.
4747
48-
*cchDest*<br/>
48+
*cchDest*\
4949
Size, in characters, of the buffer pointed to by `lpDestStr`.
5050
5151
## Return value

docs/c-runtime-library/cxxframehandler.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ EXCEPTION_DISPOSITION __CxxFrameHandler(
2727
2828
#### Parameters
2929
30-
*pExcept*<br/>
30+
*pExcept*\
3131
Exception record that is passed to the possible **`catch`** statements.
3232
33-
*pRN*<br/>
33+
*pRN*\
3434
Dynamic information about the stack frame that is used to handle the exception. For more information, see ehdata.h.
3535
36-
*pContext*<br/>
36+
*pContext*\
3737
Context. (Not used on Intel processors.)
3838
39-
*pDC*<br/>
39+
*pDC*\
4040
Additional information about the function entry and stack frame.
4141
4242
## Return value

docs/c-runtime-library/dllonexit.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ _onexit_t __dllonexit( _onexit_t func,
2525

2626
#### Parameters
2727

28-
*`func`*<br/>
28+
*`func`*\
2929
Pointer to a function to be executed upon exit.
3030

31-
*`pbegin`*<br/>
31+
*`pbegin`*\
3232
Pointer to a variable that points to the beginning of a list of functions to execute on detach.
3333

34-
*`pend`*<br/>
34+
*`pend`*\
3535
Pointer to variable that points to the end of a list of functions to execute on detach.
3636

3737
## Return value

docs/c-runtime-library/except-handler3.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ int _except_handler3(
2727

2828
#### Parameters
2929

30-
*exception_record*<br/>
30+
*`exception_record`*\
3131
[in] Information about the specific exception.
3232

33-
*registration*<br/>
33+
*`registration`*\
3434
[in] The record that indicates which scope table should be used to find the exception handler.
3535

36-
*context*<br/>
36+
*`context`*\
3737
[in] Reserved.
3838

39-
*dispatcher*<br/>
39+
*`dispatcher`*\
4040
[in] Reserved.
4141

4242
## Return value

docs/c-runtime-library/execute-onexit-table-initialize-onexit-table-register-onexit-function.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ int _execute_onexit_table(
3333

3434
#### Parameters
3535

36-
*table*<br/>
36+
*`table`*\
3737
[in, out] Pointer to the `onexit` function table.
3838

39-
*function*<br/>
39+
*`function`*\
4040
[in] Pointer to a function to add to the `onexit` function table.
4141

4242
## Return value

docs/c-runtime-library/getmainargs-wgetmainargs.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,35 +18,35 @@ Invokes command-line parsing and copies the arguments to `main()` back through t
1818

1919
```cpp
2020
int __getmainargs(
21-
int * _Argc,
22-
char *** _Argv,
23-
char *** _Env,
24-
int _DoWildCard,
25-
_startupinfo * _StartInfo);
21+
int * argc,
22+
char *** argv,
23+
char *** env,
24+
int doWildCard,
25+
_startupinfo * startInfo);
2626

2727
int __wgetmainargs (
28-
int *_Argc,
29-
wchar_t ***_Argv,
30-
wchar_t ***_Env,
31-
int _DoWildCard,
32-
_startupinfo * _StartInfo)
28+
int *argc,
29+
wchar_t ***argv,
30+
wchar_t ***env,
31+
int doWildCard,
32+
_startupinfo * startInfo)
3333
```
3434
3535
#### Parameters
3636
37-
`_Argc`<br/>
37+
*`argc`*\
3838
An integer that contains the number of arguments that follow in `argv`. The `argc` parameter is always greater than or equal to 1.
3939
40-
`_Argv`<br/>
40+
*`argv`*\
4141
An array of null-terminated strings representing command-line arguments entered by the user of the program. By convention, `argv[0]` is the command with which the program is invoked, argv[1] is the first command-line argument, and so on, until argv[argc], which is always **NULL**. The first command-line argument is always `argv[1]` and the last one is `argv[argc - 1]`.
4242
43-
`_Env`<br/>
43+
*`env`*\
4444
An array of strings that represent the variables set in the user's environment. This array is terminated by a **NULL** entry.
4545
46-
`_DoWildCard`<br/>
46+
*`doWildCard`*\
4747
An integer that if set to 1 expands the wildcards in the command line arguments, or if set to 0 does nothing.
4848
49-
`_StartInfo`<br/>
49+
*`startInfo`*\
5050
Other information to be passed to the CRT DLL.
5151
5252
## Return value

docs/c-runtime-library/heapadd.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ int _heapadd(
2828

2929
#### Parameters
3030

31-
*`memblock`*<br/>
31+
*`memblock`*\
3232
Pointer to the heap memory.
3333

34-
*`size`*<br/>
34+
*`size`*\
3535
Size of memory to add, in bytes.
3636

3737
## Return value

docs/c-runtime-library/heapset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ int _heapset(
2727

2828
#### Parameters
2929

30-
*fill*<br/>
30+
*`fill`*\
3131
Fill character.
3232

3333
## Return value

docs/c-runtime-library/internal-set-app-type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ void __set_app_type (
2424
2525
#### Parameters
2626
27-
*at*<br/>
27+
*`at`*\
2828
A value that indicates the application type. The possible values are:
2929
3030
|Value|Description|

0 commit comments

Comments
 (0)