Nuklear icon indicating copy to clipboard operation
Nuklear copied to clipboard

LNK2019: unresolved external symbol __imp_AlphaBlend referenced in function nk_gdi_rect_multi_color

Open DougDevCP opened this issue 3 years ago • 1 comments

Have anyone experienced the following error:

LNK2019: unresolved external symbol __imp_AlphaBlend referenced in function nk_gdi_rect_multi_color

According to some __imp_AlphaBlend is found in the msimg32.lib and I have included it as well as gdi32.lib and user32.lib in VS2022

DougDevCP avatar Aug 01 '22 21:08 DougDevCP

Managed to solve this by adding the msimg32.lib library in msvc it would be #pragma comment(lib, "msimg32.lib")

oword avatar Jan 04 '24 06:01 oword