mirror of
https://github.com/reactos/reactos.git
synced 2025-04-30 02:58:48 +00:00

- Import the mingw startup library and customized it a little. _tmain() is now supported, compiling an application as unicode is now just a matter of setting the module attribute unicode="true" - Fixed .rbuild files to import all libraries neccessary - Various GUID header changes and hacks to get everything to build/link properly - Fixed the IShellView2 interface svn path=/trunk/; revision=23933
15 lines
210 B
C
15 lines
210 B
C
/* $Id$
|
|
*/
|
|
/*
|
|
tgetopt -- POSIX-compliant implementation of getopt() with string-type-generic
|
|
semantics
|
|
|
|
This is public domain software
|
|
*/
|
|
|
|
#include <wchar.h>
|
|
|
|
#define _UNICODE
|
|
#include "getopt.c"
|
|
|
|
/* EOF */
|