1*d5f0e82bSstippi /* 2*d5f0e82bSstippi * Copyright (C) 2010 Stephan Aßmus <superstippi@gmx.de> 3*d5f0e82bSstippi * 4*d5f0e82bSstippi * All rights reserved. 5*d5f0e82bSstippi * 6*d5f0e82bSstippi * Redistribution and use in source and binary forms, with or without 7*d5f0e82bSstippi * modification, are permitted provided that the following conditions 8*d5f0e82bSstippi * are met: 9*d5f0e82bSstippi * 1. Redistributions of source code must retain the above copyright 10*d5f0e82bSstippi * notice, this list of conditions and the following disclaimer. 11*d5f0e82bSstippi * 2. Redistributions in binary form must reproduce the above copyright 12*d5f0e82bSstippi * notice, this list of conditions and the following disclaimer in the 13*d5f0e82bSstippi * documentation and/or other materials provided with the distribution. 14*d5f0e82bSstippi * 15*d5f0e82bSstippi * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY 16*d5f0e82bSstippi * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17*d5f0e82bSstippi * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 18*d5f0e82bSstippi * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 19*d5f0e82bSstippi * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 20*d5f0e82bSstippi * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 21*d5f0e82bSstippi * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 22*d5f0e82bSstippi * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 23*d5f0e82bSstippi * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24*d5f0e82bSstippi * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25*d5f0e82bSstippi * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26*d5f0e82bSstippi */ 27*d5f0e82bSstippi #ifndef SETTINGS_KEYS_H 28*d5f0e82bSstippi #define SETTINGS_KEYS_H 29*d5f0e82bSstippi 30*d5f0e82bSstippi #include <SupportDefs.h> 31*d5f0e82bSstippi 32*d5f0e82bSstippi 33*d5f0e82bSstippi extern const char* kSettingsKeyDownloadPath; 34*d5f0e82bSstippi extern const char* kSettingsKeyShowTabsIfSinglePageOpen; 35*d5f0e82bSstippi 36*d5f0e82bSstippi 37*d5f0e82bSstippi #endif // SETTINGS_KEYS_H 38