Is it posible to make a sort function with an pointer to an callback?
PHP Code:
//...
void Sort(LPCSTR *CallBackName// This can't compile....!!
{
        
qsort(this->GetData(), this->GetSize(), sizeof(ARG_T), CallBackName);
//...