From: Biswapriyo N. <nat...@gm...> - 2023-04-03 07:34:26
|
> Is GCLP_HCURSOR also available under 32-bits? Yes, GCLP_HCURSOR is available for any architecture. Basically, GCL_HCURSOR is undefined for 64-bit architectures like the following in the winbase.h file in Windows SDK. ``` #ifdef _WIN64 #undef GCL_HCURSOR #endif ``` |