3d06ce7c60
- modifiche nelle dichiarazioni dei puntatori a funzione - aggiornamento prototipi.
26 lines
1007 B
C++
26 lines
1007 B
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2018-2025
|
|
//----------------------------------------------------------------------------
|
|
// File : EgtFunPtrType.h Data : 12.10.25 Versione : 2.7j25
|
|
// Contenuto : Dichiarazione tipi puntatori a funzione.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 19.07.18 DS Creazione modulo.
|
|
// 23.11.23 DS Aggiunta pfOnTerminateProcess.
|
|
// 12.10.25 DS Aggiunta pfCdeclProcEvents.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
//----------------------------------------------------------------------------
|
|
typedef bool (__stdcall * psfOnTerminateProcess) ( int) ;
|
|
typedef int (__stdcall * psfProcEvents) ( int, int) ;
|
|
typedef bool (__stdcall * psfOutText) ( const std::string&) ;
|
|
|
|
//----------------------------------------------------------------------------
|
|
typedef int (__cdecl * pcfProcEvents) ( int, int) ;
|