1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23#ifndef EXTENSIONS_INC_EXTENSIO_HRC 24#define EXTENSIONS_INC_EXTENSIO_HRC 25 26#include <svl/solar.hrc> 27 28// ----------------------------------------------------------------------- 29// - resource id ranges 30 31#define RID_ABP_START ( RID_MORE_EXTENSIONS_START + 0 ) 32#define RID_ABP_END ( RID_MORE_EXTENSIONS_START + 19 ) 33 34#define RID_DBP_START ( RID_MORE_EXTENSIONS_START + 20 ) 35#define RID_DBP_END ( RID_MORE_EXTENSIONS_START + 39 ) 36 37// !!! please adjust RID_LAST_EXTENSIONS_RANGE if you add new ranges here !!! 38 39#define RID_LAST_EXTENSIONS_RANGE RID_DBP_END 40 41#if RID_LAST_EXTENSIONS_RANGE > RID_MORE_EXTENSIONS_END 42 #error id range overflow 43#endif 44 45// ----------------------------------------------------------------------- 46// - help id ranges 47 48#define HID_DBP_START ( HID_EXTENSIONS_START + 0 ) 49#define HID_DBP_END ( HID_EXTENSIONS_START + 19 ) 50 51#define HID_ABP_START ( HID_EXTENSIONS_START + 20 ) 52#define HID_ABP_END ( HID_EXTENSIONS_START + 39 ) 53 54#define HID_BIBLIO_START ( HID_EXTENSIONS_START + 40 ) 55#define HID_BIBLIO_END ( HID_EXTENSIONS_START + 89 ) 56 57#define HID_PROPC_START ( HID_EXTENSIONS_START + 90 ) 58#define HID_PROPC_END ( HID_EXTENSIONS_START + 499 ) 59 60#define HID_UPDATE_START ( HID_EXTENSIONS_START + 500 ) 61#define HID_UPDATE_END ( HID_EXTENSIONS_START + 519 ) 62 63// !!! please adjust HID_LAST_EXTENSIONS_RANGE if you add new ranges here !!! 64 65#define HID_LAST_EXTENSIONS_RANGE HID_UPDATE_END 66 67#if HID_LAST_EXTENSIONS_RANGE > HID_EXTENSIONS_END 68 #error id range overflow 69#endif 70 71#endif 72