stub
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-04-28 15:18:09 +09:00
commit 733b3c1f1c
2 changed files with 51 additions and 1 deletions

2
configure vendored
View file

@ -224,7 +224,7 @@ print(OUT " cp -rf include \$(DESTDIR)\$(PREFIX)/\n");
print(OUT "\n");
print(OUT "format:\n");
print(OUT
" clang-format --verbose -i `find tools src include examples \"(\" -name \"*.c\" -or -name \"*.h\" -or -name \"*.m\" \")\" -and -not -name \"*ttf.c\"`\n"
" clang-format --verbose -i `find tools src include examples \"(\" -name \"*.c\" -or -name \"*.cxx\" -or -name \"*.h\" -or -name \"*.m\" \")\" -and -not -name \"*ttf.c\"`\n"
);
print(OUT
" perltidy -b -bext=\"/\" --paren-tightness=2 `find tools pl configure -name \"*.pl\"`\n"

View file

@ -1,4 +1,54 @@
#include <Mw/Milsko.h>
MwLL MwLLCreateImpl(MwLL parent, int x, int y, int width, int height) {}
void MwLLDestroyImpl(MwLL handle) {}
void MwLLPolygonImpl(MwLL handle, MwPoint* points, int points_count, MwLLColor color) {}
void MwLLLineImpl(MwLL handle, MwPoint* points, MwLLColor color) {}
WDECL void MwLLBeginDrawImpl(MwLL handle) {}
WDECL void MwLLEndDrawImpl(MwLL handle) {}
MwLLColor MwLLAllocColorImpl(MwLL handle, int r, int g, int b) {}
void MwLLColorUpdateImpl(MwLL handle, MwLLColor c, int r, int g, int b) {}
void MwLLFreeColorImpl(MwLLColor color) {}
void MwLLGetXYWHImpl(MwLL handle, int* x, int* y, unsigned int* w, unsigned int* h) {}
void MwLLSetXYImpl(MwLL handle, int x, int y) {}
void MwLLSetWHImpl(MwLL handle, int w, int h) {}
void MwLLSetTitleImpl(MwLL handle, const char* title) {}
int MwLLPendingImpl(MwLL handle) {}
void MwLLNextEventImpl(MwLL handle) {}
MwLLPixmap MwLLCreatePixmapImpl(MwLL handle, unsigned char* data, int width, int height) {}
void MwLLPixmapUpdateImpl(MwLLPixmap pixmap) {}
void MwLLDestroyPixmapImpl(MwLLPixmap pixmap) {}
void MwLLDrawPixmapImpl(MwLL handle, MwRect* rect, MwLLPixmap pixmap) {}
void MwLLSetIconImpl(MwLL handle, MwLLPixmap pixmap) {}
void MwLLForceRenderImpl(MwLL handle) {}
void MwLLSetCursorImpl(MwLL handle, MwCursor* image, MwCursor* mask) {}
void MwLLDetachImpl(MwLL handle, MwPoint* point) {}
void MwLLShowImpl(MwLL handle, int show) {}
void MwLLSetSizeHintsImpl(MwLL handle, int minx, int miny, int maxx, int maxy) {}
#include "call.c"
CALL(Haiku);