msptiApiCallbackSite

msptiApiCallbackSite is the enumeration class invoked by msptiCallbackData.

Specifies the point where the callback is issued in the API call. The definition is as follows:

1
2
3
4
5
typedef enum {
	MSPTI_API_ENTER = 0,    // Called back when the API is called.
	MSPTI_API_EXIT = 1,    // Called back after the API exits.
	MSPTI_API_CBSITE_FORCE_INT = 0x7fffffff
} msptiApiCallbackSite;