Need 2 function parameters.

Results 1 to 3 of 3
  1. #1
    Account Upgraded | Title Enabled! Tman151 is offline
    MemberRank
    May 2009 Join Date
    CaliforniaLocation
    306Posts

    Need 2 function parameters.

    Can't figure out what the typedef parameters are for these 2 functions.

    ZFile::_scalar_deleting_destructor_
    and
    MZFileSystem::GetUpdatePackageNumber

    Thanks.


  2. #2
    Member Donald Duck is offline
    MemberRank
    Jun 2009 Join Date
    USA.Location
    95Posts

    Re: Need 2 function parameters.

    MZFileSystem::GetUpdatePackageNumber is an integer.

    int __thiscall MZFileSystem::GetUpdatePackageNumber(char const *)

    The const char is szPackageFileName. So you will have to write a small ASM code to get the integer back from the function.

  3. #3
    Account Upgraded | Title Enabled! Tman151 is offline
    MemberRank
    May 2009 Join Date
    CaliforniaLocation
    306Posts

    Re: Need 2 function parameters.

    Quote Originally Posted by Donald Duck View Post
    MZFileSystem::GetUpdatePackageNumber is an integer.

    int __thiscall MZFileSystem::GetUpdatePackageNumber(char const *)

    The const char is szPackageFileName. So you will have to write a small ASM code to get the integer back from the function.
    Thank you!!
    No wonder why I couldn't find the parameter on MZFileSystem::GetUpdatePackageNumber.
    Again, thank you.



Advertisement