Search found 7 matches

by AstroDog
2003-07-11 06:50
Forum: Programmer's Help
Topic: The code is beautiful
Replies: 1
Views: 1834

The code is beautiful

Thanks :)
by AstroDog
2003-04-08 03:59
Forum: Programmer's Help
Topic: Eyy!
Replies: 0
Views: 1454

Eyy!

Code: Select all

while( (wnd=::GetWindow(mf->m_hWndClient, GW_CHILD)) != NULL) {
		if(wnd == wnd2) 
			Sleep(100);
		else { 
			::PostMessage(wnd, WM_CLOSE, 0, 0);
			wnd2 = wnd;
		}
	}
Long time since I was here last. Just dove into the sourcecode and thought I'd make a stupid comment. What about iterators? :P
by AstroDog
2003-03-23 07:13
Forum: Off Topic
Topic: THE FORUMS ARE REALLY SLOW
Replies: 8
Views: 4551

THE FORUMS ARE REALLY SLOW

The forums are really lagging.

Code: Select all

bandWidth++
please :roll:
by AstroDog
2003-03-23 03:36
Forum: Programmer's Help
Topic: Understanding the source code
Replies: 7
Views: 4010

So I presume source(qi->getCurrent()->getPath()) would be equivalent of source = qi->getCurrent()->getPath(); or even some method source(qi->getCurrent()->getPath()) but problem is I can't find neither a variable nor a method. So how does that initializing work? And what is this here below that I se...
by AstroDog
2003-03-22 15:39
Forum: Programmer's Help
Topic: Understanding the source code
Replies: 7
Views: 4010

Download::Download(QueueItem* qi) throw() : source(qi->getCurrent()->getPath()), target(qi->getTarget()), tempTarget(qi->getTempTarget()), comp(NULL), bytesLeft(0), rollbackBuffer(NULL), rollbackSize(0) someone please explain this code since I don't understand anything of it, with all the : and etc....
by AstroDog
2003-03-22 10:50
Forum: Programmer's Help
Topic: Understanding the source code
Replies: 7
Views: 4010

Well you did give me some info =)

Although I really would need a real coded example cause I am so not familiar with all the terminology of hooks and locks but I am confident (yeey =) that I would understand them with just a coded example and a few lines of good tutoring text, hehe. And of course the WTL-book if there exists one. Pre...
by AstroDog
2003-03-22 05:37
Forum: Programmer's Help
Topic: Understanding the source code
Replies: 7
Views: 4010

Understanding the source code

Hey! I have gone through the source code to some extent and have made successful changes but I don't understand the overall workings of the code. So my questions is how can I understand it fully? And also where can I learn WTL? Good someone perhaps by a quick example tell me how to for example add a...