Author Topic: buidl err  (Read 862 times)

ncnnnn

  • Junior Member
  • **
  • Posts: 30
    • View Profile
buidl err
« on: June 25, 2024, 04:58:21 »
WIN11 VS2022

\MCFSPluginSample\Source\FSSampleStream.cpp(340,20): error C2446: '==': no conversion from 'int' to 'const WCHAR *'

and postbuild_x64.bat return err code 4

Mathias (Author)

  • Administrator
  • VIP Member
  • *****
  • Posts: 4366
    • View Profile
    • Multi Commander
Re: buidl err
« Reply #1 on: June 25, 2024, 07:27:09 »
Ah 64bit build.

replace line with
if(szNewFilename[0] == L'\0')

You can just removed the postbuild step, It is only used to copy it to folder where MC is.
« Last Edit: June 25, 2024, 07:33:03 by Mathias (Author) »

ncnnnn

  • Junior Member
  • **
  • Posts: 30
    • View Profile
Re: buidl err
« Reply #2 on: June 25, 2024, 09:01:07 »
build ok .thanks