/[rdesktop]/sourceforge.net/branches/seamlessrdp-branch/rdesktop/seamless.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/branches/seamlessrdp-branch/rdesktop/seamless.c

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

revision 1176 by astrand, Mon Mar 20 15:43:15 2006 UTC revision 1177 by ossman_, Tue Mar 21 14:42:25 2006 UTC
# Line 82  seamless_process_line(const char *line, Line 82  seamless_process_line(const char *line,
82    
83          if (!strcmp("CREATE", tok1))          if (!strcmp("CREATE", tok1))
84          {          {
85                  unsigned long parent;                  unsigned long group, parent;
86                  if (!tok5)                  if (!tok6)
87                          return False;                          return False;
88    
89                  id = strtoul(tok3, &endptr, 0);                  id = strtoul(tok3, &endptr, 0);
90                  if (*endptr)                  if (*endptr)
91                          return False;                          return False;
92    
93                  parent = strtoul(tok4, &endptr, 0);                  group = strtoul(tok4, &endptr, 0);
94                  if (*endptr)                  if (*endptr)
95                          return False;                          return False;
96    
97                  flags = strtoul(tok5, &endptr, 0);                  parent = strtoul(tok5, &endptr, 0);
98                  if (*endptr)                  if (*endptr)
99                          return False;                          return False;
100    
101                  ui_seamless_create_window(id, parent, flags);                  flags = strtoul(tok6, &endptr, 0);
102                    if (*endptr)
103                            return False;
104    
105                    ui_seamless_create_window(id, group, parent, flags);
106          }          }
107          else if (!strcmp("DESTROY", tok1))          else if (!strcmp("DESTROY", tok1))
108          {          {

Legend:
Removed from v.1176  
changed lines
  Added in v.1177

  ViewVC Help
Powered by ViewVC 1.1.26