You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
433 B
21 lines
433 B
// vsspage.h : main header file for the VSSUI DLL
|
|
//
|
|
|
|
#ifndef __VSSPAGE_H_
|
|
#define __VSSPAGE_H_
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CVssPageApp
|
|
// See vssui.cpp for the implementation of this class
|
|
//
|
|
|
|
class CVssPageApp : public CWinApp
|
|
{
|
|
public:
|
|
virtual BOOL InitInstance();
|
|
virtual int ExitInstance();
|
|
protected:
|
|
BOOL m_bRun;
|
|
};
|
|
|
|
#endif // _VSSPAGE_H_
|