wip remove newtypes, re-export constants from base lib

This commit is contained in:
Vinzenz Schroeter 2025-04-12 12:08:49 +02:00
parent d215f7199e
commit bb90af3a57
8 changed files with 150 additions and 168 deletions

View file

@ -6,13 +6,13 @@ int main(void) {
if (connection == NULL)
return 1;
Bitmap *pixels = sp_bitmap_new(SP_PIXEL_WIDTH, SP_PIXEL_HEIGHT);
Bitmap *pixels = sp_bitmap_new(PIXEL_WIDTH, PIXEL_HEIGHT);
if (pixels == NULL)
return 1;
sp_bitmap_fill(pixels, true);
Command *command = sp_command_bitmap_linear_win(0, 0, pixels, SP_COMPRESSION_CODE_UNCOMPRESSED);
Command *command = sp_command_bitmap_linear_win(0, 0, pixels, COMPRESSION_CODE_UNCOMPRESSED);
if (command == NULL)
return 1;