Okay I have this certain software's plug-in SDK header that I'm trying to convert to PB6, I used the C header file converter in the Downlaod section, but it's having trouble with these few lines:
anyone have a clue on how that would be converted to PB6?
------------------
Thank you,
Ryan M. Cross
Webmaster FlexiFish Inc. UK
Likuid Creations Inc.
Code:
#define trillianInitialize(structure) do { memset(&structure,0,sizeof(structure)); structure.struct_size = sizeof(structure); } while (0); #define trillianListInitialize(structure) \ do {\ memset(&structure,0,sizeof(structure)); structure.struct_size = sizeof(structure); \ structure.section_id = structure.parent_id = structure.previous_id = structure.unique_id = -1;\ structure.selectable = 1;\ trillianInitialize(structure.font); \ structure.font.flags = 1; \ structure.font.hover_background = structure.font.hover_foreground = structure.font.select_background = structure.font.select_foreground = structure.font.background = structure.font.foreground = -1; \ } while (0);
------------------
Thank you,
Ryan M. Cross
Webmaster FlexiFish Inc. UK
Likuid Creations Inc.
Comment