Qhimm.com Forums

Miscellaneous Forums => Troubleshooting => Topic started by: gig4ls on 2007-05-09 20:56:01

Title: Griever Source Code: Where's the start?
Post by: gig4ls on 2007-05-09 20:56:01
Forgive me if this is obvious, but I'm a c++ noob.

Where is the main entry point for the program?  :?
I could maybe figure out what's going on as long as I have this, but for the life of me I can't figure out where main is.
Title: Re: Griever Source Code: Where's the start?
Post by: Synergy Blades on 2007-05-09 23:22:40
Qhimm's apps use MFC if I'm not mistaken, so there's no main() function as such. Take CGrieverDlg as your starting point, but if you're not familiar with MFC I'd steer clear if I were you.  :-D
Title: Re: Griever Source Code: Where's the start?
Post by: gig4ls on 2007-05-10 00:48:43
Qhimm's apps use MFC if I'm not mistaken, so there's no main() function as such. Take CGrieverDlg as your starting point, but if you're not familiar with MFC I'd steer clear if I were you.  :-D

Thanks for the info! This was really confusing me, especially since I've never seen c++ code. As for steering clear,...I may as well try right? :)
Title: Re: Griever Source Code: Where's the start?
Post by: Almighty_gir on 2007-07-02 18:06:45
no... i think you'll find that, altering the code of some applications could cause the downfall of the internet.
Title: Re: Griever Source Code: Where's the start?
Post by: Aaron on 2007-07-02 21:00:55
It would help to become somewhat familiar with C++ before digging into an MFC application...  A lot of it will be just confusing if you have never even seen "regular" object-oriented C++ before.