Where to find Win32 API Constants

  • Thread starter Thread starter ason
  • Start date Start date
A

ason

Does anybody know where to find all these API Constants like for
example
LVCFMT_BITMAP_ON_RIGHT = 4094; // = 0x1000
Are these Constants in any *.h files????


thanks
..::AsOn
 
Does anybody know where to find all these API Constants like for
example
LVCFMT_BITMAP_ON_RIGHT = 4094; // = 0x1000
Are these Constants in any *.h files????

they always can be found in header files.
this one, for example, in commctrl.h.

Wiktor Zychla
 
Alot of constants are on the interop site

http://www.pinvoke.net

If you ones you want aren't on there then once you've found out what they are ... Add Them!! Its the community spirited thing to do :-)

Regards

Richard Blewett - DevelopMentor
http://staff.develop.com/richardb/weblog

nntp://news.microsoft.com/microsoft.public.dotnet.languages.csharp/<[email protected]>

Does anybody know where to find all these API Constants like for
example
LVCFMT_BITMAP_ON_RIGHT = 4094; // = 0x1000
Are these Constants in any *.h files????


thanks
.::AsOn


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.766 / Virus Database: 513 - Release Date: 17/09/2004



[microsoft.public.dotnet.languages.csharp]
 
Back
Top