to be honest no I'm not 100% sure what it means,what is it?
and yeah I think it's a function in the windows.h library i just a tutorial on youtube with someone using it and he just included the window.h header file and it worked just fine for him
how do you know or find out if a function belongs to a certain header?
First place to look is the reference documentation - standard C and C++ functions are detailed on this site. For Windows functions, consult the Microsoft documentation.
However - a second way, when all else fails is to do a search of all the header files in your compiler's include directory(s).
When searching, a search of all files *.* and all directories would be a last resort when completely lost. Warning - this can take a very long time to complete. Ideally specify the directory(s) and file types (such as *.h or *.hpp) and it should run much more quickly.