Skip to content

Commit 070075b

Browse files
authored
Edit pass
1 parent 0da3252 commit 070075b

File tree

1 file changed

+13
-18
lines changed

1 file changed

+13
-18
lines changed

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

Lines changed: 13 additions & 18 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,10 +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>,
82-
<a href="/windows/desktop/api/http/nf-http-httpdeleteserviceconfiguration">HttpDeleteServiceConfiguration</a>, and
83-
<a href="/windows/desktop/api/http/nf-http-httpisfeaturesupported">HttpIsFeatureSupported</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>.
8482

8583
</td>
8684
</tr>
@@ -98,13 +96,13 @@ Perform initialization for applications that use the HTTP Server API.
9896

9997
### -param pReserved [in, out]
10098

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

103101
## -returns
104102

105-
If the function succeeds, the return value is NO_ERROR.
103+
If the function succeeds, then the return value is **NO_ERROR**.
106104

107-
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.
108106

109107
<table>
110108
<tr>
@@ -129,7 +127,7 @@ The <i>Flags</i> parameter contains an unsupported value.
129127
</dl>
130128
</td>
131129
<td width="60%">
132-
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.
133131

134132
</td>
135133
</tr>
@@ -138,7 +136,7 @@ A <a href="/windows/desktop/Debug/system-error-codes">system error code</a> defi
138136
## -remarks
139137

140138
Call
141-
<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
142140
<b>HttpInitialize</b> in the <i>Flags</i> parameter must also be passed to
143141
<b>HttpTerminate</b>. An application can call
144142
<b>HttpInitialize</b> repeatedly, provided that each call to
@@ -147,8 +145,5 @@ Call
147145

148146
## -see-also
149147

150-
<a href="/windows/desktop/Http/http-server-api-version-1-0-functions">HTTP Server API Version 1.0 Functions</a>
151-
152-
153-
154-
<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)