asynchronous_procedure


typedef void (__stdcall *asynchronous_procedure)(void* parameter);

Type definition for asynchronous functions.

Parameters

void* parameter

An application defined integer.

Notes

Once a single asynchonous function is called, all remaining such functions are called prior to returning to thread execution.

The functions write_file_extended and read_file_extended can use asynchronous function calls to notify the calling thread of the completion of an input/output operation.