mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:26:17 +00:00
Sync with trunk r63502.
svn path=/branches/shell-experiments/; revision=63503
This commit is contained in:
commit
acd03fd182
159 changed files with 9454 additions and 8144 deletions
45
lib/sdk/crt/string/winesup.h
Normal file
45
lib/sdk/crt/string/winesup.h
Normal file
|
@ -0,0 +1,45 @@
|
|||
#pragma once
|
||||
|
||||
#include <stdio.h>
|
||||
#include <conio.h>
|
||||
#include <float.h>
|
||||
#include <locale.h>
|
||||
#include <internal/locale.h>
|
||||
|
||||
#undef NtCurrentPeb
|
||||
#define NtCurrentPeb() (NtCurrentTeb()->Peb)
|
||||
#define GetProcessHeap() (NtCurrentPeb()->ProcessHeap)
|
||||
|
||||
#define HeapAlloc(_Heap, _Flags, _Size) RtlAllocateHeap(_Heap, _Flags, _Size)
|
||||
#define HeapFree(_Heap, _Flags, _Ptr) RtlFreeHeap(_Heap, _Flags, _Ptr)
|
||||
|
||||
#ifdef _LIBCNT_
|
||||
static inline unsigned int __control87(unsigned int new, unsigned int mask)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#define _control87 __control87
|
||||
extern threadlocinfo _LIBCNT_locinfo;
|
||||
#define get_locinfo() (&_LIBCNT_locinfo)
|
||||
#else
|
||||
#define get_locinfo() ((pthreadlocinfo)get_locinfo())
|
||||
#endif
|
||||
|
||||
void
|
||||
__declspec(noinline)
|
||||
_internal_handle_float(
|
||||
int negative,
|
||||
int exp,
|
||||
int suppress,
|
||||
ULONGLONG d,
|
||||
int l_or_L_prefix,
|
||||
va_list *ap);
|
||||
|
||||
//#include <debug.h>
|
||||
|
||||
#define __WINE_DEBUG_H
|
||||
#undef WINE_DEFAULT_DEBUG_CHANNEL
|
||||
#define WINE_DEFAULT_DEBUG_CHANNEL(_Ch)
|
||||
#undef TRACE
|
||||
#define TRACE(...) /* DPRINT(__VA_ARGS__) */
|
||||
#define debugstr_a(format) format
|
Loading…
Add table
Add a link
Reference in a new issue