<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jul 17, 2017 at 7:17 AM, Sandro Cumerlato <span dir="ltr"><<a href="mailto:sandro.cumerlato@gmail.com" target="_blank">sandro.cumerlato@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hello,<div>can someone please help me converting the folowing C types to Pascal?</div></div></blockquote><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>SF_CUE_POINT is simple, but I'm not sure how to convert SF_CUES_VAR(count) ad SF_CUES.<br></div><div><div><br></div></div></div></blockquote><div><br></div><div>type </div><div>   SF_CUES   = record</div><div><div>     cue_count : cuint32 ; // declared in "ctypes"</div><div>     cue_points : array [0..100-1] of SF_CUE_POINT;</div></div><div>   end;</div><div><br></div><div> </div><div>going forward in C translation, any time you find SF_CUES_VAR (xxx) used, you'll have to declare a new type (with the proper "count" used) or reuse an existing type, if it already exists.</div><div><br></div></div></div></div>