X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=examples%2Fapplywim.c;h=cd6d340967ee4fca79029a3f1ae654884254f86b;hb=db1b9ac63e5c0a1dffb51a1a162cf69a01a5cf24;hp=824752b0e349b566e3df6bbaca407ee25f742056;hpb=629719b7d5cad7fc6f2eca7ca11cb99100ed8764;p=wimlib diff --git a/examples/applywim.c b/examples/applywim.c index 824752b0..cd6d3409 100644 --- a/examples/applywim.c +++ b/examples/applywim.c @@ -1,13 +1,41 @@ /* * applywim.c - A program to extract the first image from a WIM file. * - * The author dedicates this file to the public domain. - * You can do whatever you want with this file. + * The following copying information applies to this specific source code file: + * + * Written in 2013-2016 by Eric Biggers + * + * To the extent possible under law, the author(s) have dedicated all copyright + * and related and neighboring rights to this software to the public domain + * worldwide via the Creative Commons Zero 1.0 Universal Public Domain + * Dedication (the "CC0"). + * + * This software is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the CC0 for more details. + * + * You should have received a copy of the CC0 along with this software; if not + * see . */ #include #include +/* + * Windows compatibility defines for string encoding. Applications using wimlib + * that need to run on both UNIX and Windows will need to do something similar + * to this, whereas applications that only need to run on one or the other can + * just use their platform's convention directly. + */ +#ifdef _WIN32 +# define main wmain + typedef wchar_t tchar; +# define TS "ls" +#else + typedef char tchar; +# define TS "s" +#endif + #define TO_PERCENT(numerator, denominator) \ ((float)(((denominator) == 0) ? 0 : ((numerator) * 100 / (float)(denominator)))) @@ -27,12 +55,12 @@ extract_progress(enum wimlib_progress_msg msg, return WIMLIB_PROGRESS_STATUS_CONTINUE; } -int main(int argc, char **argv) +int main(int argc, tchar **argv) { int ret; WIMStruct *wim = NULL; - const char *wimpath; - const char *destdir; + const tchar *wimpath; + const tchar *destdir; /* Check for the correct number of arguments. */ if (argc != 3) { @@ -65,8 +93,8 @@ out: /* Check for error status. */ if (ret != 0) { - fprintf(stderr, "wimlib error %d: %s\n", - ret, wimlib_get_error_string(ret)); + fprintf(stderr, "wimlib error %d: %" TS"\n", + ret, wimlib_get_error_string((enum wimlib_error_code)ret)); } /* Free global memory (optional). */