CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Jul 2013
    Posts
    161

    location of shlwapi.lib

    where do I locate shlwapi.lib? I need to link it in a project.
    after searching for the last ten minutes I still can't find it.
    can someone please point me in the right direction?
    thanks

  2. #2
    2kaud's Avatar
    2kaud is offline Super Moderator Power Poster
    Join Date
    Dec 2012
    Location
    England
    Posts
    7,824

    Re: location of shlwapi.lib

    On my system,
    Code:
     Directory of c:\Program Files (x86)\Windows Kits\10\Lib\10.0.10586.0\um\x64
    
    19/11/2015  20:40            74,178 ShLwApi.Lib
                   1 File(s)         74,178 bytes
    
     Directory of c:\Program Files (x86)\Windows Kits\10\Lib\10.0.10586.0\um\x86
    
    19/11/2015  20:25            80,504 ShLwApi.Lib
                   1 File(s)         80,504 bytes
    It depends upon which version of the SDK/VS you have installed where exactly it is located.
    All advice is offered in good faith only. All my code is tested (unless stated explicitly otherwise) with the latest version of Microsoft Visual Studio (using the supported features of the latest standard) and is offered as examples only - not as production quality. I cannot offer advice regarding any other c/c++ compiler/IDE or incompatibilities with VS. You are ultimately responsible for the effects of your programs and the integrity of the machines they run on. Anything I post, code snippets, advice, etc is licensed as Public Domain https://creativecommons.org/publicdomain/zero/1.0/ and can be used without reference or acknowledgement. Also note that I only provide advice and guidance via the forums - and not via private messages!

    C++23 Compiler: Microsoft VS2022 (17.6.5)

  3. #3
    2kaud's Avatar
    2kaud is offline Super Moderator Power Poster
    Join Date
    Dec 2012
    Location
    England
    Posts
    7,824

    Re: location of shlwapi.lib

    From a cmd prompt
    Code:
    cd \
    dir shlwapi.lib /s/a/o/p
    All advice is offered in good faith only. All my code is tested (unless stated explicitly otherwise) with the latest version of Microsoft Visual Studio (using the supported features of the latest standard) and is offered as examples only - not as production quality. I cannot offer advice regarding any other c/c++ compiler/IDE or incompatibilities with VS. You are ultimately responsible for the effects of your programs and the integrity of the machines they run on. Anything I post, code snippets, advice, etc is licensed as Public Domain https://creativecommons.org/publicdomain/zero/1.0/ and can be used without reference or acknowledgement. Also note that I only provide advice and guidance via the forums - and not via private messages!

    C++23 Compiler: Microsoft VS2022 (17.6.5)

  4. #4
    Join Date
    Jul 2013
    Posts
    161

    Re: location of shlwapi.lib

    Quote Originally Posted by 2kaud View Post
    From a cmd prompt
    Code:
    cd \
    dir shlwapi.lib /s/a/o/p
    Thanks i found it and all the rest ...

  5. #5
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: location of shlwapi.lib

    TLK, out of curiosity, do you have a Windows SDK set up on your dev box?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured