Jump to content

Recommended Posts

Posted

I found a script on the web that uses a function called DllStructDelete but when trying to recompile using the latest beta I found that there is no function of that name.? Was it replaced with another function name?

MrChris

  • Moderators
Posted

I found a script on the web that uses a function called DllStructDelete but when trying to recompile using the latest beta I found that there is no function of that name.? Was it replaced with another function name?

MrChris

Replace:

DllStructDelete($var)oÝ÷ Ùh­«­¢+ØÀÌØíÙÈôÀ
Posted (edited)

As an option you could add the following to the script

Func DllStructDelete( ByRef $v_var)
$v_var = 0
EndFunc

Useful if there are a few of them, or you don't want to change the original code.

Edited by eltorro
Posted

Nothing if it is a local variable and you just return after as tyhe local variable will be destroyed by the return mechanism

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...