regstr.h revision 4b9d6701570cb98fd36e209314239d104ec584d3
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync/*
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync * Win32 registry string defines (see also winnt.h)
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync *
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync * Copyright (C) 2000 Andreas Mohr
0e52499a0d557fe66f1bea625fe78d8d15e6238bvboxsync *
0e52499a0d557fe66f1bea625fe78d8d15e6238bvboxsync * This library is free software; you can redistribute it and/or
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync * modify it under the terms of the GNU Lesser General Public
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync * License as published by the Free Software Foundation; either
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync * version 2.1 of the License, or (at your option) any later version.
625c607af2ec5549c016c35f80cb8741eafd774bvboxsync *
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync * This library is distributed in the hope that it will be useful,
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync * but WITHOUT ANY WARRANTY; without even the implied warranty of
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync * Lesser General Public License for more details.
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync *
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync * You should have received a copy of the GNU Lesser General Public
625c607af2ec5549c016c35f80cb8741eafd774bvboxsync * License along with this library; if not, write to the Free Software
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync */
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync/*
ee994aafbbf90369e5381e7c81b82a3462b32923vboxsync * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
ee994aafbbf90369e5381e7c81b82a3462b32923vboxsync * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync * a choice of LGPL license versions is made available with the language indicating
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync * that LGPLv2 or any later version may be used, or where a choice of which version
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync * of the LGPL is applied is otherwise unspecified.
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync */
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync#ifndef _INC_REGSTR
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync#define _INC_REGSTR
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync#define REGSTR_PATH_UNINSTALL TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall")
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync/* DisplayName <= 32 chars in Windows (otherwise not displayed for uninstall) */
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync#define REGSTR_VAL_UNINSTALLER_DISPLAYNAME TEXT("DisplayName")
625c607af2ec5549c016c35f80cb8741eafd774bvboxsync/* UninstallString <= 63 chars in Windows (otherwise problems) */
9562e2d410460d8fae06fa24297f172fee1d1995vboxsync#define REGSTR_VAL_UNINSTALLER_COMMANDLINE TEXT("UninstallString")
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync#endif /* _INC_REGSTR_H */
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync