Replies: 1 comment 4 replies
-
|
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
#define DW_SIGNAL_FUNC(a) ((void *)a)
I omitted this macro from
dw.adept
because I think it's not really needed and I can replace it withfunc &a
. But when translatingdwtest.c
to 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.Beta Was this translation helpful? Give feedback.
All reactions