2e2f69b252
- aggiornamento prototipi.
22 lines
812 B
C++
22 lines
812 B
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2018-2023
|
|
//----------------------------------------------------------------------------
|
|
// File : EgtFunPtrType.h Data : 23.11.23 Versione : 2.5k5
|
|
// Contenuto : Dichiarazione tipi puntatori a funzione.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 19.07.18 DS Creazione modulo.
|
|
// 23.11.23 DS Aggiunta pfOnTerminateProcess.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
//----------------------------------------------------------------------------
|
|
typedef bool (__stdcall * pfOnTerminateProcess) ( int) ;
|
|
typedef int (__stdcall * pfProcEvents) ( int, int) ;
|
|
typedef bool (__stdcall * pfOutText) ( const std::string&) ;
|