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>
<a href="#Mw_Frame_h__MwFrameClass">MwFrameClass</a>
</dd>
<dt>
<a href="#Mw_GDI_h">Mw/GDI.h</a>
</dt>
<dt>
<a href="#Mw_Image_h">Mw/Image.h</a>
</dt>
@@ -272,9 +269,6 @@
<dd>
<a href="#Mw_Window_h__MwWindowClass">MwWindowClass</a>
</dd>
<dt>
<a href="#Mw_X11_h">Mw/X11.h</a>
</dt>
</dl>
<hr>
<h2 align="center" id="Mw_Button_h">Mw/Button.h</h2>
@@ -1338,19 +1332,6 @@
</dd>
</dl>
<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>
<dl>
<dt>
@@ -1743,19 +1724,6 @@
Window widget class.
</dd>
</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>
</body>
</html>

View File

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

View File

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

View File

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