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 24 // MARKER(update_precomp.py): autogen include statement, do not remove 25 #include "precompiled_tools.hxx" 26 27 #define _TOOLS_TOOLSIN_CXX 28 29 #include <string.h> 30 #include <tools/shl.hxx> 31 #include <tools/debug.hxx> 32 #include <toolsin.hxx> 33 34 #if defined WNT 35 #include <dll.hxx> 36 #endif 37 38 void ImplDeleteCharTabData(); 39 40 // ======================================================================= 41 ImplGetToolsInData()42TOOLSINDATA* ImplGetToolsInData() 43 { 44 TOOLSINDATA** ppData = (TOOLSINDATA**)GetAppData( SHL_TOOLS ); 45 if ( !(*ppData) ) 46 { 47 TOOLSINDATA* pData = new TOOLSINDATA; 48 memset( pData, 0, sizeof( TOOLSINDATA ) ); 49 *ppData = pData; 50 } 51 52 return *ppData; 53 } 54 55 // ======================================================================= 56 InitTools()57void InitTools() 58 { 59 DBG_DEBUGSTART(); 60 } 61 62 // ----------------------------------------------------------------------- 63 DeInitTools()64void DeInitTools() 65 { 66 TOOLSINDATA** ppData = (TOOLSINDATA**)GetAppData( SHL_TOOLS ); 67 TOOLSINDATA* pData = *ppData; 68 69 if ( pData ) 70 { 71 ImplDeleteCharTabData(); 72 delete pData; 73 *ppData = NULL; 74 } 75 76 DBG_DEBUGEND(); 77 } 78 79 // ----------------------------------------------------------------------- 80 GlobalDeInitTools()81void GlobalDeInitTools() 82 { 83 DBG_GLOBALDEBUGEND(); 84 85 #if defined WNT 86 ImpDeInitWinTools(); 87 #endif 88 #ifdef OS2_YD_REMOVEME 89 ImpDeInitOS2Tools(); 90 #endif 91 } 92