diff options
| author | Laxmikant Rashinkar <LK.Rashinkar@gmail.com> | 2012-11-09 19:55:21 -0800 | 
|---|---|---|
| committer | Laxmikant Rashinkar <LK.Rashinkar@gmail.com> | 2012-11-09 19:55:21 -0800 | 
| commit | edf5971cefc98695503dca3fee2d47cd849e56c3 (patch) | |
| tree | 3e7110353bae7133c7653eda1b3f4c5ae728fa76 /xrdpapi/xrdpapi.h | |
| parent | 77e74e8e680d432769112492d14d05909eb15ebc (diff) | |
| download | xrdp-proprietary-edf5971cefc98695503dca3fee2d47cd849e56c3.tar.gz xrdp-proprietary-edf5971cefc98695503dca3fee2d47cd849e56c3.zip | |
o in login dialog set sesman-X11rdp as the default module
o added support for video redirection without using TSMF
Diffstat (limited to 'xrdpapi/xrdpapi.h')
| -rw-r--r-- | xrdpapi/xrdpapi.h | 29 | 
1 files changed, 15 insertions, 14 deletions
| diff --git a/xrdpapi/xrdpapi.h b/xrdpapi/xrdpapi.h index fdb998cf..81e5acd5 100644 --- a/xrdpapi/xrdpapi.h +++ b/xrdpapi/xrdpapi.h @@ -45,32 +45,33 @@ typedef enum _WTS_VIRTUAL_CLASS  {      WTSVirtualClientData,      WTSVirtualFileHandle -} WTS_VIRTUAL_CLASS; +} +WTS_VIRTUAL_CLASS;  /*   * Reference:   * http://msdn.microsoft.com/en-us/library/windows/desktop/aa383464(v=vs.85).aspx   */ -void* WTSVirtualChannelOpen(void* hServer, unsigned int SessionId, -                            const char* pVirtualName); +void *WTSVirtualChannelOpen(void *hServer, unsigned int SessionId, +                            const char *pVirtualName); -void* WTSVirtualChannelOpenEx(unsigned int SessionId, -                              const char* pVirtualName, unsigned int flags); +void *WTSVirtualChannelOpenEx(unsigned int SessionId, +                                const char *pVirtualName, unsigned int flags); -int WTSVirtualChannelWrite(void* hChannelHandle, const char* Buffer, -                           unsigned int Length, unsigned int* pBytesWritten); +int WTSVirtualChannelWrite(void *hChannelHandle, const char *Buffer, +                            unsigned int Length, unsigned int *pBytesWritten); -int WTSVirtualChannelRead(void* hChannelHandle, unsigned int TimeOut, -                          char* Buffer, unsigned int BufferSize, -                          unsigned int* pBytesRead); +int WTSVirtualChannelRead(void *hChannelHandle, unsigned int TimeOut, +                            char *Buffer, unsigned int BufferSize, +                            unsigned int *pBytesRead); -int WTSVirtualChannelClose(void* hChannelHandle); +int WTSVirtualChannelClose(void *hChannelHandle); -int WTSVirtualChannelQuery(void* hChannelHandle, WTS_VIRTUAL_CLASS WtsVirtualClass, -                           void** ppBuffer, unsigned int* pBytesReturned); +int WTSVirtualChannelQuery(void *hChannelHandle, WTS_VIRTUAL_CLASS WtsVirtualClass, +                            void **ppBuffer, unsigned int *pBytesReturned); -void WTSFreeMemory(void* pMemory); +void WTSFreeMemory(void *pMemory);  #ifdef __cplusplus  } | 
