commit | 8081e5a1e57f9d0fbf46a9fa2c0e6d74aeed4411 | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Fri Jan 05 04:08:07 2001 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Jan 05 04:08:07 2001 +0000 |
tree | dd734717daeea1bc65439aacf6f54911febc0509 | |
parent | 980eeecf99e59768d0fa97a9e8790d7e8208c738 [diff] [blame] |
Added handle_t type to server interface so that we can make handles pointers later on. Always use 0 to signal invalid handle in server requests.
diff --git a/win32/device.c b/win32/device.c index e3fbab9..307b2f5 100644 --- a/win32/device.c +++ b/win32/device.c
@@ -331,7 +331,7 @@ FIXME( "Unknown VxD %s. Try --winver nt40 !\n", filename); SetLastError( ERROR_FILE_NOT_FOUND ); - return HFILE_ERROR; + return 0; } static const struct VxDInfo *DEVICE_GetInfo( HANDLE handle )