For static libs (.a) we need to pass the actual filename to winebuild,
not a -l switch. Do not remove the file extension to get to the base
name if it's not .exe or .exe.so. Link shell32 by default for GUI
programs. Fix parsing of options with arguments.

diff --git a/tools/winegcc/utils.h b/tools/winegcc/utils.h
index c0c0b4f..cf35c31 100644
--- a/tools/winegcc/utils.h
+++ b/tools/winegcc/utils.h
@@ -46,8 +46,8 @@
 
 char* get_basename(const char* file);
 void create_file(const char* name, const char* fmt, ...);
-file_type get_file_type(const char* dir, const char* filename);
-file_type get_lib_type(strarray* path, const char* library);
+file_type get_file_type(const char* filename);
+file_type get_lib_type(strarray* path, const char* library, char** file);
 void spawn(const strarray* arr);
 
 extern int verbose;