Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9daaab54
Commit
9daaab54
authored
Jan 23, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Use Win32 types instead of long long.
parent
58273ea9
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
stabs.c
dlls/dbghelp/stabs.c
+2
-2
be_alpha.c
programs/winedbg/be_alpha.c
+1
-1
be_cpu.h
programs/winedbg/be_cpu.h
+1
-1
be_i386.c
programs/winedbg/be_i386.c
+2
-2
be_ppc.c
programs/winedbg/be_ppc.c
+1
-1
memory.c
programs/winedbg/memory.c
+1
-1
types.c
programs/winedbg/types.c
+1
-1
No files found.
dlls/dbghelp/stabs.c
View file @
9daaab54
...
...
@@ -428,7 +428,7 @@ static int stabs_pts_read_type_reference(struct ParseTypedefData* ptd,
struct
pts_range_value
{
unsigned
long
long
val
;
ULONGLONG
val
;
int
sign
;
};
...
...
@@ -483,7 +483,7 @@ static int stabs_pts_read_range(struct ParseTypedefData* ptd, const char* typena
unsigned
size
;
enum
BasicType
bt
;
int
i
;
unsigned
long
long
v
;
ULONGLONG
v
;
/* type ';' <int> ';' <int> ';' */
PTS_ABORTIF
(
ptd
,
stabs_pts_read_type_def
(
ptd
,
NULL
,
&
ref
)
==
-
1
);
...
...
programs/winedbg/be_alpha.c
View file @
9daaab54
...
...
@@ -130,7 +130,7 @@ static int be_alpha_adjust_pc_for_break(CONTEXT* ctx, BOOL way)
}
static
int
be_alpha_fetch_integer
(
const
struct
dbg_lvalue
*
lvalue
,
unsigned
size
,
unsigned
ext_sign
,
long
long
int
*
ret
)
unsigned
ext_sign
,
LONGLONG
*
ret
)
{
dbg_printf
(
"not done
\n
"
);
return
FALSE
;
...
...
programs/winedbg/be_cpu.h
View file @
9daaab54
...
...
@@ -103,7 +103,7 @@ struct backend_cpu
* basic type read/write
* -------------------------------------------------------------------------------*/
/* Reads an integer from memory and stores it inside a long long int */
int
(
*
fetch_integer
)(
const
struct
dbg_lvalue
*
lvalue
,
unsigned
size
,
unsigned
is_signed
,
long
long
int
*
);
int
(
*
fetch_integer
)(
const
struct
dbg_lvalue
*
lvalue
,
unsigned
size
,
unsigned
is_signed
,
LONGLONG
*
);
/* Reads a real from memory and stores it inside a long double */
int
(
*
fetch_float
)(
const
struct
dbg_lvalue
*
lvalue
,
unsigned
size
,
long
double
*
);
};
...
...
programs/winedbg/be_i386.c
View file @
9daaab54
...
...
@@ -496,7 +496,7 @@ static int be_i386_adjust_pc_for_break(CONTEXT* ctx, BOOL way)
}
static
int
be_i386_fetch_integer
(
const
struct
dbg_lvalue
*
lvalue
,
unsigned
size
,
unsigned
ext_sign
,
long
long
int
*
ret
)
unsigned
ext_sign
,
LONGLONG
*
ret
)
{
if
(
size
!=
1
&&
size
!=
2
&&
size
!=
4
&&
size
!=
8
)
return
FALSE
;
...
...
@@ -509,7 +509,7 @@ static int be_i386_fetch_integer(const struct dbg_lvalue* lvalue, unsigned size,
/* propagate sign information */
if
(
ext_sign
&&
size
<
8
&&
(
*
ret
>>
(
size
*
8
-
1
))
!=
0
)
{
long
long
unsigned
int
neg
=
-
1
;
ULONGLONG
neg
=
-
1
;
*
ret
|=
neg
<<
(
size
*
8
);
}
return
TRUE
;
...
...
programs/winedbg/be_ppc.c
View file @
9daaab54
...
...
@@ -154,7 +154,7 @@ static int be_ppc_adjust_pc_for_break(CONTEXT* ctx, BOOL way)
}
static
int
be_ppc_fetch_integer
(
const
struct
dbg_lvalue
*
lvalue
,
unsigned
size
,
unsigned
ext_sign
,
long
long
int
*
ret
)
unsigned
ext_sign
,
LONGLONG
*
ret
)
{
dbg_printf
(
"not done
\n
"
);
return
FALSE
;
...
...
programs/winedbg/memory.c
View file @
9daaab54
...
...
@@ -275,7 +275,7 @@ BOOL memory_get_string_indirect(struct dbg_process* pcs, void* addr, BOOL unicod
static
void
print_typed_basic
(
const
struct
dbg_lvalue
*
lvalue
)
{
long
long
int
val_int
;
LONGLONG
val_int
;
void
*
val_ptr
;
long
double
val_real
;
DWORD64
size64
;
...
...
programs/winedbg/types.c
View file @
9daaab54
...
...
@@ -38,7 +38,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(winedbg);
long
int
types_extract_as_integer
(
const
struct
dbg_lvalue
*
lvalue
)
{
long
int
rtn
=
0
;
long
long
int
val
;
LONGLONG
val
;
DWORD
tag
,
bt
;
DWORD64
size
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment