commit | 54f228733ac8263f55d2292afc797a4df288413c | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Thu Oct 03 19:54:57 2002 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Oct 03 19:54:57 2002 +0000 |
tree | befdc2926f2134f8a13dfad69bc29b3dac0e3e9e | |
parent | 3b059b2a3ef8bd549e211e7a2a49f8c42b196001 [diff] [blame] |
Added process_id_t and thread_it_t types to the server interface instead of using void*, and removed a number of type casts.
diff --git a/server/snapshot.c b/server/snapshot.c index c9a1225..562f901 100644 --- a/server/snapshot.c +++ b/server/snapshot.c
@@ -73,7 +73,7 @@ /* create a new snapshot */ -static struct snapshot *create_snapshot( void *pid, int flags ) +static struct snapshot *create_snapshot( process_id_t pid, int flags ) { struct process *process = NULL; struct snapshot *snapshot;