remove _ from type names in function names
This commit is contained in:
parent
500cbbc872
commit
8f13ba61f0
9 changed files with 311 additions and 311 deletions
|
@ -9,7 +9,7 @@ use servicepoint::{
|
|||
};
|
||||
use std::{mem::transmute, ptr::NonNull};
|
||||
|
||||
wrap_functions!(brightness_grid;
|
||||
wrap_functions!(brightnessgrid;
|
||||
|
||||
/// Creates a new [BrightnessGrid] with the specified dimensions.
|
||||
///
|
||||
|
@ -71,11 +71,11 @@ wrap_functions!(brightness_grid;
|
|||
|
||||
);
|
||||
|
||||
wrap_clone!(brightness_grid::BrightnessGrid);
|
||||
wrap_free!(brightness_grid::BrightnessGrid);
|
||||
wrap_clone!(brightnessgrid::BrightnessGrid);
|
||||
wrap_free!(brightnessgrid::BrightnessGrid);
|
||||
|
||||
wrap_methods!(
|
||||
brightness_grid::BrightnessGrid;
|
||||
brightnessgrid::BrightnessGrid;
|
||||
|
||||
/// Gets the current value at the specified position.
|
||||
///
|
||||
|
|
|
@ -6,7 +6,7 @@ use crate::{
|
|||
use servicepoint::{CharGrid, CharGridCommand, Grid, Origin, Packet};
|
||||
use std::ptr::NonNull;
|
||||
|
||||
wrap_functions!(char_grid;
|
||||
wrap_functions!(chargrid;
|
||||
|
||||
/// Creates a new [CharGrid] with the specified dimensions.
|
||||
///
|
||||
|
@ -58,11 +58,11 @@ wrap_functions!(char_grid;
|
|||
|
||||
);
|
||||
|
||||
wrap_clone!(char_grid::CharGrid);
|
||||
wrap_free!(char_grid::CharGrid);
|
||||
wrap_clone!(chargrid::CharGrid);
|
||||
wrap_free!(chargrid::CharGrid);
|
||||
|
||||
wrap_methods!(
|
||||
char_grid::CharGrid;
|
||||
chargrid::CharGrid;
|
||||
|
||||
/// Returns the current value at the specified position.
|
||||
///
|
||||
|
|
|
@ -9,7 +9,7 @@ use servicepoint::{
|
|||
};
|
||||
use std::ptr::NonNull;
|
||||
|
||||
wrap_functions!(cp437_grid;
|
||||
wrap_functions!(cp437grid;
|
||||
|
||||
/// Creates a new [Cp437Grid] with the specified dimensions.
|
||||
///
|
||||
|
@ -50,11 +50,11 @@ wrap_functions!(cp437_grid;
|
|||
|
||||
);
|
||||
|
||||
wrap_clone!(cp437_grid::Cp437Grid);
|
||||
wrap_free!(cp437_grid::Cp437Grid);
|
||||
wrap_clone!(cp437grid::Cp437Grid);
|
||||
wrap_free!(cp437grid::Cp437Grid);
|
||||
|
||||
wrap_methods!(
|
||||
cp437_grid::Cp437Grid;
|
||||
cp437grid::Cp437Grid;
|
||||
/// Gets the current value at the specified position.
|
||||
///
|
||||
/// # Arguments
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue