void get_thread_stack()

in v2/src/get_thread_stack.c [299:309]


void get_thread_stack(HANDLE thread, char* destination, size_t destinationSize)
{
    (void)thread;

    /*just return empty string to caller if possible*/

    if ((destination != NULL) && (destinationSize > 0))
    {
        destination[0] = '\0';
    }
}