1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/mozapps/update/common/readstrings.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,45 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* vim:set ts=2 sw=2 sts=2 et cindent: */ 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +#ifndef READSTRINGS_H__ 1.11 +#define READSTRINGS_H__ 1.12 + 1.13 +#include "mozilla/NullPtr.h" 1.14 + 1.15 +#define MAX_TEXT_LEN 600 1.16 + 1.17 +#ifdef XP_WIN 1.18 +# include <windows.h> 1.19 + typedef WCHAR NS_tchar; 1.20 +#else 1.21 + typedef char NS_tchar; 1.22 +#endif 1.23 + 1.24 +#ifndef NULL 1.25 +#define NULL 0 1.26 +#endif 1.27 + 1.28 +struct StringTable 1.29 +{ 1.30 + char title[MAX_TEXT_LEN]; 1.31 + char info[MAX_TEXT_LEN]; 1.32 +}; 1.33 + 1.34 +/** 1.35 + * This function reads in localized strings from updater.ini 1.36 + */ 1.37 +int ReadStrings(const NS_tchar *path, StringTable *results); 1.38 + 1.39 +/** 1.40 + * This function reads in localized strings corresponding to the keys from a given .ini 1.41 + */ 1.42 +int ReadStrings(const NS_tchar *path, 1.43 + const char *keyList, 1.44 + unsigned int numStrings, 1.45 + char results[][MAX_TEXT_LEN], 1.46 + const char *section = nullptr); 1.47 + 1.48 +#endif // READSTRINGS_H__