D
Deleted member 22320
Guest
i am trying to convert a snippet of code i found but it has a ton of errors after converting. I thing i can probably go thru and fxi most of them just by comparison but theres one but i dont understand.
When I convert this C# line:
I get this and it doesnt like it:
I know really next to nothing about C, so some of this confuses me.
When I convert this C# line:
Code:
private const int WM_GRAPHNOTIFY = 0x00008001;
private const int WS_CHILD = 0x40000000;
private const int WS_CLIPCHILDREN = 0x02000000;
private const int WS_CLIPSIBLINGS = 0x04000000;
I get this and it doesnt like it:
Code:
Private const WM_GRAPHNOTIFY as Integer = 0x00008001
Private const WS_CHILD as Integer = 0x40000000
Private const WS_CLIPCHILDREN as Integer = 0x02000000
Private const WS_CLIPSIBLINGS as Integer = 0x04000000
I know really next to nothing about C, so some of this confuses me.