add per-platform locale #includes

not part of build yet
This commit is contained in:
alecf%netscape.com 2002-09-19 06:17:31 +00:00
Родитель ad5e6a0972
Коммит 858ad20458
1 изменённых файлов: 17 добавлений и 1 удалений

Просмотреть файл

@ -49,13 +49,29 @@
#include "nsIServiceManager.h"
#include "nsLanguageAtomService.h"
#include "nsLocaleCID.h"
#include "nsIWin32LocaleImpl.h"
#ifdef XP_WIN
#include "nsIWin32LocaleImpl.h"
#include "nsCollationWin.h"
#include "nsDateTimeFormatWin.h"
#endif
#ifdef XP_MAC
#ifdef USE_UCCOLLATIONKEY
#include "nsCollationMacUC.h"
#else
#include "nsCollationMac.h"
#endif
#include "nsDateTimeFormatMac.h"
#include "nsMacLocale.h"
#endif
#ifdef XP_UNIX
#include "nsCollationUnix.h"
#include "nsDateTimeFormatUnix.h"
#include "nsPosixLocale.h"
#endif
#define NSLOCALE_MAKE_CTOR(ctor_, iface_, func_) \
static NS_IMETHODIMP \
ctor_(nsISupports* aOuter, REFNSIID aIID, void** aResult) \