Oxygen Basic

Programming => Problems & Solutions => Topic started by: on October 13, 2018, 03:32:19 AM

Title: LHashValOfNameSys
Post by: on October 13, 2018, 03:32:19 AM
In oleauto.inc there is a duplicate definition:

! LHashValOfNameSys
! LHashValOfNameSys "LHashValOfNameSysA"

The compiler throws an error if you compile with #unique on.

You can solve the problem using

! LHashValOfNameSys "LHashValOfNameSysA"
! LHashValOfNameSysW "LHashValOfNameSys"

This function has the particularity that the unicode version was named as "LHashValOfNameSys" instead of "LHashValOfNameSysW".
Title: Re: LHashValOfNameSys
Post by: Charles Pegge on October 13, 2018, 05:09:21 AM
Thanks, José. That fix is adopted.