【新增】上传当前编译过程中的第三方依赖
This commit is contained in:
7
dependence/include/bitmap.h
Normal file
7
dependence/include/bitmap.h
Normal file
@@ -0,0 +1,7 @@
|
||||
struct bitmap;
|
||||
struct bitmap * bitmap_new(int width, int height, int value);
|
||||
int bitmap_set(struct bitmap *bmp, int x, int y, int value);
|
||||
int bitmap_get(struct bitmap *bmp, int x, int y);
|
||||
void bitmap_free(struct bitmap *bmp);
|
||||
|
||||
int bitmap_is_all_zero(struct bitmap *bmp, int x, int y, int length);
|
||||
Reference in New Issue
Block a user