summaryrefslogtreecommitdiff
path: root/tools/win
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-02-18 11:54:37 +0200
committerTor Lillqvist <tlillqvist@novell.com>2011-02-18 11:57:02 +0200
commite5f8a07078033bc6774f9f5496d5e985f59be775 (patch)
tree07ef8bc1b46fa67b884bc2cc0193687e947bba79 /tools/win
parent524617637768161f7400b61e498b099ce75762e3 (diff)
Drop 16-bit Windows code
Diffstat (limited to 'tools/win')
-rw-r--r--tools/win/inc/dll.hxx21
-rw-r--r--tools/win/inc/toolsdll.hxx57
2 files changed, 3 insertions, 75 deletions
diff --git a/tools/win/inc/dll.hxx b/tools/win/inc/dll.hxx
index dd9d70b79f61..99cd3202c8a5 100644
--- a/tools/win/inc/dll.hxx
+++ b/tools/win/inc/dll.hxx
@@ -29,27 +29,6 @@
#ifndef _DLL_HXX
#define _DLL_HXX
-#ifdef WIN
-
-#include <tools/svwin.h>
-
-// ----------------------
-// - Zugriffsfunktionen -
-// ----------------------
-
-struct SVDATA;
-
-extern "C"
-{
-// IN APPDATA.ASM
-SVDATA* FAR PASCAL GetSVData();
-}
-
-// IN TOOLSDLL.CXX
-void SetSVData( SVDATA* pSVData );
-
-#endif
-
// -------------------------------
// - Sonstige Funktionen fuer SV -
// -------------------------------
diff --git a/tools/win/inc/toolsdll.hxx b/tools/win/inc/toolsdll.hxx
index 1c241a65e87d..0c8a1fd11d68 100644
--- a/tools/win/inc/toolsdll.hxx
+++ b/tools/win/inc/toolsdll.hxx
@@ -29,60 +29,9 @@
#ifndef _TOOLSDLL_HXX
#define _TOOLSDLL_HXX
-#ifdef WIN
-
-#include <string.h>
-#include <tools/svwin.h>
-#include <tools/solar.h>
-#include <tools/shl.hxx>
-
-// ----------------
-// - MemMgr-Daten -
-// ----------------
-
-// Anzahl Freispeicherlisten
-#define MEM_FREELIST_COUNT 15
-
-
-// --------------
-// - Tools-Data -
-// --------------
-
-struct SVDATA;
-struct FreeBlock;
-
-struct MemData
-{
- FreeBlock* pFirstBlocks[MEM_FREELIST_COUNT]; // Erste Bloecke in Freispeicherlisten
- void* pNewHandler; // New-Handler
- int nMultiThread; // MultiThread an/aus
-};
-
-struct ToolsData
-{
- // !!! SVDATA muss in jedem Fall ganz vorne in der Struktur stehen !!!
- SVDATA* pSVData; // Pointer auf StarView-Daten
- HANDLE hMem; // Handler der Tools-Daten
- MemData aMemD; // Daten der Speicherverwaltung
- void* aAppData[SHL_COUNT]; // Daten fuer andere Shared Libs
-};
-
-
-// ----------------------
-// - Zugriffsfunktionen -
-// ----------------------
-
-// IN APPDATA.ASM
-extern "C"
-{
-ToolsData* FAR PASCAL ImpGetAppData();
-void FAR PASCAL ImpSetAppData( ToolsData* pData );
-}
-
-// IN TOOLSDLL.CXX
-ToolsData* ImpGetToolsData();
-
-#endif
+/* Yes, this file is now effectively empty. Remove it completely in a
+ * later commit.
+ */
#endif // _DLL_HXX