23 lines
361 B
C++
23 lines
361 B
C++
#ifndef __AFXWIN_H__
|
|
#error "include 'stdafx.h' before including this file for PCH"
|
|
#endif
|
|
|
|
#include "resource.h" // main symbols
|
|
|
|
|
|
// CFileTransferApp
|
|
// See FileTransfer.cpp for the implementation of this class
|
|
//
|
|
|
|
class LicUtilesApp : public CWinApp
|
|
{
|
|
public:
|
|
LicUtilesApp();
|
|
|
|
// Overrides
|
|
public:
|
|
virtual BOOL InitInstance();
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|