diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2001-10-20 10:41:09 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2001-10-20 10:41:09 +0000 |
commit | b07891c58b8eca9497e26a67ec9f73f99d3a2298 (patch) | |
tree | 6dbc761165d684ad9e7c10eab523e4ce78263e49 | |
parent | 6fdd213161e7795b55ac1c0a4f70d02d13f53f82 (diff) | |
download | cygnal-b07891c58b8eca9497e26a67ec9f73f99d3a2298.tar.gz cygnal-b07891c58b8eca9497e26a67ec9f73f99d3a2298.tar.bz2 cygnal-b07891c58b8eca9497e26a67ec9f73f99d3a2298.zip |
* include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
(WNetGetResourceInformationW): Ditto.
(WNetGetResourceInformation): Add define.
-rw-r--r-- | winsup/w32api/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/w32api/include/winnetwk.h | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index d2a88d7f0..8e6201b15 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,9 @@ +2001-10-20 Corinna Vinschen <corinna@vinschen.de> + + * include/winnetwk.h (WNetGetResourceInformationA): Add declaration. + (WNetGetResourceInformationW): Ditto. + (WNetGetResourceInformation): Add define. + 2001-09-18 Danny Smith <dannysmith@users.sourceforge.net> * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure diff --git a/winsup/w32api/include/winnetwk.h b/winsup/w32api/include/winnetwk.h index 2fc39ceb0..f65bd5ae1 100644 --- a/winsup/w32api/include/winnetwk.h +++ b/winsup/w32api/include/winnetwk.h @@ -272,6 +272,8 @@ DWORD APIENTRY WNetGetProviderNameA(DWORD,LPSTR,PDWORD); DWORD APIENTRY WNetGetProviderNameW(DWORD,LPWSTR,PDWORD); DWORD APIENTRY WNetGetNetworkInformationA(LPCSTR,LPNETINFOSTRUCT); DWORD APIENTRY WNetGetNetworkInformationW(LPCWSTR,LPNETINFOSTRUCT); +DWORD APIENTRY WNetGetResourceInformationA(LPNETRESOURCEA,LPVOID,LPDWORD,LPCSTR*); +DWORD APIENTRY WNetGetResourceInformationW(LPNETRESOURCEA,LPVOID,LPDWORD,LPCWSTR*); DWORD APIENTRY WNetGetLastErrorA(PDWORD,LPSTR,DWORD,LPSTR,DWORD); DWORD APIENTRY WNetGetLastErrorW(PDWORD,LPWSTR,DWORD,LPWSTR,DWORD); DWORD APIENTRY MultinetGetConnectionPerformanceA(LPNETRESOURCEA,LPNETCONNECTINFOSTRUCT); @@ -287,6 +289,7 @@ typedef REMOTE_NAME_INFOW REMOTE_NAME_INFO,*LPREMOTE_NAME_INFO; typedef UNIVERSAL_NAME_INFOW UNIVERSAL_NAME_INFO,*LPUNIVERSAL_NAME_INFO; #define WNetEnumResource WNetEnumResourceW #define WNetOpenEnum WNetOpenEnumW +#define WNetGetResourceInformation WNetGetResourceInformationW #define WNetGetUniversalName WNetGetUniversalNameW #define WNetSetConnection WNetSetConnectionW #define WNetUseConnection WNetUseConnectionW @@ -314,6 +317,7 @@ typedef UNIVERSAL_NAME_INFOA UNIVERSAL_NAME_INFO,*LPUNIVERSAL_NAME_INFO; typedef REMOTE_NAME_INFOA REMOTE_NAME_INFO,*LPREMOTE_NAME_INFO; #define WNetOpenEnum WNetOpenEnumA #define WNetEnumResource WNetEnumResourceA +#define WNetGetResourceInformation WNetGetResourceInformationA #define WNetGetUniversalName WNetGetUniversalNameA #define WNetConnectionDialog1 WNetConnectionDialog1A #define WNetDisconnectDialog1 WNetDisconnectDialog1A |