@@ -51,7 +51,15 @@ using MeasureMaxContentWidth = float;
5151
5252using MeasureMaxContentHeight = float ;
5353
54- using MeasureFunc = Size(*)(NodePtr, MeasureMaxWidth, MeasureMode, MeasureMaxHeight, MeasureMode, MeasureMinWidth, MeasureMinHeight, MeasureMaxContentWidth, MeasureMaxContentHeight);
54+ using MeasureFunc = Size(*)(NodePtr,
55+ MeasureMaxWidth,
56+ MeasureMode,
57+ MeasureMaxHeight,
58+ MeasureMode,
59+ MeasureMinWidth,
60+ MeasureMinHeight,
61+ MeasureMaxContentWidth,
62+ MeasureMaxContentHeight);
5563
5664using CalcHandle = int32_t ;
5765
@@ -238,6 +246,14 @@ void NodeStyleSetBottomPercentage(NodePtr node, float value);
238246
239247void NodeStyleSetBoxSizing (NodePtr node, BoxSizingType value);
240248
249+ void NodeStyleSetColumnGap (NodePtr node, float value);
250+
251+ void NodeStyleSetColumnGapCalcHandle (NodePtr node, int32_t calc_handle);
252+
253+ void NodeStyleSetColumnGapNormal (NodePtr node);
254+
255+ void NodeStyleSetColumnGapPercentage (NodePtr node, float value);
256+
241257void NodeStyleSetDisplay (NodePtr node, DisplayType value);
242258
243259void NodeStyleSetFlexBasis (NodePtr node, float value);
@@ -418,6 +434,14 @@ void NodeStyleSetRightNone(NodePtr node);
418434
419435void NodeStyleSetRightPercentage (NodePtr node, float value);
420436
437+ void NodeStyleSetRowGap (NodePtr node, float value);
438+
439+ void NodeStyleSetRowGapCalcHandle (NodePtr node, int32_t calc_handle);
440+
441+ void NodeStyleSetRowGapNormal (NodePtr node);
442+
443+ void NodeStyleSetRowGapPercentage (NodePtr node, float value);
444+
421445void NodeStyleSetTextAlign (NodePtr node, TextAlignType value);
422446
423447void NodeStyleSetTop (NodePtr node, float value);
@@ -444,6 +468,6 @@ void NodeStyleSetWritingMode(NodePtr node, WritingModeType value);
444468
445469const char *NodeToString (NodePtr node, bool recursive, bool layout, bool style);
446470
447- } // extern "C"
471+ } // extern "C"
448472
449- } // namespace float_pigment
473+ } // namespace float_pigment
0 commit comments