Scroll to navigation

StrStrNW(3w) Wine API StrStrNW(3w)

NAME

StrStrNW (SHLWAPI.@)

SYNOPSIS

LPWSTR StrStrNW
(
LPCWSTR lpFirst,
LPCWSTR lpSrch,
UINT cchMax
)
 

DESCRIPTION

Find a substring within a string up to a given number of initial characters.
 

PARAMS

lpFirst [In] String to search in.
lpSrch [In] String to look for.
cchMax [In] Maximum number of initial search characters.
 

RETURNS

The start of lpFirst within lpSrch, or NULL if not found.
 

IMPLEMENTATION

Declared in "shlwapi.h".
Implemented in "dlls/shlwapi/string.c".
Debug channel "shell".
Oct 2012 Wine API