#include typedef struct { int yes; int *no; } *cl_context; void main() { cl_context ctx; int x = 5; int *y = &x; ctx->yes = *y; //ctx->no = y; }