ReactOS 0.4.15-dev-7953-g1f49173
normalize.c File Reference
#include <wine/unicode.h>
#include <debug.h>
Include dependency graph for normalize.c:

Go to the source code of this file.

Macros

#define WIN32_NO_STATUS
 
#define NDEBUG
 

Functions

INT WINAPI NormalizeString (NORM_FORM NormForm, LPCWSTR lpSrcString, INT cwSrcLength, LPWSTR lpDstString, INT cwDstLength)
 
BOOL WINAPI IsNormalizedString (NORM_FORM NormForm, LPCWSTR lpString, INT cwLength)
 

Macro Definition Documentation

◆ NDEBUG

#define NDEBUG

Definition at line 27 of file normalize.c.

◆ WIN32_NO_STATUS

#define WIN32_NO_STATUS

Definition at line 24 of file normalize.c.

Function Documentation

◆ IsNormalizedString()

BOOL WINAPI IsNormalizedString ( NORM_FORM  NormForm,
LPCWSTR  lpString,
INT  cwLength 
)

Definition at line 46 of file normalize.c.

47{
48 DPRINT1("%x %p %d\n", NormForm, lpString, cwLength);
50 return FALSE;
51}
#define DPRINT1
Definition: precomp.h:8
#define FALSE
Definition: types.h:117
#define ERROR_CALL_NOT_IMPLEMENTED
Definition: compat.h:102
#define SetLastError(x)
Definition: compat.h:752

◆ NormalizeString()

INT WINAPI NormalizeString ( NORM_FORM  NormForm,
LPCWSTR  lpSrcString,
INT  cwSrcLength,
LPWSTR  lpDstString,
INT  cwDstLength 
)

Definition at line 35 of file normalize.c.

37{
38 DPRINT1("%x %p %d %p %d\n", NormForm, lpSrcString, cwSrcLength, lpDstString, cwDstLength);
40 return 0;
41}