Помогите преобразовать вот этот код на делфи, в аналогичный для Си. PHP: type myMath = record Cos: function(const x: float): float; cdecl; Sin: function(const x: float): float; cdecl; end; var math: myMath; Очень нужно понять как это делается правильно. Пытаюсь делать что то типа такого, но ругается; PHP: struct myMath { float ( *Cos)( const float x ); }; myMath NewMath; error: syntax error before "NewMath"| Среда CodeBlocks
Code: typedef struct myMath { float (*cos)(const float x); float (*sin)(const float x); } myMath; myMath mm;