Added support for special treatments (use 2 or more fonts, codepage
[wine.git] / dlls / ntdll / misc.c
blob25d4097888d6923891b93e4a77956d2890da3614
1 /*
2 * Helper functions for ntdll
3 */
4 #include <time.h>
5 #include <math.h>
7 #include "config.h"
9 #include "debugtools.h"
10 #include "ntdll_misc.h"
12 DEFAULT_DEBUG_CHANNEL(ntdll);
14 #if defined(__GNUC__) && defined(__i386__)
15 #define USING_REAL_FPU
16 #define DO_FPU(x,y) __asm__ __volatile__( x " %0;fwait" : "=m" (y) : )
17 #define POP_FPU(x) DO_FPU("fstpl",x)
18 #endif
20 void dump_ObjectAttributes (POBJECT_ATTRIBUTES oa)
22 if (oa)
23 TRACE("%p:(name=%s, attr=0x%08lx, hRoot=0x%08x, sd=%p) \n",
24 oa, debugstr_us(oa->ObjectName),
25 oa->Attributes, oa->RootDirectory, oa->SecurityDescriptor);
28 void dump_AnsiString(PANSI_STRING as, BOOLEAN showstring)
30 if (as)
32 if (showstring)
33 TRACE("%p %p(%s) (%u %u)\n", as, as->Buffer, debugstr_as(as), as->Length, as->MaximumLength);
34 else
35 TRACE("%p %p(<OUT>) (%u %u)\n", as, as->Buffer, as->Length, as->MaximumLength);
39 void dump_UnicodeString(PUNICODE_STRING us, BOOLEAN showstring)
41 if (us)
43 if (showstring)
44 TRACE("%p %p(%s) (%u %u)\n", us, us->Buffer, debugstr_us(us), us->Length, us->MaximumLength);
45 else
46 TRACE("%p %p(<OUT>) (%u %u)\n", us, us->Buffer, us->Length, us->MaximumLength);
50 LPCSTR debugstr_as (PANSI_STRING us)
52 if (!us) return NULL;
53 return debugstr_an(us->Buffer, us->Length);
56 LPCSTR debugstr_us (PUNICODE_STRING us)
58 if (!us) return NULL;
59 return debugstr_wn(us->Buffer, us->Length);
62 /*********************************************************************
63 * _ftol (NTDLL)
65 #ifdef USING_REAL_FPU
66 LONG __cdecl NTDLL__ftol(void)
68 /* don't just do DO_FPU("fistp",retval), because the rounding
69 * mode must also be set to "round towards zero"... */
70 double fl;
71 POP_FPU(fl);
72 return (LONG)fl;
74 #else
75 LONG __cdecl NTDLL__ftol(double fl)
77 FIXME("should be register function\n");
78 return (LONG)fl;
80 #endif
82 /*********************************************************************
83 * _CIpow (NTDLL)
85 #ifdef USING_REAL_FPU
86 LONG __cdecl NTDLL__CIpow(void)
88 double x,y;
89 POP_FPU(y);
90 POP_FPU(x);
91 return pow(x,y);
93 #else
94 LONG __cdecl NTDLL__CIpow(double x,double y)
96 FIXME("should be register function\n");
97 return pow(x,y);
99 #endif