It's a pointer to a pointer to void (unspecified type). It means that this variable (memory location) contains an address to a memory location, that contains an address to another memory location, and what is stored there is not specified.
To be used for something useful, the pointer that it points to has to be casted to something.
1 2 3 4 5 6 7 8 9 10 11
int i = 10;
void * vp = &i;
void ** vpp = &vp;
// ...
void * other = *vpp; // Get address that vpp is pointing to
int * ip = static_cast<int*>(other); // Cast to pointer to integer
int j = *ip; // Read an int from the same memory location
// j == i == 10;