Reactos
1/*
2 * PROJECT: ReactOS SDK
3 * LICENSE: MIT (https://spdx.org/licenses/MIT)
4 * PURPOSE: API definitions for api-ms-win-core-string-l1
5 * COPYRIGHT: Copyright 2024 Timo Kreuzer (timo.kreuzer@reactos.org)
6 */
7
8#pragma once
9
10#include <winnls.h>
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16WINBASEAPI
17int
18WINAPI
19CompareStringEx(
20 _In_opt_ LPCWSTR lpLocaleName,
21 _In_ DWORD dwCmpFlags,
22 _In_NLS_string_(cchCount1) LPCWCH lpString1,
23 _In_ int cchCount1,
24 _In_NLS_string_(cchCount2) LPCWCH lpString2,
25 _In_ int cchCount2,
26 _Reserved_ LPNLSVERSIONINFO lpVersionInformation,
27 _Reserved_ LPVOID lpReserved,
28 _Reserved_ LPARAM lParam);
29
30#ifdef __cplusplus
31} // extern "C"
32#endif