What are the definitions for LPARAM and WPARAM?

后端 未结 6 539
暗喜
暗喜 2020-11-29 03:00

I know I\'m being lazy here and I should trawl the header files for myself, but what are the actual types for LPARAM and WPARAM parameters? Are they pointers, or four byte i

6条回答
  •  [愿得一人]
    2020-11-29 03:57

    c++ in linux and windows 64bit tested, the most simple solution I found:

    #define WPARAM long long unsigned int
    #define LPARAM long long int
    

提交回复
热议问题