fix missing renames
This commit is contained in:
parent
323ba6128e
commit
5a849a87c7
6 changed files with 53 additions and 63 deletions
|
@ -1405,6 +1405,14 @@ struct CharGridCommand */*notnull*/ sp_chargridcommand_clone(struct CharGridComm
|
|||
*/
|
||||
void sp_chargridcommand_free(struct CharGridCommand */*notnull*/ instance);
|
||||
|
||||
/**
|
||||
* Moves the provided [CharGrid] into a new [CharGridCommand],
|
||||
* leaving other fields as their default values.
|
||||
*
|
||||
* This function is part of the `chargridcommand` module.
|
||||
*/
|
||||
struct CharGridCommand */*notnull*/ sp_chargridcommand_from_grid(CharGrid */*notnull*/ grid);
|
||||
|
||||
/**
|
||||
* Gets a reference to the field `grid` of the [`servicepoint::CharGridCommand`].
|
||||
*
|
||||
|
@ -1424,6 +1432,19 @@ void sp_chargridcommand_get_origin(struct CharGridCommand */*notnull*/ command,
|
|||
size_t */*notnull*/ origin_x,
|
||||
size_t */*notnull*/ origin_y);
|
||||
|
||||
/**
|
||||
* Show UTF-8 encoded text on the screen.
|
||||
*
|
||||
* The passed [CharGrid] gets consumed.
|
||||
*
|
||||
* Returns: a new [CharGridCommand] instance.
|
||||
*
|
||||
* This function is part of the `chargridcommand` module.
|
||||
*/
|
||||
struct CharGridCommand */*notnull*/ sp_chargridcommand_new(CharGrid */*notnull*/ grid,
|
||||
size_t origin_x,
|
||||
size_t origin_y);
|
||||
|
||||
/**
|
||||
* Sets the value of field `grid` of the [`servicepoint::CharGridCommand`].
|
||||
* The provided value is moved into the instance, potentially invalidating previously taken references.
|
||||
|
@ -1489,48 +1510,6 @@ struct ClearCommand */*notnull*/ sp_clearcommand_new(void);
|
|||
*/
|
||||
struct Packet *sp_clearcommand_try_into_packet(struct ClearCommand */*notnull*/ instance);
|
||||
|
||||
/**
|
||||
* Moves the provided [CharGrid] into a new [CharGridCommand],
|
||||
* leaving other fields as their default values.
|
||||
*
|
||||
* This function is part of the `cmd_chargrid` module.
|
||||
*/
|
||||
struct CharGridCommand */*notnull*/ sp_cmd_chargrid_from_grid(CharGrid */*notnull*/ grid);
|
||||
|
||||
/**
|
||||
* Show UTF-8 encoded text on the screen.
|
||||
*
|
||||
* The passed [CharGrid] gets consumed.
|
||||
*
|
||||
* Returns: a new [CharGridCommand] instance.
|
||||
*
|
||||
* This function is part of the `cmd_chargrid` module.
|
||||
*/
|
||||
struct CharGridCommand */*notnull*/ sp_cmd_chargrid_new(CharGrid */*notnull*/ grid,
|
||||
size_t origin_x,
|
||||
size_t origin_y);
|
||||
|
||||
/**
|
||||
* Moves the provided [Cp437Grid] into a new [Cp437GridCommand],
|
||||
* leaving other fields as their default values.
|
||||
*
|
||||
* This function is part of the `cmd_cp437grid` module.
|
||||
*/
|
||||
struct Cp437GridCommand */*notnull*/ sp_cmd_cp437grid_from_grid(Cp437Grid */*notnull*/ grid);
|
||||
|
||||
/**
|
||||
* Show text on the screen.
|
||||
*
|
||||
* The text is sent in the form of a 2D grid of [CP-437] encoded characters.
|
||||
*
|
||||
* The origin is relative to the top-left of the display.
|
||||
*
|
||||
* This function is part of the `cmd_cp437grid` module.
|
||||
*/
|
||||
struct Cp437GridCommand */*notnull*/ sp_cmd_cp437grid_new(Cp437Grid */*notnull*/ grid,
|
||||
size_t origin_x,
|
||||
size_t origin_y);
|
||||
|
||||
/**
|
||||
*Clones a [`Cp437Grid`] instance.
|
||||
*
|
||||
|
@ -1672,6 +1651,14 @@ struct Cp437GridCommand */*notnull*/ sp_cp437gridcommand_clone(struct Cp437GridC
|
|||
*/
|
||||
void sp_cp437gridcommand_free(struct Cp437GridCommand */*notnull*/ instance);
|
||||
|
||||
/**
|
||||
* Moves the provided [Cp437Grid] into a new [Cp437GridCommand],
|
||||
* leaving other fields as their default values.
|
||||
*
|
||||
* This function is part of the `cp437gridcommand` module.
|
||||
*/
|
||||
struct Cp437GridCommand */*notnull*/ sp_cp437gridcommand_from_grid(Cp437Grid */*notnull*/ grid);
|
||||
|
||||
/**
|
||||
* Gets a reference to the field `grid` of the [`servicepoint::Cp437GridCommand`].
|
||||
*
|
||||
|
@ -1691,6 +1678,19 @@ void sp_cp437gridcommand_get_origin(struct Cp437GridCommand */*notnull*/ command
|
|||
size_t */*notnull*/ origin_x,
|
||||
size_t */*notnull*/ origin_y);
|
||||
|
||||
/**
|
||||
* Show text on the screen.
|
||||
*
|
||||
* The text is sent in the form of a 2D grid of [CP-437] encoded characters.
|
||||
*
|
||||
* The origin is relative to the top-left of the display.
|
||||
*
|
||||
* This function is part of the `cp437gridcommand` module.
|
||||
*/
|
||||
struct Cp437GridCommand */*notnull*/ sp_cp437gridcommand_new(Cp437Grid */*notnull*/ grid,
|
||||
size_t origin_x,
|
||||
size_t origin_y);
|
||||
|
||||
/**
|
||||
* Sets the value of field `grid` of the [`servicepoint::Cp437GridCommand`].
|
||||
* The provided value is moved into the instance, potentially invalidating previously taken references.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue