mirror of
https://github.com/reactos/reactos.git
synced 2025-06-14 02:28:31 +00:00
[SDK] Add some missing headers
This commit is contained in:
parent
1c5ddc893a
commit
dc0433f02a
9 changed files with 258 additions and 0 deletions
32
sdk/include/psdk/stringapiset.h
Normal file
32
sdk/include/psdk/stringapiset.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* PROJECT: ReactOS SDK
|
||||
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
||||
* PURPOSE: API definitions for api-ms-win-core-string-l1
|
||||
* COPYRIGHT: Copyright 2024 Timo Kreuzer (timo.kreuzer@reactos.org)
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <winnls.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
WINBASEAPI
|
||||
int
|
||||
WINAPI
|
||||
CompareStringEx(
|
||||
_In_opt_ LPCWSTR lpLocaleName,
|
||||
_In_ DWORD dwCmpFlags,
|
||||
_In_NLS_string_(cchCount1) LPCWCH lpString1,
|
||||
_In_ int cchCount1,
|
||||
_In_NLS_string_(cchCount2) LPCWCH lpString2,
|
||||
_In_ int cchCount2,
|
||||
_Reserved_ LPNLSVERSIONINFO lpVersionInformation,
|
||||
_Reserved_ LPVOID lpReserved,
|
||||
_Reserved_ LPARAM lParam);
|
||||
|
||||
#ifdef __cplusplus
|
||||
} // extern "C"
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue