Skip to content

Commit fc1d602

Browse files
authored
Merge pull request #906 from shirhatti/patch-1
Update nf-http-httpinitialize.md
2 parents 26a717d + 070075b commit fc1d602

File tree

1 file changed

+13
-17
lines changed

1 file changed

+13
-17
lines changed

sdk-api-src/content/http/nf-http-httpinitialize.md

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,16 @@ api_name:
4747

4848
# HttpInitialize function
4949

50-
5150
## -description
5251

53-
The
54-
<b>HttpInitialize</b> function initializes the HTTP Server API driver, starts it, if it has not already been started, and allocates data structures for the calling application to support response-queue creation and other operations. Call this function before calling any other functions in the HTTP Server API.
52+
The <b>HttpInitialize</b> function initializes the HTTP Server API driver, starts it, if it has not already been started, and allocates data structures for the calling application to support response-queue creation and other operations. Call this function before calling any other functions in the HTTP Server API.
5553

5654
## -parameters
5755

5856
### -param Version [in]
5957

6058
HTTP version. This parameter is an
61-
<a href="/windows/desktop/api/http/ns-http-httpapi_version">HTTPAPI_VERSION</a> structure. For the current version, declare an instance of the structure and set it to the pre-defined value HTTPAPI_VERSION_1 before passing it to
59+
<a href="/windows/win32/api/http/ns-http-httpapi_version">HTTPAPI_VERSION</a> structure. For the current version, declare an instance of the structure and set it to the pre-defined value **HTTPAPI_VERSION_1** before passing it to
6260
<b>HttpInitialize</b>.
6361

6462
### -param Flags [in]
@@ -77,9 +75,10 @@ Initialization options, which can include one or both of the following values.
7775
</td>
7876
<td width="60%">
7977
Perform initialization for applications that use the HTTP configuration functions,
80-
<a href="/windows/desktop/api/http/nf-http-httpsetserviceconfiguration">HttpSetServiceConfiguration</a>,
81-
<a href="/windows/desktop/api/http/nf-http-httpqueryserviceconfiguration">HttpQueryServiceConfiguration</a> and
82-
<a href="/windows/desktop/api/http/nf-http-httpdeleteserviceconfiguration">HttpDeleteServiceConfiguration</a>.
78+
<a href="/windows/win32/api/http/nf-http-httpsetserviceconfiguration">HttpSetServiceConfiguration</a>,
79+
<a href="/windows/win32/api/http/nf-http-httpqueryserviceconfiguration">HttpQueryServiceConfiguration</a>,
80+
<a href="/windows/win32/api/http/nf-http-httpdeleteserviceconfiguration">HttpDeleteServiceConfiguration</a>, and
81+
<a href="/windows/win32/api/http/nf-http-httpisfeaturesupported">HttpIsFeatureSupported</a>.
8382

8483
</td>
8584
</tr>
@@ -97,13 +96,13 @@ Perform initialization for applications that use the HTTP Server API.
9796

9897
### -param pReserved [in, out]
9998

100-
This parameter is reserved and must be <b>NULL</b>.
99+
This parameter is reserved, and must be <b>NULL</b>.
101100

102101
## -returns
103102

104-
If the function succeeds, the return value is NO_ERROR.
103+
If the function succeeds, then the return value is **NO_ERROR**.
105104

106-
If the function fails, the return value is one of the following error codes.
105+
If the function fails, then the return value is one of the following error codes.
107106

108107
<table>
109108
<tr>
@@ -128,7 +127,7 @@ The <i>Flags</i> parameter contains an unsupported value.
128127
</dl>
129128
</td>
130129
<td width="60%">
131-
A <a href="/windows/desktop/Debug/system-error-codes">system error code</a> defined in WinError.h.
130+
A <a href="/windows/win32/debug/system-error-codes">system error code</a> defined in WinError.h.
132131

133132
</td>
134133
</tr>
@@ -137,7 +136,7 @@ A <a href="/windows/desktop/Debug/system-error-codes">system error code</a> defi
137136
## -remarks
138137

139138
Call
140-
<a href="/windows/desktop/api/http/nf-http-httpterminate">HttpTerminate</a> when the application completes. All the same flags that were passed to
139+
<a href="/windows/win32/api/http/nf-http-httpterminate">HttpTerminate</a> when the application completes. All the same flags that were passed to
141140
<b>HttpInitialize</b> in the <i>Flags</i> parameter must also be passed to
142141
<b>HttpTerminate</b>. An application can call
143142
<b>HttpInitialize</b> repeatedly, provided that each call to
@@ -146,8 +145,5 @@ Call
146145

147146
## -see-also
148147

149-
<a href="/windows/desktop/Http/http-server-api-version-1-0-functions">HTTP Server API Version 1.0 Functions</a>
150-
151-
152-
153-
<a href="/windows/desktop/api/http/nf-http-httpterminate">HttpTerminate</a>
148+
* <a href="/windows/win32/http/http-server-api-version-1-0-functions">HTTP Server API Version 1.0 Functions</a>
149+
* <a href="/windows/win32/api/http/nf-http-httpterminate">HttpTerminate</a>

0 commit comments

Comments
 (0)