start_info.lpDesktop is LPWSTR entity, but it says this is const wchat_t*?









up vote
-1
down vote

favorite












I am a complete noob using C++, i just want to re-compile an exploit.



I got the error:




you can not assign a value of type "const wchar_t *" to an entity of type "LPWSTR"




The error










share|improve this question



















  • 1




    Please always post text rather than images of text.
    – Jesper Juhl
    Nov 10 at 20:26










  • LPWSTR is defined as wchar_t*, versus const wchar_t*. The error says you can't change a constant to mutable.
    – Barmak Shemirani
    Nov 10 at 20:26











  • Post a Minimal, Complete, and Verifiable example or there's not really anything we can do to help you.
    – Jesper Juhl
    Nov 10 at 20:27










  • They've been cracking down on such practices in VS2017. You can get the old behavior with Project > Properties > C/C++ > Language, "Conformance mode" = No. Or use wcscpy_s() to conform.
    – Hans Passant
    Nov 10 at 21:11














up vote
-1
down vote

favorite












I am a complete noob using C++, i just want to re-compile an exploit.



I got the error:




you can not assign a value of type "const wchar_t *" to an entity of type "LPWSTR"




The error










share|improve this question



















  • 1




    Please always post text rather than images of text.
    – Jesper Juhl
    Nov 10 at 20:26










  • LPWSTR is defined as wchar_t*, versus const wchar_t*. The error says you can't change a constant to mutable.
    – Barmak Shemirani
    Nov 10 at 20:26











  • Post a Minimal, Complete, and Verifiable example or there's not really anything we can do to help you.
    – Jesper Juhl
    Nov 10 at 20:27










  • They've been cracking down on such practices in VS2017. You can get the old behavior with Project > Properties > C/C++ > Language, "Conformance mode" = No. Or use wcscpy_s() to conform.
    – Hans Passant
    Nov 10 at 21:11












up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











I am a complete noob using C++, i just want to re-compile an exploit.



I got the error:




you can not assign a value of type "const wchar_t *" to an entity of type "LPWSTR"




The error










share|improve this question















I am a complete noob using C++, i just want to re-compile an exploit.



I got the error:




you can not assign a value of type "const wchar_t *" to an entity of type "LPWSTR"




The error







c++ visual-c++






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 10 at 20:36









Remy Lebeau

326k18244430




326k18244430










asked Nov 10 at 19:57









ri ru

21




21







  • 1




    Please always post text rather than images of text.
    – Jesper Juhl
    Nov 10 at 20:26










  • LPWSTR is defined as wchar_t*, versus const wchar_t*. The error says you can't change a constant to mutable.
    – Barmak Shemirani
    Nov 10 at 20:26











  • Post a Minimal, Complete, and Verifiable example or there's not really anything we can do to help you.
    – Jesper Juhl
    Nov 10 at 20:27










  • They've been cracking down on such practices in VS2017. You can get the old behavior with Project > Properties > C/C++ > Language, "Conformance mode" = No. Or use wcscpy_s() to conform.
    – Hans Passant
    Nov 10 at 21:11












  • 1




    Please always post text rather than images of text.
    – Jesper Juhl
    Nov 10 at 20:26










  • LPWSTR is defined as wchar_t*, versus const wchar_t*. The error says you can't change a constant to mutable.
    – Barmak Shemirani
    Nov 10 at 20:26











  • Post a Minimal, Complete, and Verifiable example or there's not really anything we can do to help you.
    – Jesper Juhl
    Nov 10 at 20:27










  • They've been cracking down on such practices in VS2017. You can get the old behavior with Project > Properties > C/C++ > Language, "Conformance mode" = No. Or use wcscpy_s() to conform.
    – Hans Passant
    Nov 10 at 21:11







1




1




Please always post text rather than images of text.
– Jesper Juhl
Nov 10 at 20:26




Please always post text rather than images of text.
– Jesper Juhl
Nov 10 at 20:26












LPWSTR is defined as wchar_t*, versus const wchar_t*. The error says you can't change a constant to mutable.
– Barmak Shemirani
Nov 10 at 20:26





LPWSTR is defined as wchar_t*, versus const wchar_t*. The error says you can't change a constant to mutable.
– Barmak Shemirani
Nov 10 at 20:26













Post a Minimal, Complete, and Verifiable example or there's not really anything we can do to help you.
– Jesper Juhl
Nov 10 at 20:27




Post a Minimal, Complete, and Verifiable example or there's not really anything we can do to help you.
– Jesper Juhl
Nov 10 at 20:27












They've been cracking down on such practices in VS2017. You can get the old behavior with Project > Properties > C/C++ > Language, "Conformance mode" = No. Or use wcscpy_s() to conform.
– Hans Passant
Nov 10 at 21:11




