|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| user32.lib
| Header File
| winuser.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
CharPrev
The CharPrev function returns a pointer to the preceding character in a string. This
function supersedes the AnsiPrev function.
LPTSTR CharPrev(
LPCTSTR lpszStart,
| // pointer to first character
| LPCTSTR lpszCurrent
| // pointer to current character
| );
|
|
Parameters
lpszStart
Pointer to the beginning of the string.
lpszCurrent
Pointer to a character in a null-terminated string.
Return Values
If the function succeeds, the return value is a pointer to the preceding
character in the string, or to the first character in the string if the lpszCurrent parameter equals the lpszStart parameter.
See Also
CharNext, CharPrevExA
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|