mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-05 09:00:54 +00:00
move files
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@305 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
4
.gitattributes
vendored
4
.gitattributes
vendored
@@ -1,5 +1,5 @@
|
||||
/src/external/stb_ds.h linguist-generated
|
||||
/src/external/stb_image.h linguist-generated
|
||||
/external/stb_ds.h linguist-generated
|
||||
/external/stb_image.h linguist-generated
|
||||
/external/libjpeg/include/*.h linguist-generated
|
||||
/external/libjpeg/src/*.c linguist-generated
|
||||
/external/libjpeg/src/*.h linguist-generated
|
||||
|
||||
@@ -27,7 +27,7 @@ L_LDFLAGS = $(LDFLAGS)
|
||||
L_LIBS = $(LIBS)
|
||||
|
||||
L_OBJS = src/core.o src/default.o src/draw.o src/lowlevel.o src/font.o src/boldfont.o src/error.o src/unicode.o src/color.o src/messagebox.o
|
||||
L_OBJS += src/external/ds.o src/external/image.o
|
||||
L_OBJS += external/ds.o external/image.o
|
||||
L_OBJS += src/widget/window.o src/widget/button.o src/widget/frame.o src/widget/menu.o src/widget/submenu.o src/widget/image.o src/widget/scrollbar.o src/widget/checkbox.o src/widget/label.o src/widget/entry.o src/widget/numberentry.o src/widget/viewport.o
|
||||
L_OBJS += src/cursor/default.o src/cursor/cross.o src/cursor/text.o
|
||||
L_OBJS += src/icon/question.o src/icon/warning.o src/icon/note.o src/icon/info.o src/icon/news.o src/icon/error.o
|
||||
|
||||
0
src/external/ds.c → external/ds.c
vendored
0
src/external/ds.c → external/ds.c
vendored
0
src/external/image.c → external/image.c
vendored
0
src/external/image.c → external/image.c
vendored
0
src/external/stb_ds.h → external/stb_ds.h
generated
vendored
0
src/external/stb_ds.h → external/stb_ds.h
generated
vendored
0
src/external/stb_image.h → external/stb_image.h
generated
vendored
0
src/external/stb_image.h → external/stb_image.h
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
#include "external/stb_ds.h"
|
||||
#include "../external/stb_ds.h"
|
||||
|
||||
static void lldrawhandler(MwLL handle, void* data) {
|
||||
MwWidget h = (MwWidget)handle->user;
|
||||
|
||||
@@ -2,14 +2,14 @@
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
#ifdef USE_STB_IMAGE
|
||||
#include "external/stb_image.h"
|
||||
#include "../external/stb_image.h"
|
||||
#else
|
||||
#include <png.h>
|
||||
#include <jpeglib.h>
|
||||
#include <jerror.h>
|
||||
#endif
|
||||
|
||||
#include "external/stb_ds.h"
|
||||
#include "../external/stb_ds.h"
|
||||
|
||||
#define FontWidth 7
|
||||
#define FontHeight 14
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
#include "external/stb_ds.h"
|
||||
#include "../external/stb_ds.h"
|
||||
|
||||
typedef struct msgbox {
|
||||
int key;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
#include "../external/stb_ds.h"
|
||||
#include "../../external/stb_ds.h"
|
||||
|
||||
static void set_xywh(MwWidget handle) {
|
||||
int height = 0;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* $Id$ */
|
||||
#include <Mw/Milsko.h>
|
||||
|
||||
#include "../external/stb_ds.h"
|
||||
#include "../../external/stb_ds.h"
|
||||
|
||||
static int create(MwWidget handle) {
|
||||
MwLLShow(handle->lowlevel, 0);
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "../external/stb_ds.h"
|
||||
#include "../../external/stb_ds.h"
|
||||
|
||||
MwVulkanConfig vulkan_config = {
|
||||
.api_version = VK_API_VERSION_1_0,
|
||||
|
||||
Reference in New Issue
Block a user