ReactOS 0.4.16-dev-88-ga65b6ae
|
#include <sec_api/stralign_s.h>
Go to the source code of this file.
Functions | |
LPUWSTR WINAPI | uaw_CharUpperW (LPUWSTR String) |
int WINAPI | uaw_lstrcmpW (PCUWSTR String1, PCUWSTR String2) |
int WINAPI | uaw_lstrcmpiW (PCUWSTR String1, PCUWSTR String2) |
int WINAPI | uaw_lstrlenW (LPCUWSTR String) |
PUWSTR __cdecl | uaw_wcschr (PCUWSTR String, WCHAR Character) |
PUWSTR __cdecl | uaw_wcscpy (PUWSTR Destination, PCUWSTR Source) |
int __cdecl | uaw_wcsicmp (PCUWSTR String1, PCUWSTR String2) |
size_t __cdecl | uaw_wcslen (PCUWSTR String) |
PUWSTR __cdecl | uaw_wcsrchr (PCUWSTR String, WCHAR Character) |
int | ua_wcsicmp (LPCUWSTR String1, LPCUWSTR String2) |
Definition at line 177 of file stralign.h.
#define __UA_WCSLEN ua_wcslen |
Definition at line 162 of file stralign.h.
Definition at line 165 of file stralign.h.
#define _STRALIGN_USE_SECURE_CRT 0 |
This file has no copyright assigned and is placed in the Public Domain. This file is part of the mingw-w64 runtime package. No warranty is given; refer to the file DISCLAIMER.PD within this package.
Definition at line 10 of file stralign.h.
Definition at line 174 of file stralign.h.
#define STRUC_ALIGNED_STACK_COPY | ( | t, | |
s | |||
) | __UA_STRUC_ALIGNED(t,s) ? ((t const *)(s)) : ((t const *)__UA_STACKCOPY((s),sizeof(t))) |
Definition at line 178 of file stralign.h.
Definition at line 193 of file stralign.h.
Definition at line 192 of file stralign.h.
#define ua_CharUpper CharUpperA |
Definition at line 194 of file stralign.h.
Definition at line 195 of file stralign.h.
Definition at line 196 of file stralign.h.
Definition at line 197 of file stralign.h.
Definition at line 198 of file stralign.h.
#define WSTR_ALIGNED_STACK_COPY | ( | d, | |
s | |||
) | { PCUWSTR __ua_src; ULONG __ua_size; PWSTR __ua_dst; __ua_src = (s); if(WSTR_ALIGNED(__ua_src)) { __ua_dst = (PWSTR)__ua_src; } else { __ua_size = __UA_WSTRSIZE(__ua_src); __ua_dst = (PWSTR)_alloca(__ua_size); memcpy(__ua_dst,__ua_src,__ua_size); } *(d) = (PCWSTR)__ua_dst; } |
Definition at line 171 of file stralign.h.
Definition at line 153 of file stralign.h.
Referenced by ua_wcsicmp().