Hi guys,
I am new to C#, I am trying to write an small program which involves use of SendMessage routine here and there. My problem is that I am having to define all WM_ windows messages constants that I need to use (e.g. as below).
public const int WS_CHILD = 0x40000000;
public const int WS_VISIBLE = 0x10000000;
Can you guys tell me if WM_ constants have been predefined in some namespace that I may use?
Thank you in advance your help is much appreciated.
I am new to C#, I am trying to write an small program which involves use of SendMessage routine here and there. My problem is that I am having to define all WM_ windows messages constants that I need to use (e.g. as below).
public const int WS_CHILD = 0x40000000;
public const int WS_VISIBLE = 0x10000000;
Can you guys tell me if WM_ constants have been predefined in some namespace that I may use?
Thank you in advance your help is much appreciated.