Open GoogleCodeExporter opened 8 years ago
Original comment by cyber.sp...@gmail.com
on 5 Mar 2013 at 11:03
I just tested with ICL 14.0.1 and compilation is not possible without changing
the code, you'll get a lot of errors like this:
"error : operand of __uuidof must have a class or enum type for which
__declspec(uuid("...")) has been specified"
In the following projects: dsutil, subpic, subtitles, vsfilter, xy_sub_filter
and xy_sub_filter_consumer
Unfortunately, I don't have enough knowledge to do that.
Original comment by bruno...@gmail.com
on 22 Dec 2013 at 5:05
Okay, it was not that hard after all. But there are more errors after that.
You just have to replace:
[uuid("...")]
interface Foo
With:
interface __declspec(uuid("..."))
Foo
And:
[uuid("...")]
class Foo
With:
class __declspec(uuid("..."))
Foo
Original comment by bruno...@gmail.com
on 22 Dec 2013 at 6:15
Original issue reported on code.google.com by
timothygu99
on 4 Feb 2013 at 4:18