Jump to content

Recommended Posts

Posted

Hey yaaal!!

 

Lets say this is my code, (Semi-psudo)

#include <common used libraries>
#include <my own libraries>
myown.au3 ->>
func blabla_set($input)
if (CheckForThings) then return seterror
$blabla = $input
endfunc
 
;Main file
local $blabla
 blabla_set(24242
[/code]
 
1. Is there a way to make autoit do all checkings and then set my function "blabla_set" variables to Locla const? like c++ ifdef?
2. Is it possible to make autoit exctract the MyOwnFunctionCaller("Otherfunc") to the while loop after compiling? for example
 
[code]

while 1    MyOwnFunctionCaller("Otherfunc") wend

 

func OtherFunc()  own stuff own stuff own stuff endfunc

 

becomes

 

while 1  own stuff
own stuff own stuff wend

 

 

Thanks /t

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...