Include : file dimenticati in precedente Commit.

This commit is contained in:
Dario Sassi
2013-12-12 08:36:03 +00:00
parent 18e39e00f5
commit bcaf568ff9
2 changed files with 59 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
//----------------------------------------------------------------------------
// EgalTech 2013-2013
//----------------------------------------------------------------------------
// File : EgnFileCompare.h Data : 11.12.13 Versione : 1.4a5
// Contenuto : Prototipi funzioni di confronto tra file.
//
//
//
// Modifiche : 11.12.13 DS Creazione modulo.
//
//
//----------------------------------------------------------------------------
#pragma once
#include <string>
//----------------------- Macro per import/export ----------------------------
#undef EGN_EXPORT
#if defined( I_AM_EGN) // da definirsi solo nella DLL
#define EGN_EXPORT __declspec( dllexport)
#else
#define EGN_EXPORT __declspec( dllimport)
#endif
//-----------------------------------------------------------------------------
EGN_EXPORT bool TextFileCompare( const std::string& sFile1, const std::string& sFile2,
const std::string& sRemIni, const std::string& sFileO) ;
+29
View File
@@ -0,0 +1,29 @@
//----------------------------------------------------------------------------
// EgalTech 2013-2013
//----------------------------------------------------------------------------
// File : EgnFileUtils.h Data : 11.12.13 Versione : 1.4a5
// Contenuto : Prototipi funzioni di utilità sui file.
//
//
//
// Modifiche : 11.12.13 DS Creazione modulo.
//
//
//----------------------------------------------------------------------------
#pragma once
#include <string>
//----------------------- Macro per import/export ----------------------------
#undef EGN_EXPORT
#if defined( I_AM_EGN) // da definirsi solo nella DLL
#define EGN_EXPORT __declspec( dllexport)
#else
#define EGN_EXPORT __declspec( dllimport)
#endif
//-----------------------------------------------------------------------------
EGN_EXPORT bool EraseFile( const std::string& sFile) ;
EGN_EXPORT bool EmptyDirectory( const std::string& sDir) ;