- Timestamp:
- Feb 21, 2010, 5:34:22 PM (16 years ago)
- Location:
- trunk/src/NTDLL
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NTDLL/large_int.c
r9986 r21357 32 32 * and do everything by hand. You are welcome to do it... 33 33 */ 34 35 /****************************************************************************** 36 * used by RtlLargeIntegerToChar() - prototyped here to quiet the compiler 37 */ 38 39 void* memcpy(void*, const void*, size_t); 34 40 35 41 /****************************************************************************** -
trunk/src/NTDLL/ntdll.c
r9992 r21357 89 89 case DLL_PROCESS_ATTACH: 90 90 { 91 SID_IDENTIFIER_AUTHORITY sidIdAuth = { 0};91 SID_IDENTIFIER_AUTHORITY sidIdAuth = {{0}}; 92 92 93 93 ProcSecInfo.dwType = SECTYPE_PROCESS | SECTYPE_INITIALIZED; -
trunk/src/NTDLL/ntdll.def
r21307 r21357 976 976 __i64toa @949 977 977 __i64tow @950 978 _itoa = _NTDLL_itoa 979 __itow 980 _ltoa = _NTDLL_ltoa 981 __ltow 982 _memccpy 983 _memicmp = _NTDLL__memicmp 984 __snprintf = _snprintf@957985 __snwprintf = __snwprintf@958986 __splitpath = __splitpath@959987 _strcmpi = _ stricmp@960988 _stricmp = _ stricmp@961989 _strlwr = _ strlwr@962990 _strnicmp 991 _strupr 992 _ultoa = _NTDLL_ultoa@967993 __ultow 994 _vsnprintf 995 _wcsicmp = _NTDLL__wcsicmp 996 _wcslwr = _NTDLL__wcslwr 997 _wcsnicmp = _NTDLL__wcsnicmp 998 _wcsupr = _NTDLL__wcsupr 999 __wtoi 1000 __wtoi64 1001 __wtol 978 _itoa = _NTDLL_itoa @951 979 __itow @952 980 _ltoa = _NTDLL_ltoa @953 981 __ltow @954 982 _memccpy = __std_memccpy @955 983 _memicmp = _NTDLL__memicmp @956 984 __snprintf = __std_snprintf @957 985 __snwprintf = __snwprintf @958 986 __splitpath = __splitpath @959 987 _strcmpi = __std_stricmp @960 988 _stricmp = __std_stricmp @961 989 _strlwr = __std_strlwr @962 990 _strnicmp = __std_strnicmp @963 991 _strupr = __std_strupr @964 992 _ultoa = _NTDLL_ultoa @967 993 __ultow @968 994 _vsnprintf = __std_vsnprintf @969 995 _wcsicmp = _NTDLL__wcsicmp @970 996 _wcslwr = _NTDLL__wcslwr @971 997 _wcsnicmp = _NTDLL__wcsnicmp @972 998 _wcsupr = _NTDLL__wcsupr @973 999 __wtoi @974 1000 __wtoi64 @975 1001 __wtol @976 1002 1002 1003 1003 ; Borrow most funcs from our internal Odin EMX runtime -
trunk/src/NTDLL/reg.c
r9992 r21357 19 19 #include "debugtools.h" 20 20 21 /*RLW - this isn't used & generates a gcc warning */ 22 #if 0 21 23 22 24 /* translates predefined paths to HKEY_ constants */ … … 82 84 } 83 85 84 86 #endif 85 87 86 88 /****************************************************************************** -
trunk/src/NTDLL/rtl.c
r9992 r21357 443 443 DWORD x3) 444 444 { 445 LPSTR fromA = HEAP_strdupWtoA(GetProcessHeap(),0,from);445 // LPSTR fromA = HEAP_strdupWtoA(GetProcessHeap(),0,from); 446 446 447 447 dprintf(("NTDLL: RtlDosPathNameToNtPathName_U(%08xh,%08h,%08xh,%08xh) not implemented.\n", … … 614 614 OSVERSIONINFOEXW versionInfo; 615 615 versionInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEXW); 616 GetVersionExW((OSVERSIONINFOW*) &versionInfo);616 GetVersionExW((OSVERSIONINFOW*)((void*)&versionInfo)); 617 617 618 618 if (major) -
trunk/src/NTDLL/time.c
r9986 r21357 453 453 RtlQueryTimeZoneInformation(&tzinfo); 454 454 LocalTime->QuadPart = SystemTime->QuadPart - tzinfo.Bias * 60 * (LONGLONG)10000000; 455 return STATUS_SUCCESS;455 return; 456 456 } 457 457
Note:
See TracChangeset
for help on using the changeset viewer.