mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
ntdll: Improve the prototypes Win64 compatibility by replacing long with LONG.
This commit is contained in:
parent
f44bc89bc4
commit
6936bb100f
4 changed files with 12 additions and 14 deletions
|
@ -149,7 +149,7 @@ int CDECL NTDLL_abs( int i )
|
|||
/*********************************************************************
|
||||
* labs (NTDLL.@)
|
||||
*/
|
||||
long CDECL NTDLL_labs( long i )
|
||||
LONG CDECL NTDLL_labs( LONG i )
|
||||
{
|
||||
return labs( i );
|
||||
}
|
||||
|
|
|
@ -449,7 +449,7 @@ int __cdecl NTDLL_isxdigit( int c )
|
|||
/*********************************************************************
|
||||
* strtol (NTDLL.@)
|
||||
*/
|
||||
long __cdecl NTDLL_strtol( const char *nptr, char **endptr, int base )
|
||||
LONG __cdecl NTDLL_strtol( const char *nptr, char **endptr, int base )
|
||||
{
|
||||
return strtol( nptr, endptr, base );
|
||||
}
|
||||
|
@ -458,7 +458,7 @@ long __cdecl NTDLL_strtol( const char *nptr, char **endptr, int base )
|
|||
/*********************************************************************
|
||||
* strtoul (NTDLL.@)
|
||||
*/
|
||||
unsigned long __cdecl NTDLL_strtoul( const char *nptr, char **endptr, int base )
|
||||
ULONG __cdecl NTDLL_strtoul( const char *nptr, char **endptr, int base )
|
||||
{
|
||||
return strtoul( nptr, endptr, base );
|
||||
}
|
||||
|
@ -476,7 +476,7 @@ int __cdecl NTDLL_atoi( const char *nptr )
|
|||
/*********************************************************************
|
||||
* atol (NTDLL.@)
|
||||
*/
|
||||
long __cdecl NTDLL_atol( const char *nptr )
|
||||
LONG __cdecl NTDLL_atol( const char *nptr )
|
||||
{
|
||||
return atol( nptr );
|
||||
}
|
||||
|
@ -497,7 +497,7 @@ long __cdecl NTDLL_atol( const char *nptr )
|
|||
* - If str is NULL it crashes, as the native function does.
|
||||
*/
|
||||
char * __cdecl _ultoa(
|
||||
unsigned long value, /* [I] Value to be converted */
|
||||
ULONG value, /* [I] Value to be converted */
|
||||
char *str, /* [O] Destination for the converted value */
|
||||
int radix) /* [I] Number base for conversion */
|
||||
{
|
||||
|
@ -539,11 +539,11 @@ char * __cdecl _ultoa(
|
|||
* - If str is NULL it crashes, as the native function does.
|
||||
*/
|
||||
char * __cdecl _ltoa(
|
||||
long value, /* [I] Value to be converted */
|
||||
LONG value, /* [I] Value to be converted */
|
||||
char *str, /* [O] Destination for the converted value */
|
||||
int radix) /* [I] Number base for conversion */
|
||||
{
|
||||
unsigned long val;
|
||||
ULONG val;
|
||||
int negative;
|
||||
char buffer[33];
|
||||
char *pos;
|
||||
|
|
|
@ -278,7 +278,7 @@ INT __cdecl NTDLL_mbstowcs( LPWSTR dst, LPCSTR src, INT n )
|
|||
/*********************************************************************
|
||||
* wcstol (NTDLL.@)
|
||||
*/
|
||||
long __cdecl NTDLL_wcstol(LPCWSTR s,LPWSTR *end,INT base)
|
||||
LONG __cdecl NTDLL_wcstol(LPCWSTR s, LPWSTR *end, INT base)
|
||||
{
|
||||
return strtolW( s, end, base );
|
||||
}
|
||||
|
@ -287,7 +287,7 @@ long __cdecl NTDLL_wcstol(LPCWSTR s,LPWSTR *end,INT base)
|
|||
/*********************************************************************
|
||||
* wcstoul (NTDLL.@)
|
||||
*/
|
||||
unsigned long __cdecl NTDLL_wcstoul(LPCWSTR s,LPWSTR *end,INT base)
|
||||
ULONG __cdecl NTDLL_wcstoul(LPCWSTR s, LPWSTR *end, INT base)
|
||||
{
|
||||
return strtoulW( s, end, base );
|
||||
}
|
||||
|
@ -392,7 +392,7 @@ INT __cdecl NTDLL_iswxdigit( WCHAR wc )
|
|||
* If str is NULL it just returns NULL.
|
||||
*/
|
||||
LPWSTR __cdecl _ultow(
|
||||
unsigned long value, /* [I] Value to be converted */
|
||||
ULONG value, /* [I] Value to be converted */
|
||||
LPWSTR str, /* [O] Destination for the converted value */
|
||||
INT radix) /* [I] Number base for conversion */
|
||||
{
|
||||
|
@ -436,11 +436,11 @@ LPWSTR __cdecl _ultow(
|
|||
* If str is NULL it just returns NULL.
|
||||
*/
|
||||
LPWSTR __cdecl _ltow(
|
||||
long value, /* [I] Value to be converted */
|
||||
LONG value, /* [I] Value to be converted */
|
||||
LPWSTR str, /* [O] Destination for the converted value */
|
||||
INT radix) /* [I] Number base for conversion */
|
||||
{
|
||||
unsigned long val;
|
||||
ULONG val;
|
||||
int negative;
|
||||
WCHAR buffer[33];
|
||||
PWCHAR pos;
|
||||
|
|
|
@ -2818,11 +2818,9 @@ ULONG
|
|||
WCHAR
|
||||
WORD
|
||||
int
|
||||
long
|
||||
obj_handle_t
|
||||
size_t
|
||||
unsigned int
|
||||
unsigned long
|
||||
|
||||
%long --pointer
|
||||
|
||||
|
|
Loading…
Reference in a new issue