windows.h
-
I want a list of functions of library windows.h and winsock2.h - I can't find them on msdn. Please help me!
Can't you simply have a look at the files (you know, function prototypes are there...)? :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
I want a list of functions of library windows.h and winsock2.h - I can't find them on msdn. Please help me!
Why? Usually you trace in the other direction - "I want to use some_function - what header is it declared in?". One way to do it, though, would be to pre-process Windows.h. Here's a command-line that does that and uses grep to strip out the (many, many) blank lines (the resulting file still contains almost 65000 lines...). It assumes that I've changed directory to one containing Windows.h, obviously:
cl /TC /EP Windows.h | grep -v "^\s*$" > file_name
You could do a similar thing for winsock2.h
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
-
I want a list of functions of library windows.h and winsock2.h - I can't find them on msdn. Please help me!