| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 
 |  
typedef void (CALLBACK *type)(
  short **overviewBuffers,
  short overflow,
  unsigned long triggeredAt,
  short triggered,
  short auto_stop,
  unsigned long nValues);
 
void __stdcall MaFonction (short **Buffers, short overflow, unsigned long triggeredAt, short triggered, short auto_stop, unsigned long nValues );
...
sResult = AffectFonctionRetour(DeviceHandle, (type)MaFonction);
...
 
void __stdcall MaFonction (short **OverviewBuffers, short overflow, unsigned long triggeredAt, short triggered, short auto_stop, unsigned long nValues )
{
	return;
} | 
Partager