搭建PVB架构,实现前端的基础布局、菜单、表格、图示等功能

This commit is contained in:
lixiaoyuan
2025-08-20 19:00:22 +08:00
parent 5de7687bcc
commit 7e965b6fb4
142 changed files with 28270 additions and 411 deletions

View File

@@ -0,0 +1,13 @@
#ifndef log__
#define log__
#define LOG1(x) fprintf(stderr,x)
#define LOG2(x,y) fprintf(stderr,x,y)
#define LOG3(a,b,c) fprintf(stderr,a,b,c)
#define LOG4(a,b,c,d) fprintf(stderr,a,b,c,d)
#define LOG5(a,b,c,d,e) fprintf(stderr,a,b,c,d,e)
#define FLUSH fflush(stderr)
#define LOG_1(a) fprintf(stderr,a)
#define LOG_2(a,b) fprintf(stderr,a,b)
#endif