Where can I find a list of windows API constants, in a none .net enviroment

前端 未结 7 2217
栀梦
栀梦 2021-01-26 01:24

I would like to find the values of some of windows API constants, such as, but not limited to LVM_ENABLEGROUPVIEW & WM_SHOWWINDOW

Looking on the n

7条回答
  •  心在旅途
    2021-01-26 02:06

    Download the SDK and search the header files (all the .h files) using your favorite full-text search tool.

    Pinvoke.net can serve in a pinch (Constants) but doesn't necessarily have everything.

    The message values are constant across all development environments.

提交回复
热议问题