Author Topic: Griever Source Code: Where's the start?  (Read 3730 times)

gig4ls

  • Guest
Griever Source Code: Where's the start?
« 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.

Synergy Blades

  • Guest
Re: Griever Source Code: Where's the start?
« Reply #1 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

gig4ls

  • Guest
Re: Griever Source Code: Where's the start?
« Reply #2 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? :)

Almighty_gir

  • *
  • Posts: 242
    • View Profile
Re: Griever Source Code: Where's the start?
« Reply #3 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.

Aaron

  • *
  • Posts: 2818
    • View Profile
    • http://aaron-kelley.net/
Re: Griever Source Code: Where's the start?
« Reply #4 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.