I understand that cl_platform_id
is a data structure like:
typedef struct{
foo1 bar1;
foo2 bar2;
...;
}cl_platform_id;
But what are the content of this structure? for example if I want to print these content to the console what data type should I use?
I tried integer but I got the error:
warning: format specifies type 'int' but the argument has type 'cl_platform_id' (aka 'struct _cl_platform_id *') [-Wformat]
Thanks for your help in advance.