Replies: 1 comment 4 replies
|
|
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
#define DW_SIGNAL_FUNC(a) ((void *)a)I omitted this macro from
dw.adeptbecause I think it's not really needed and I can replace it withfunc &a. But when translatingdwtest.cto Adept, I found it uses the macro intensively. This means I have to translate this macro to Adept, too. This is simply text-substitution in C, but in Adept, I really don't know how to do it as Adept doesn't support text-substitution.All reactions