FindResource fails
问题 I have a piece of code like this IDB_PNG1 PNG "images\\list-back.png" HRSRC hrsrc = FindResource(module, MAKEINTRESOURCE(IDB_PNG1), TEXT("PNG")); this works fine, But I can not make it work any of the variants below hrsrc = ::FindResource(module, L"images\\list-back.png", L"PNG"); hrsrc = ::FindResource(module, L"images\\list-back", L"PNG"); hrsrc = ::FindResource(module, L"list-back.png", L"PNG"); hrsrc = ::FindResource(module, L"list-back", L"PNG"); GetlastError returns 0x00000716 The