/[rdesktop]/sourceforge.net/trunk/seamlessrdp/ServerExe/HookDll/hookdll.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/seamlessrdp/ServerExe/HookDll/hookdll.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1106 by ossman_, Fri Mar 10 13:47:41 2006 UTC revision 1108 by ossman_, Fri Mar 10 15:00:38 2006 UTC
# Line 132  wndproc_hook_proc(int code, WPARAM cur_t Line 132  wndproc_hook_proc(int code, WPARAM cur_t
132                                  if (wp->flags & SWP_HIDEWINDOW)                                  if (wp->flags & SWP_HIDEWINDOW)
133                                          vchannel_write("DESTROY,0x%p,0x%x", hwnd, 0);                                          vchannel_write("DESTROY,0x%p,0x%x", hwnd, 0);
134    
135                                  if (!(style & WS_VISIBLE))                                  if (!(style & WS_VISIBLE) || (style & WS_MINIMIZE))
136                                          break;                                          break;
137    
138                                  if (!(wp->flags & SWP_NOMOVE && wp->flags & SWP_NOSIZE))                                  if (!(wp->flags & SWP_NOMOVE && wp->flags & SWP_NOSIZE))
# Line 150  wndproc_hook_proc(int code, WPARAM cur_t Line 150  wndproc_hook_proc(int code, WPARAM cur_t
150                          }                          }
151    
152                  case WM_SIZE:                  case WM_SIZE:
153                          if (!(style & WS_VISIBLE))                          if (!(style & WS_VISIBLE) || (style & WS_MINIMIZE))
154                                  break;                                  break;
155                          update_position(hwnd);                          update_position(hwnd);
156                          break;                          break;
157    
158                  case WM_MOVE:                  case WM_MOVE:
159                          if (!(style & WS_VISIBLE))                          if (!(style & WS_VISIBLE) || (style & WS_MINIMIZE))
160                                  break;                                  break;
161                          update_position(hwnd);                          update_position(hwnd);
162                          break;                          break;

Legend:
Removed from v.1106  
changed lines
  Added in v.1108

  ViewVC Help
Powered by ViewVC 1.1.26