spiegel-keyman/common/windows/cpp/include/xstring.h
Sabine 9a21e0837c sorted out some #includes
renamed some functions to reduce ambiguity
2022-08-08 16:32:19 +02:00

28 lines
No EOL
902 B
C

#pragma once
PWSTR incxstr(PWSTR p);
PWSTR decxstr(PWSTR p, PWSTR pStart);
int xstrlen(PWSTR p);
int xstrlen_ignoreifopt(PWSTR p);
int xstrpos(PWSTR p1, PWSTR p);
PWSTR xstrchr(PWSTR buf, PWSTR chr);
int xchrcmp(PWSTR ch1, PWSTR ch2);
/**/
/*
PKMX_WCHAR incxstr(PKMX_WCHAR p);
PKMX_WCHAR decxstr(PKMX_WCHAR p, PKMX_WCHAR pStart);
int xstrlen(PKMX_WCHAR p);
int xstrlen_S2(PKMX_WCHAR p);
int xstrlen_ignoreifopt(PKMX_WCHAR p);
int xstrpos(PKMX_WCHAR p1, PKMX_WCHAR p);
PKMX_WCHAR xstrchr(PKMX_WCHAR buf, PKMX_WCHAR chr);
int xchrcmp(PKMX_WCHAR ch1, PKMX_WCHAR ch2);*/
//**** _S2 old ******************************************************************************
//PWSTR incxstr(PWSTR p);
//PWSTR decxstr(PWSTR p, PWSTR pStart);
//int xstrlen(PWSTR p);
//int xstrlen_ignoreifopt(PWSTR p);
//int xstrpos(PWSTR p1, PWSTR p);
//PWSTR xstrchr(PWSTR buf, PWSTR chr);
//int xchrcmp(PWSTR ch1, PWSTR ch2);