version 1.1, 2012/02/21 22:57:48
|
version 1.1.1.2, 2012/05/29 09:29:43
|
Line 1
|
Line 1
|
/* Program name management. |
/* Program name management. |
Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc. | Copyright (C) 2001-2004, 2006, 2009-2011 Free Software Foundation, Inc. |
Written by Bruno Haible <haible@clisp.cons.org>, 2001. | Written by Bruno Haible <bruno@clisp.org>, 2001. |
|
|
This program is free software: you can redistribute it and/or modify |
This program is free software: you can redistribute it and/or modify |
it under the terms of the GNU General Public License as published by |
it under the terms of the GNU General Public License as published by |
Line 31 extern "C" {
|
Line 31 extern "C" {
|
/* String containing name the program is called with. */ |
/* String containing name the program is called with. */ |
extern DLL_VARIABLE const char *program_name; |
extern DLL_VARIABLE const char *program_name; |
|
|
/* Set program_name, based on argv[0]. */ | /* Set program_name, based on argv[0]. |
| argv0 must be a string allocated with indefinite extent, and must not be |
| modified after this call. */ |
extern void set_program_name (const char *argv0); |
extern void set_program_name (const char *argv0); |
|
|
#if ENABLE_RELOCATABLE |
#if ENABLE_RELOCATABLE |
Line 39 extern void set_program_name (const char *argv0);
|
Line 41 extern void set_program_name (const char *argv0);
|
/* Set program_name, based on argv[0], and original installation prefix and |
/* Set program_name, based on argv[0], and original installation prefix and |
directory, for relocatability. */ |
directory, for relocatability. */ |
extern void set_program_name_and_installdir (const char *argv0, |
extern void set_program_name_and_installdir (const char *argv0, |
const char *orig_installprefix, | const char *orig_installprefix, |
const char *orig_installdir); | const char *orig_installdir); |
#undef set_program_name |
#undef set_program_name |
#define set_program_name(ARG0) \ |
#define set_program_name(ARG0) \ |
set_program_name_and_installdir (ARG0, INSTALLPREFIX, INSTALLDIR) |
set_program_name_and_installdir (ARG0, INSTALLPREFIX, INSTALLDIR) |