From b518cee5ccb09282f81fac686edd0b6364d27489 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Mon, 29 Sep 2025 00:07:42 +0000 Subject: [PATCH] things git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@38 b9cfdab3-6d41-4d17-bbe4-086880011989 --- GNUmakefile | 2 +- include/Mw/LowLevel.h | 4 ++-- include/Mw/TypeDefs.h | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 9216a0c..211bbdc 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -3,7 +3,7 @@ TARGET = $(shell uname -s) CC = gcc -CFLAGS = -fPIC -Iinclude -D_MW +CFLAGS = -fPIC -Iinclude -D_MILSKO LDFLAGS = LIBS = diff --git a/include/Mw/LowLevel.h b/include/Mw/LowLevel.h index e978369..e460df5 100644 --- a/include/Mw/LowLevel.h +++ b/include/Mw/LowLevel.h @@ -5,7 +5,7 @@ #include typedef struct _MwLLHandler *MwLLHandler, MwLLHandlerRec; -#ifdef _MW +#ifdef _MILSKO typedef struct _MwLL * MwLL, MwLLRec; typedef struct _MwLLColor *MwLLColor, MwLLColorRec; #else @@ -13,7 +13,7 @@ typedef void* MwLL; typedef void* MwLLColor; #endif -#ifdef _MW +#ifdef _MILSKO #ifdef USE_X11 #include #endif diff --git a/include/Mw/TypeDefs.h b/include/Mw/TypeDefs.h index eec316c..67252c2 100644 --- a/include/Mw/TypeDefs.h +++ b/include/Mw/TypeDefs.h @@ -10,7 +10,7 @@ typedef struct _MwRect MwRect; typedef struct _MwIntegerKeyValue MwIntegerKeyValue; typedef struct _MwTextKeyValue MwTextKeyValue; typedef struct _MwUserHandlerKeyValue MwUserHandlerKeyValue; -#ifdef _MW +#ifdef _MILSKO typedef struct _MwWidget *MwWidget, MwWidgetRec; #else typedef void* MwWidget; @@ -18,7 +18,7 @@ typedef void* MwWidget; typedef void (*MwHandler)(MwWidget handle); typedef void (*MwUserHandler)(MwWidget handle, void* user_data, void* call_data); -#ifdef _MW +#ifdef _MILSKO #include #endif @@ -50,7 +50,7 @@ struct _MwUserHandlerKeyValue { MwUserHandler value; }; -#ifdef _MW +#ifdef _MILSKO struct _MwWidget { char* name;