2239ec8e6a
- aggiornamento prototipi - aggiunto include per puntatori a funzione generali.
21 lines
698 B
C++
21 lines
698 B
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2018-2018
|
|
//----------------------------------------------------------------------------
|
|
// File : EgtFunPtrType.h Data : 19.07.18 Versione : 1.9g2
|
|
// Contenuto : Dichiarazione tipi puntatori a funzione.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 19.07.18 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
//----------------------------------------------------------------------------
|
|
typedef int (__stdcall * pfProcEvents) (int, int) ;
|
|
typedef bool (__stdcall * pfOutText) ( const std::string&) ;
|