53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
/*
|
|
=======================================================================================
|
|
Name :MngData5.h
|
|
|
|
Author : VL Date :10/07/97
|
|
|
|
Description : main header file for the MNGDATA application
|
|
=======================================================================================
|
|
Modification -> Author : Date :
|
|
Description :
|
|
=======================================================================================
|
|
*/
|
|
|
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
|
#ifndef __AFXWIN_H__
|
|
#error include 'stdafx.h' before including this file for PCH
|
|
#endif
|
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
|
#include "resource.h" // main symbols
|
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
|
|
|
/*
|
|
=======================================================================================
|
|
CMngDataApp
|
|
=======================================================================================
|
|
*/
|
|
class CMngDataApp : public CWinApp
|
|
{
|
|
public:
|
|
CMngDataApp();
|
|
|
|
/* ==> specific functions */
|
|
BOOL fn_bInitWindowsSocket( void );
|
|
void fn_vCloseWindowsSocket( void );
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CMngDataApp)
|
|
public:
|
|
virtual BOOL InitInstance();
|
|
virtual int ExitInstance();
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
|
|
//{{AFX_MSG(CMngDataApp)
|
|
// 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()
|
|
};
|
|
|