forked from pyrite-dev/milsko
stub
This commit is contained in:
parent
6341b76a86
commit
733b3c1f1c
2 changed files with 51 additions and 1 deletions
2
configure
vendored
2
configure
vendored
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue