:: operator

In for example this code:
1
2
3
void Sys_ShowWindow( bool show ) {
	::ShowWindow( win32.hWnd, show ? SW_SHOW : SW_HIDE );
}

What do the two colons before ShowWindow() mean?
It is called the scope resolution operator

Rather than give a long explaination of my own - google is your friend.

or see if you understand this explanation here..
http://www.cs.kent.edu/~volkert/cs23021/S06/Namespaces.pdf
Thanks!
Topic archived. No new replies allowed.