Juan Lang juan_lang@yahoo.com writes:
Removed C++-style comments. Supercedes http://www.winehq.org/hypermail/wine-patches/2003/05/0069.html
ChangeLog: Adds an implementation of iphlpapi.dll; most Get* functions introduced through Win98 are included.
The implementation should use the same function names as the exported entry points, without the IPHLPAPI_ prefix, exactly the way they are declared in iphlpapi.h. For instance
DWORD __stdcall IPHLPAPI_AddIPAddress(...)
should really be
DWORD WINAPI AddIPAddress(...)
etc.
Also you can't share code by putting source files in misc/. All source files must be local to the dll, and other dlls have to use the exported API exclusively. And please use diff -u to make patches.