mshtml: Use return_nsstr_variant in IHTMLBodyElement::get_bgColor.
[wine.git] / include / msvcrt / memory.h
blob21198e8f8bfbe2f1d228978d5b984b17cc40a838
1 /*
2 * Memory definitions
4 * Derived from the mingw header written by Colin Peters.
5 * Modified for Wine use by Jon Griffiths and Francois Gouget.
6 * This file is in the public domain.
7 */
8 #ifndef __WINE_MEMORY_H
9 #define __WINE_MEMORY_H
11 #include <corecrt.h>
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
17 #ifndef _CRT_MEMORY_DEFINED
18 #define _CRT_MEMORY_DEFINED
20 void* __cdecl memchr(const void*,int,size_t);
21 int __cdecl memcmp(const void*,const void*,size_t);
22 void* __cdecl memcpy(void*,const void*,size_t);
23 errno_t __cdecl memcpy_s(void*,size_t,const void*,size_t);
24 void* __cdecl memset(void*,int,size_t);
25 void* __cdecl _memccpy(void*,const void*,int,unsigned int);
26 int __cdecl _memicmp(const void*,const void*,unsigned int);
27 int __cdecl _memicmp_l(const void*,const void*,unsigned int,_locale_t);
29 static inline int memicmp(const void* s1, const void* s2, size_t len) { return _memicmp(s1, s2, len); }
30 static inline void* memccpy(void *s1, const void *s2, int c, size_t n) { return _memccpy(s1, s2, c, n); }
32 #endif /* _CRT_MEMORY_DEFINED */
34 #ifdef __cplusplus
36 #endif
38 #endif /* __WINE_MEMORY_H */