theguy0000 Posted September 24, 2005 Posted September 24, 2005 (edited) (i got this version of source http://www.autoitscript.com/autoit3/files/...-v3.1.0-src.exe)I am trying to at least get a vaugue understanding of the source code I'm really confused!Where are built-in functions defined? maybe a short definition of the important files? Edited September 28, 2005 by theguy0000 The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN
peethebee Posted September 26, 2005 Posted September 26, 2005 Hi! It is useful to have a tool like Dev-C++ installed to understand the source, because you have syntax highliting and project-wide search (i think). peethebee vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvGerman Forums: http://www.autoit.deGerman Help File: http://autoit.de/hilfe vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
/dev/null Posted September 26, 2005 Posted September 26, 2005 Where are built-in functions defined? maybe a short definition of the important files?They are in several script*.cpp files. Search the files for AutoIt_Script::F_xxx, where xxx is the name of the function. Like: AutoIt_Script::F_MsgBox in script_misc.cpp.CheersKurt __________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *
theguy0000 Posted September 28, 2005 Author Posted September 28, 2005 (edited) Hi!It is useful to have a tool like Dev-C++ installed to understand the source, because you have syntax highliting and project-wide search (i think).peethebeeyeah i use Dev-C++They are in several script*.cpp files. Search the files for AutoIt_Script::F_xxx, where xxx is the name of the function. Like: AutoIt_Script::F_MsgBox in script_misc.cpp.CheersKurtthanks!could someone explain to me the basics of a function in autoit? Edited September 28, 2005 by theguy0000 The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN
layer Posted September 28, 2005 Posted September 28, 2005 Let's start from point 1. Do you know the language, C++ ?How familiar are you with it ?Then maybe we could get you off on the right foot. FootbaG
theguy0000 Posted October 1, 2005 Author Posted October 1, 2005 (edited) I'm not very farmilliar with it, but yes, i know some of it. what does this line do, in F_ConsoleWrite? fflush(stdout); Edited October 1, 2005 by theguy0000 The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN
w0uter Posted October 1, 2005 Posted October 1, 2005 google. My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
/dev/null Posted October 2, 2005 Posted October 2, 2005 I'm not very farmilliar with it, but yes, i know some of it.what does this line do, in F_ConsoleWrite?fflush(stdout);I suggest you learn more about C++. Without that knowledge you won't understand the source code. http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.htmlCheersKurt __________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now