mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-18 10:00:14 +01:00
version 0.2
This commit is contained in:
parent
4bb505650c
commit
76907a8e3d
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -599,7 +599,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "servicepoint2"
|
||||
version = "0.1.3"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"bzip2",
|
||||
"cbindgen",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "servicepoint2"
|
||||
version = "0.1.3"
|
||||
version = "0.2.0"
|
||||
publish = true
|
||||
edition = "2021"
|
||||
license = "GPL-3.0-or-later"
|
||||
|
|
|
@ -183,7 +183,7 @@ uintptr_t sp2_byte_grid_width(const struct sp2_PixelGrid *this_);
|
|||
uintptr_t sp2_byte_grid_height(const struct sp2_PixelGrid *this_);
|
||||
|
||||
/**
|
||||
* Tries to load a command from the passed array with the specified length.
|
||||
* Tries to load a `Command` from the passed array with the specified length.
|
||||
*
|
||||
* returns: NULL in case of an error, pointer to the allocated command otherwise
|
||||
*/
|
||||
|
@ -269,7 +269,7 @@ struct sp2_Command *sp2_command_bitmap_linear_win(uint16_t x,
|
|||
struct sp2_PixelGrid *byte_grid);
|
||||
|
||||
/**
|
||||
* Deallocates a command. Note that connection_send does this implicitly, so you only need
|
||||
* Deallocates a `Command`. Note that connection_send does this implicitly, so you only need
|
||||
* to do this if you use the library for parsing commands.
|
||||
*/
|
||||
void sp2_command_dealloc(struct sp2_Command *ptr);
|
||||
|
|
Loading…
Reference in a new issue