Thread GUIs in C für Windows (33 answers)
Opened by SirLant at 2003-08-11 01:50

esskar
 2003-08-11 23:10
#10821 #10821
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
klar... das geht natürlich...

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
typedef int(*Type)(char* ptr);

struct tagTest
{
Type t;
} Test, *PTest;

int function(char* text)
{
return printf("%s\n", text);
}

Test var;
var.t = function;

var.t("Das ist ein Text");


damit wollte ich ihn aber nicht quälen!

View full thread GUIs in C für Windows