1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: sddll.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
35 #include <sfx2/module.hxx>
36 #include <sfx2/sfxdefs.hxx>
44 /*************************************************************************
46 |* This class is a wrapper for a Load-On-Demand-DLL. One instance
47 |* per SfxApplication will be created for the runtime of
48 |* SfxApplication-subclass::Main().
50 |* Remember: Do export this class! It is used by the application.
52 \************************************************************************/
57 static void RegisterFactorys();
58 static void RegisterInterfaces();
59 static void RegisterControllers();
62 // Ctor/Dtor must be linked to the application
66 // static-init/exit-code must be linked to the application
67 static void LibInit(); // called from SfxApplication-subclass::Init()
68 static void LibExit(); // called from SfxApplication-subclass::Exit()
70 // DLL-init/exit-code must be linked to the DLL only
71 static void Init(); // called directly after loading the DLL
72 static void Exit(); // called directly befor unloading the DLL
77 #ifndef _SD_DLL // Das define muss im Draw gesetzt werden
78 #define SD_MOD() ( *(SdModule**) GetAppData(SHL_DRAW) )