blob: afc1bdaca4ef222a864235ef74a31b16ce5e290a [file] [log] [blame]
Alexandre Julliard86a8d0f1994-01-18 23:04:40 +00001/*
2 * Command-line options.
3 *
4 * Copyright 1994 Alexandre Julliard
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00005 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Alexandre Julliard86a8d0f1994-01-18 23:04:40 +000019 */
20
Alexandre Julliardc6c09441997-01-12 18:32:19 +000021#ifndef __WINE_OPTIONS_H
22#define __WINE_OPTIONS_H
Alexandre Julliard86a8d0f1994-01-18 23:04:40 +000023
Jim Aston2e1cafa1999-03-14 16:35:05 +000024#include "windef.h"
Alexandre Julliard1e37a181996-08-18 16:21:52 +000025
Alexandre Julliardeafa3912000-01-25 21:19:58 +000026extern const char *argv0;
Alexandre Julliarda3e0cfc2000-07-16 18:21:34 +000027extern const char *full_argv0;
Alexandre Julliard86a8d0f1994-01-18 23:04:40 +000028
Alexandre Julliardfe085682000-03-18 21:56:10 +000029extern void OPTIONS_Usage(void) WINE_NORETURN;
Alexandre Julliardc192ba22000-05-29 21:25:10 +000030extern void OPTIONS_ParseOptions( char *argv[] );
Alexandre Julliardfe085682000-03-18 21:56:10 +000031
Alexandre Julliardc6c09441997-01-12 18:32:19 +000032#endif /* __WINE_OPTIONS_H */