home *** CD-ROM | disk | FTP | other *** search
- // Pal is a .CPP program that mimics almost exactly the sample .C
- // program called 'Palette' which is included with Visual C.
- // Of cource, you use this program 'at your own risk' (I'm supposed to
- // say that, just in case something weird happens just at the very moment
- // you begin compiling or executing the program).
- // I've included relevent comments, but if there's anything you don't
- // understand, feel free to contact me, I'll try to answer your questions.
- // In order to simplify unzipping, there is no RES subdirectory, so I've
- // changed the relevant lines in the .RC file. I also had to change a line
- // in the .MAK file, but since it is NOT generally good practice to alter
- // the ApplicationWizard generated.MAK file, I haven't indicated which one it is.
- // Good Luck.
- // Pamela Grandt 73150,3072
-
-
-
- // pal.h : main header file for the PAL application
- //
-
- #ifndef __AFXWIN_H__
- #error include 'stdafx.h' before including this file for PCH
- #endif
-
- #include "resource.h" // main symbols
-
- /////////////////////////////////////////////////////////////////////////////
- // CPalApp:
- // See pal.cpp for the implementation of this class
- //
-
- class CPalApp : public CWinApp
- {
- public:
- CPalApp();
-
- // Overrides
- virtual BOOL InitInstance();
-
- // Implementation
-
- //{{AFX_MSG(CPalApp)
- afx_msg void OnAppAbout();
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
-
- /////////////////////////////////////////////////////////////////////////////
-