http://bugs.winehq.org/show_bug.cgi?id=17297
Summary: widl must accept arguments to functions (midl doesn't have to) Product: Wine Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: enhancement Priority: P2 Component: rpc AssignedTo: wine-bugs@winehq.org ReportedBy: lkcl@lkcl.net
example:
void get_data([out] char*);
is valid syntax. widl barfs with the obtuse "syntax error" (gotta love flex/bison...) and must have this:
void get_data([out] char* foo);
i found the examples "com in plain c" and the IDL file in example 2 didn't have the variable names.