28 lines
449 B
C++
28 lines
449 B
C++
// FileTransfer.h : main header file for the FileTransfer DLL
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#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 CFileTransferApp : public CWinApp
|
|
{
|
|
public:
|
|
CFileTransferApp();
|
|
|
|
// Overrides
|
|
public:
|
|
virtual BOOL InitInstance();
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|