Call out to 3Gl: struct includes char*
Author: i2stiller@gmx.de (istiller)
Hi freaks Just programming the interface to ELSTER (german tax office application) All going well until it came to the point to exchange a struct Okay, create a dummy entity and add all members of the (C-)struct as fields. The last two members are defined as "char*" Now is the question: how to say UnifAce that this are "char*" and not "char[n]" with a fix number n If I define this as C40 or C*, UnifAce is going into the nirvana. Any clue how to define? BTW: This is a simple task UnifAce should handle! I don't want to implement a wrapper, as then there is a need for an extra environment, maintance overhead and man power. TIA Ingo PS:The structure in question: typedef struct{ uint32_t version; uint32_t vorschau; uint32_t ersteSeite; uint32_t duplexDruck; const char* pdfName; const char* fussText; } eric_druck_parameter_t;




