diff options
author | Dimitri Papadopoulos <dimitri_at@users.sf.net> | 2006-05-12 12:33:37 +0000 |
---|---|---|
committer | Dimitri Papadopoulos <dimitri_at@users.sf.net> | 2006-05-12 12:33:37 +0000 |
commit | 8595d0d7b80dc953e63b9c44b12f377b89c2e847 (patch) | |
tree | 4f11c39894056c5be5ce053fdb894fcfb501d52e | |
parent | 28eba36967acadd79e0e8d9edc06f04f849d65e6 (diff) | |
download | cygnal-8595d0d7b80dc953e63b9c44b12f377b89c2e847.tar.gz cygnal-8595d0d7b80dc953e63b9c44b12f377b89c2e847.tar.bz2 cygnal-8595d0d7b80dc953e63b9c44b12f377b89c2e847.zip |
* include/mprapi.h:(MprAdminBufferFree)
(MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
(MprAdminInterfaceConnect,MprAdminInterfaceCreate)
(MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
(MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
(MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
(MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
(MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
(MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
(MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
(MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
(MprAdminInterfaceTransportSetInfo)
(MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
(MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
(MprAdminServerConnect,MprAdminServerDisconnect)
(MprAdminServerGetCredentials,MprAdminServerGetInfo)
(MprAdminServerSetCredentials,MprAdminTransportCreate)
(MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
-rw-r--r-- | winsup/w32api/ChangeLog | 21 | ||||
-rw-r--r-- | winsup/w32api/include/mprapi.h | 38 |
2 files changed, 59 insertions, 0 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 3e97a1401..2ae5bec0b 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,5 +1,26 @@ 2006-05-12 Dimitri Papadopoulos <papadopo@users.sourceforge.net> + * include/mprapi.h:(MprAdminBufferFree) + (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString) + (MprAdminInterfaceConnect,MprAdminInterfaceCreate) + (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo) + (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect) + (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials) + (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle) + (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult) + (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx) + (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd) + (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove) + (MprAdminInterfaceTransportSetInfo) + (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes) + (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification) + (MprAdminServerConnect,MprAdminServerDisconnect) + (MprAdminServerGetCredentials,MprAdminServerGetInfo) + (MprAdminServerSetCredentials,MprAdminTransportCreate) + (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions. + +2006-05-12 Dimitri Papadopoulos <papadopo@users.sourceforge.net> + * include/ipxtfflt.h: New file. 2006-05-12 Dimitri Papadopoulos <papadopo@users.sourceforge.net> diff --git a/winsup/w32api/include/mprapi.h b/winsup/w32api/include/mprapi.h index ae509231b..3ef3e7f3e 100644 --- a/winsup/w32api/include/mprapi.h +++ b/winsup/w32api/include/mprapi.h @@ -474,6 +474,44 @@ DWORD WINAPI MprAdminGetPDCServer(const WCHAR*,const WCHAR*,LPWSTR); DWORD WINAPI MprAdminSendUserMessage(MPR_SERVER_HANDLE,HANDLE,LPWSTR); DWORD WINAPI MprAdminUserGetInfo(const WCHAR*,const WCHAR*,DWORD,LPBYTE); DWORD WINAPI MprAdminUserSetInfo(const WCHAR*,const WCHAR*,DWORD,const LPBYTE); +/*--- Router Management Reference - Router Administration Functions */ +DWORD WINAPI MprAdminBufferFree(LPVOID); +DWORD WINAPI MprAdminDeregisterConnectionNotification(MPR_SERVER_HANDLE,HANDLE); +DWORD WINAPI MprAdminEstablishDomainRasServer(PWCHAR,PWCHAR,BOOL); +DWORD WINAPI MprAdminGetErrorString(DWORD,LPWSTR*); +DWORD WINAPI MprAdminInterfaceConnect(MPR_SERVER_HANDLE,HANDLE,HANDLE,BOOL); +DWORD WINAPI MprAdminInterfaceCreate(MPR_SERVER_HANDLE,DWORD,LPBYTE,HANDLE*); +DWORD WINAPI MprAdminInterfaceDelete(MPR_SERVER_HANDLE,HANDLE); +DWORD WINAPI MprAdminInterfaceDeviceGetInfo(MPR_SERVER_HANDLE,HANDLE,DWORD,DWORD,LPBYTE*); +DWORD WINAPI MprAdminInterfaceDeviceSetInfo(MPR_SERVER_HANDLE,HANDLE,DWORD,DWORD,LPBYTE); +DWORD WINAPI MprAdminInterfaceDisconnect(MPR_SERVER_HANDLE,HANDLE); +DWORD WINAPI MprAdminInterfaceEnum(MPR_SERVER_HANDLE,DWORD,LPBYTE*,DWORD,LPDWORD,LPDWORD,LPDWORD); +DWORD WINAPI MprAdminInterfaceGetCredentials(LPWSTR,LPWSTR,LPWSTR,LPWSTR,LPWSTR); +DWORD WINAPI MprAdminInterfaceGetHandle(MPR_SERVER_HANDLE,LPWSTR,HANDLE*,BOOL); +DWORD WINAPI MprAdminInterfaceGetInfo(MPR_SERVER_HANDLE,HANDLE,DWORD,LPBYTE*); +DWORD WINAPI MprAdminInterfaceQueryUpdateResult(MPR_SERVER_HANDLE,HANDLE,DWORD,LPDWORD); +DWORD WINAPI MprAdminInterfaceSetCredentials(LPWSTR,LPWSTR,LPWSTR,LPWSTR,LPWSTR); +DWORD MprAdminInterfaceSetCredentialsEx(MPR_SERVER_HANDLE,HANDLE,DWORD,LPBYTE); +DWORD MprAdminInterfaceSetInfo(MPR_SERVER_HANDLE,HANDLE,DWORD,LPBYTE); +DWORD MprAdminInterfaceTransportAdd(MPR_SERVER_HANDLE,HANDLE,DWORD,LPBYTE,DWORD); +DWORD MprAdminInterfaceTransportGetInfo(MPR_SERVER_HANDLE,HANDLE,DWORD,LPBYTE*,LPDWORD); +DWORD MprAdminInterfaceTransportRemove(MPR_SERVER_HANDLE,HANDLE,DWORD); +DWORD MprAdminInterfaceTransportSetInfo(MPR_SERVER_HANDLE,HANDLE,DWORD,LPBYTE,DWORD); +DWORD MprAdminInterfaceUpdatePhonebookInfo(MPR_SERVER_HANDLE,HANDLE); +DWORD MprAdminInterfaceUpdateRoutes(MPR_SERVER_HANDLE,HANDLE,DWORD,HANDLE); +DWORD MprAdminIsDomainRasServer(PWCHAR,PWCHAR,PBOOL); +BOOL MprAdminIsServiceRunning(LPWSTR); +DWORD MprAdminRegisterConnectionNotification(MPR_SERVER_HANDLE,HANDLE); +DWORD MprAdminServerConnect(LPWSTR,MPR_SERVER_HANDLE*); +void MprAdminServerDisconnect(MPR_SERVER_HANDLE); +DWORD MprAdminServerGetCredentials(MPR_SERVER_HANDLE,DWORD,LPBYTE*); +DWORD MprAdminInterfaceGetCredentialsEx(MPR_SERVER_HANDLE,HANDLE,DWORD,LPBYTE*); +DWORD MprAdminServerGetInfo(MPR_SERVER_HANDLE,DWORD,LPBYTE*); +DWORD MprAdminServerSetCredentials(MPR_SERVER_HANDLE,DWORD,LPBYTE); +DWORD MprAdminServerSetInfo(MPR_SERVER_HANDLE,DWORD,LPBYTE); +DWORD MprAdminTransportCreate(MPR_SERVER_HANDLE,DWORD,LPWSTR,LPBYTE,DWORD,LPBYTE,DWORD,LPWSTR); +DWORD MprAdminTransportGetInfo(MPR_SERVER_HANDLE,DWORD,LPBYTE*,LPDWORD,LPBYTE*,LPDWORD); +DWORD MprAdminTransportSetInfo(MPR_SERVER_HANDLE,DWORD,LPBYTE,DWORD,LPBYTE,DWORD); #endif /* (_WIN32_WINNT >= 0x0500) */ #ifdef __cplusplus |