git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@155 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-04 13:51:12 +00:00
parent 40d87a9d15
commit 121b75ac69
4 changed files with 6 additions and 48 deletions

View File

@@ -149,9 +149,6 @@
<dd> <dd>
<a href="#Mw_Frame_h__MwFrameClass">MwFrameClass</a> <a href="#Mw_Frame_h__MwFrameClass">MwFrameClass</a>
</dd> </dd>
<dt>
<a href="#Mw_GDI_h">Mw/GDI.h</a>
</dt>
<dt> <dt>
<a href="#Mw_Image_h">Mw/Image.h</a> <a href="#Mw_Image_h">Mw/Image.h</a>
</dt> </dt>
@@ -272,9 +269,6 @@
<dd> <dd>
<a href="#Mw_Window_h__MwWindowClass">MwWindowClass</a> <a href="#Mw_Window_h__MwWindowClass">MwWindowClass</a>
</dd> </dd>
<dt>
<a href="#Mw_X11_h">Mw/X11.h</a>
</dt>
</dl> </dl>
<hr> <hr>
<h2 align="center" id="Mw_Button_h">Mw/Button.h</h2> <h2 align="center" id="Mw_Button_h">Mw/Button.h</h2>
@@ -1338,19 +1332,6 @@
</dd> </dd>
</dl> </dl>
<hr> <hr>
<h2 align="center" id="Mw_GDI_h">Mw/GDI.h</h2>
<dl>
<dt>
GDI backend.
</dt>
<dt>
<img src="warning.gif" alt="warning">
</dt>
<dd>
This is used internally.
</dd>
</dl>
<hr>
<h2 align="center" id="Mw_Image_h">Mw/Image.h</h2> <h2 align="center" id="Mw_Image_h">Mw/Image.h</h2>
<dl> <dl>
<dt> <dt>
@@ -1743,19 +1724,6 @@
Window widget class. Window widget class.
</dd> </dd>
</dl> </dl>
<hr>
<h2 align="center" id="Mw_X11_h">Mw/X11.h</h2>
<dl>
<dt>
X11 backend.
</dt>
<dt>
<img src="warning.gif" alt="warning">
</dt>
<dd>
This is used internally.
</dd>
</dl>
<hr> <hr>
</body> </body>
</html> </html>

View File

@@ -22,10 +22,10 @@ typedef void* MwLLPixmap;
#ifdef _MILSKO #ifdef _MILSKO
#ifdef USE_X11 #ifdef USE_X11
#include <Mw/X11.h> #include "../src/backend/x11.h"
#endif #endif
#ifdef USE_GDI #ifdef USE_GDI
#include <Mw/GDI.h> #include "../src/backend/gdi.h"
#endif #endif
#endif #endif
#include <Mw/TypeDefs.h> #include <Mw/TypeDefs.h>

View File

@@ -1,11 +1,6 @@
/* $Id$ */ /* $Id$ */
/*! #ifndef __GDI_H__
* %file Mw/GDI.h #define __GDI_H__
* %brief GDI backend
* %warning This is used internally
*/
#ifndef __MW_GDI_H__
#define __MW_GDI_H__
#include <Mw/MachDep.h> #include <Mw/MachDep.h>
#include <Mw/TypeDefs.h> #include <Mw/TypeDefs.h>

View File

@@ -1,11 +1,6 @@
/* $Id$ */ /* $Id$ */
/*! #ifndef __X11_H__
* %file Mw/X11.h #define __X11_H__
* %brief X11 backend
* %warning This is used internally
*/
#ifndef __MW_X11_H__
#define __MW_X11_H__
#include <Mw/MachDep.h> #include <Mw/MachDep.h>
#include <Mw/TypeDefs.h> #include <Mw/TypeDefs.h>