They've been cracking down on such practices in VS2017. You can get the old behavior with Project > Properties > C/C++ > Language, "Conformance mode" = No. Or use wcscpy_s() to conform.
– Hans Passant
Nov 10 at 21:11












1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










The lpDesktop field is a LPWSTR (wchar_t*), not a LPCWSTR (const wchar_t *). A wide string literal is a const wchar_t[N] (where N is 16 in your example), which decays to const wchar_t *. You cannot assign a pointer-to-const-data to a pointer-to-non-const-data. That is what the compiler is complaining about.



To assign a string literal to lpDesktop, you need to cast it:



start_info.lpDesktop = (LPWSTR) L"WinSta0\Default";


Or better:



start_info.lpDesktop = const_cast<LPWSTR>(L"WinSta0\Default");


Otherwise, copy the data to a local non-const wchar_t buffer and use that instead:



WCHAR szDesktop = L"WinSta0\Default";
start_info.lpDesktop = szDesktop;





share|improve this answer




















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53242871%2fstart-info-lpdesktop-is-lpwstr-entity-but-it-says-this-is-const-wchat-t%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote



    accepted










    The lpDesktop field is a LPWSTR (wchar_t*), not a LPCWSTR (const wchar_t *). A wide string literal is a const wchar_t[N] (where N is 16 in your example), which decays to const wchar_t *. You cannot assign a pointer-to-const-data to a pointer-to-non-const-data. That is what the compiler is complaining about.



    To assign a string literal to lpDesktop, you need to cast it:



    start_info.lpDesktop = (LPWSTR) L"WinSta0\Default";


    Or better:



    start_info.lpDesktop = const_cast<LPWSTR>(L"WinSta0\Default");


    Otherwise, copy the data to a local non-const wchar_t buffer and use that instead:



    WCHAR szDesktop = L"WinSta0\Default";
    start_info.lpDesktop = szDesktop;





    share|improve this answer
























      up vote
      1
      down vote



      accepted










      The lpDesktop field is a LPWSTR (wchar_t*), not a LPCWSTR (const wchar_t *). A wide string literal is a const wchar_t[N] (where N is 16 in your example), which decays to const wchar_t *. You cannot assign a pointer-to-const-data to a pointer-to-non-const-data. That is what the compiler is complaining about.



      To assign a string literal to lpDesktop, you need to cast it:



      start_info.lpDesktop = (LPWSTR) L"WinSta0\Default";


      Or better:



      start_info.lpDesktop = const_cast<LPWSTR>(L"WinSta0\Default");


      Otherwise, copy the data to a local non-const wchar_t buffer and use that instead:



      WCHAR szDesktop = L"WinSta0\Default";
      start_info.lpDesktop = szDesktop;





      share|improve this answer






















        up vote
        1
        down vote



        accepted







        up vote
        1
        down vote



        accepted






        The lpDesktop field is a LPWSTR (wchar_t*), not a LPCWSTR (const wchar_t *). A wide string literal is a const wchar_t[N] (where N is 16 in your example), which decays to const wchar_t *. You cannot assign a pointer-to-const-data to a pointer-to-non-const-data. That is what the compiler is complaining about.



        To assign a string literal to lpDesktop, you need to cast it:



        start_info.lpDesktop = (LPWSTR) L"WinSta0\Default";


        Or better:



        start_info.lpDesktop = const_cast<LPWSTR>(L"WinSta0\Default");


        Otherwise, copy the data to a local non-const wchar_t buffer and use that instead:



        WCHAR szDesktop = L"WinSta0\Default";
        start_info.lpDesktop = szDesktop;





        share|improve this answer












        The lpDesktop field is a LPWSTR (wchar_t*), not a LPCWSTR (const wchar_t *). A wide string literal is a const wchar_t[N] (where N is 16 in your example), which decays to const wchar_t *. You cannot assign a pointer-to-const-data to a pointer-to-non-const-data. That is what the compiler is complaining about.



        To assign a string literal to lpDesktop, you need to cast it:



        start_info.lpDesktop = (LPWSTR) L"WinSta0\Default";


        Or better:



        start_info.lpDesktop = const_cast<LPWSTR>(L"WinSta0\Default");


        Otherwise, copy the data to a local non-const wchar_t buffer and use that instead:



        WCHAR szDesktop = L"WinSta0\Default";
        start_info.lpDesktop = szDesktop;






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 10 at 20:42









        Remy Lebeau

        326k18244430




        326k18244430



























             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53242871%2fstart-info-lpdesktop-is-lpwstr-entity-but-it-says-this-is-const-wchat-t%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            這個網誌中的熱門文章

            Barbados

            How to read a connectionString WITH PROVIDER in .NET Core?

            Node.js Script on GitHub Pages or Amazon S3