include: Add DDHAL_UPDATEOVERLAYDATA structure.
[wine/multimedia.git] / programs / winepath / winepath.c
blob9aef23770ea41a2e2601dbdc262230e0eb580b9a
1 /*
2 * Translate between Windows and Unix paths formats
4 * Copyright 2002 Mike Wetherell
5 * Copyright 2005 Dmitry Timoshkov
6 * Copyright 2005 Francois Gouget
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #define WIN32_LEAN_AND_MEAN
25 #include "config.h"
27 #include <windows.h>
28 #include <stdio.h>
29 #include <stdlib.h>
31 #include "wine/debug.h"
33 enum {
34 SHORTFORMAT = 1,
35 LONGFORMAT = 2,
36 UNIXFORMAT = 4,
37 WINDOWSFORMAT = 8
40 static const char progname[] = "winepath";
43 * handle an option
45 static int option(int shortopt, const WCHAR *longopt)
47 static const char helpmsg[] =
48 "Convert PATH(s) to Unix or Windows long or short paths.\n"
49 "\n"
50 " -u, --unix converts a Windows path to a Unix path\n"
51 " -w, --windows converts a Unix path to a long Windows path\n"
52 " -l, --long converts a short Windows path to the long format\n"
53 " -s, --short converts a long Windows path to the short format\n"
54 " -h, --help output this help message and exit\n"
55 " -v, --version output version information and exit\n"
56 "\n"
57 "If more than one option is given then the input paths are output in\n"
58 "all formats specified, in the order long, short, Unix, Windows.\n"
59 "If no option is given the default is Unix format.\n";
61 switch (shortopt) {
62 case 'h':
63 printf("Usage: %s [OPTION] [PATH]...\n", progname);
64 printf(helpmsg);
65 exit(0);
66 case 'v':
67 printf("%s version " PACKAGE_VERSION "\n", progname);
68 exit(0);
69 case 'l':
70 return LONGFORMAT;
71 case 's':
72 return SHORTFORMAT;
73 case 'u':
74 return UNIXFORMAT;
75 case 'w':
76 return WINDOWSFORMAT;
79 fprintf(stderr, "%s: invalid option ", progname);
80 if (longopt)
81 fprintf(stderr, "%s\n", wine_dbgstr_w(longopt));
82 else
83 fprintf(stderr, "'-%c'\n", shortopt);
84 fprintf(stderr, "Try '%s --help' for help\n", progname);
85 exit(2);
89 * Parse command line options
91 static int parse_options(const WCHAR *argv[])
93 static const WCHAR longW[] = { 'l','o','n','g',0 };
94 static const WCHAR shortW[] = { 's','h','o','r','t',0 };
95 static const WCHAR unixW[] = { 'u','n','i','x',0 };
96 static const WCHAR windowsW[] = { 'w','i','n','d','o','w','s',0 };
97 static const WCHAR helpW[] = { 'h','e','l','p',0 };
98 static const WCHAR versionW[] = { 'v','e','r','s','i','o','n',0 };
99 static const WCHAR nullW[] = { 0 };
100 static const WCHAR *longopts[] = { longW, shortW, unixW, windowsW, helpW, versionW, nullW };
101 int outputformats = 0;
102 int done = 0;
103 int i, j;
105 for (i = 1; argv[i] && !done; )
107 if (argv[i][0] != '-') {
108 /* not an option */
109 i++;
110 continue;
113 if (argv[i][1] == '-') {
114 if (argv[i][2] == 0) {
115 /* '--' end of options */
116 done = 1;
117 } else {
118 /* long option */
119 for (j = 0; longopts[j][0]; j++)
120 if (!lstrcmpiW(argv[i]+2, longopts[j]))
121 break;
122 outputformats |= option(longopts[j][0], argv[i]);
124 } else {
125 /* short options */
126 for (j = 1; argv[i][j]; j++)
127 outputformats |= option(argv[i][j], NULL);
130 /* remove option */
131 for (j = i + 1; argv[j - 1]; j++)
132 argv[j - 1] = argv[j];
135 return outputformats;
139 * Main function
141 int wmain(int argc, const WCHAR *argv[])
143 LPSTR (*wine_get_unix_file_name_ptr)(LPCWSTR) = NULL;
144 LPWSTR (*wine_get_dos_file_name_ptr)(LPCSTR) = NULL;
145 WCHAR dos_pathW[MAX_PATH];
146 char path[MAX_PATH];
147 int outputformats;
148 int i;
150 outputformats = parse_options(argv);
151 if (outputformats == 0)
152 outputformats = UNIXFORMAT;
154 if (outputformats & UNIXFORMAT) {
155 wine_get_unix_file_name_ptr = (void*)
156 GetProcAddress(GetModuleHandle("KERNEL32"),
157 "wine_get_unix_file_name");
158 if (wine_get_unix_file_name_ptr == NULL) {
159 fprintf(stderr, "%s: cannot get the address of "
160 "'wine_get_unix_file_name'\n", progname);
161 exit(3);
165 if (outputformats & WINDOWSFORMAT) {
166 wine_get_dos_file_name_ptr = (void*)
167 GetProcAddress(GetModuleHandle("KERNEL32"),
168 "wine_get_dos_file_name");
169 if (wine_get_dos_file_name_ptr == NULL) {
170 fprintf(stderr, "%s: cannot get the address of "
171 "'wine_get_dos_file_name'\n", progname);
172 exit(3);
176 for (i = 1; argv[i]; i++)
178 *path='\0';
179 if (outputformats & LONGFORMAT) {
180 if (GetFullPathNameW(argv[i], MAX_PATH, dos_pathW, NULL))
181 WideCharToMultiByte(CP_UNIXCP, 0, dos_pathW, -1, path, MAX_PATH, NULL, NULL);
182 printf("%s\n", path);
184 if (outputformats & SHORTFORMAT) {
185 if (GetShortPathNameW(argv[i], dos_pathW, MAX_PATH))
186 WideCharToMultiByte(CP_UNIXCP, 0, dos_pathW, -1, path, MAX_PATH, NULL, NULL);
187 printf("%s\n", path);
189 if (outputformats & UNIXFORMAT) {
190 char *unix_name;
192 if ((unix_name = wine_get_unix_file_name_ptr(argv[i])))
194 printf("%s\n", unix_name);
195 HeapFree( GetProcessHeap(), 0, unix_name );
197 else printf( "\n" );
199 if (outputformats & WINDOWSFORMAT) {
200 WCHAR* windows_name;
201 char* unix_name;
202 DWORD size;
204 size=WideCharToMultiByte(CP_UNIXCP, 0, argv[i], -1, NULL, 0, NULL, NULL);
205 unix_name=HeapAlloc(GetProcessHeap(), 0, size);
206 WideCharToMultiByte(CP_UNIXCP, 0, argv[i], -1, unix_name, size, NULL, NULL);
208 if ((windows_name = wine_get_dos_file_name_ptr(unix_name)))
210 WideCharToMultiByte(CP_UNIXCP, 0, windows_name, -1, path, MAX_PATH, NULL, NULL);
211 printf("%s\n", path);
212 HeapFree( GetProcessHeap(), 0, windows_name );
214 else printf( "\n" );
215 HeapFree( GetProcessHeap(), 0, unix_name );
219 exit(0);