OK In progress...

This commit is contained in:
Kolan Sh 2018-01-20 20:22:08 +03:00
parent 545221c11f
commit d5e18999f8
1 changed files with 8 additions and 0 deletions

View File

@ -1,6 +1,14 @@
namespace CairoChart {
/**
* 128-bit float type.
*/
[CCode (cname = "cairo_chart_float128", has_type_id = false, cheader_filename = "cairo-chart-float128type.h")]
public struct Float128 : double {}
/**
* Long Double float type.
*/
[CCode (cname = "cairo_chart_long_double", has_type_id = false, cheader_filename = "cairo-chart-float128type.h")]
public struct LongDouble : double {}
}