I understand that win32 is written in C , After include windows.h you can call it like normal C function.
But in many example in some blog or web site, they use :: before the function name
for example
HANDLE hDir = ::CreateFile(
strDirectory,
...
NULL);
Is it difference from ?
HANDLE hDir = CreateFile(
strDirectory,
...
NULL);
This post has been edited by BerryBoy: 20 December 2010 - 10:22 PM

New Topic/Question
Reply





MultiQuote










|