Rev | Line | |
---|
[18] | 1 | /*
|
---|
| 2 | * Config.sys parameter parsing
|
---|
| 3 | *
|
---|
| 4 | * (C) 2000-2002 InnoTek Systemberatung GmbH
|
---|
| 5 | *
|
---|
| 6 | * This program is free software; you can redistribute it and/or
|
---|
| 7 | * modify it under the terms of the GNU General Public License as
|
---|
| 8 | * published by the Free Software Foundation; either version 2 of
|
---|
| 9 | * the License, or (at your option) any later version.
|
---|
| 10 | *
|
---|
| 11 | * This program 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
|
---|
| 14 | * GNU General Public License for more details.
|
---|
| 15 | *
|
---|
| 16 | * You should have received a copy of the GNU General Public
|
---|
| 17 | * License along with this program; if not, write to the Free
|
---|
| 18 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
|
---|
| 19 | * USA.
|
---|
| 20 | */
|
---|
| 21 |
|
---|
| 22 | #ifndef PARSE_INCLUDED
|
---|
| 23 | #define PARSE_INCLUDED
|
---|
| 24 |
|
---|
| 25 | #ifdef __cplusplus
|
---|
| 26 | extern "C" {
|
---|
| 27 | #endif
|
---|
| 28 |
|
---|
| 29 | #define SIZE_CONFIG_LINE 256
|
---|
| 30 |
|
---|
| 31 | // True if the /V parameter was specified
|
---|
| 32 | extern int fVerbose;
|
---|
| 33 | extern int fDebug;
|
---|
| 34 |
|
---|
| 35 | int GetParms(char FAR48 *pszCmdLine);
|
---|
| 36 |
|
---|
| 37 | #ifdef __cplusplus
|
---|
| 38 | }
|
---|
| 39 | #endif
|
---|
| 40 |
|
---|
| 41 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.