Difference between LPVOID and void*

前端 未结 4 1527
一整个雨季
一整个雨季 2020-12-23 19:26

Can I use void* instead of LPVOID in C?

Or LPVOID perform some special functionality than void*.

4条回答
  •  伪装坚强ぢ
    2020-12-23 20:28

    LPVOID is a pointer to any type. This type is declared in WinDef.h as follows: typedef void *LPVOID;

提交回复
热议问题