/[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 1089 by astrand, Fri Mar 10 08:50:43 2006 UTC revision 1090 by astrand, Fri Mar 10 09:01:51 2006 UTC
# Line 80  seamless_process_line(const char *line, Line 80  seamless_process_line(const char *line,
80          tok7 = seamless_get_token(&p);          tok7 = seamless_get_token(&p);
81          tok8 = seamless_get_token(&p);          tok8 = seamless_get_token(&p);
82    
83          if (!strcmp("CREATE1", tok1))          if (!strcmp("CREATE", tok1))
84          {          {
85                  if (!tok3)                  if (!tok3)
86                          return False;                          return False;
# Line 95  seamless_process_line(const char *line, Line 95  seamless_process_line(const char *line,
95    
96                  ui_seamless_create_window(id, flags);                  ui_seamless_create_window(id, flags);
97          }          }
98          else if (!strcmp("DESTROY1", tok1))          else if (!strcmp("DESTROY", tok1))
99          {          {
100                  if (!tok3)                  if (!tok3)
101                          return False;                          return False;
# Line 111  seamless_process_line(const char *line, Line 111  seamless_process_line(const char *line,
111                  ui_seamless_destroy_window(id, flags);                  ui_seamless_destroy_window(id, flags);
112    
113          }          }
114          else if (!strcmp("SETICON1", tok1))          else if (!strcmp("SETICON", tok1))
115          {          {
116                  unimpl("SeamlessRDP SETICON1\n");                  unimpl("SeamlessRDP SETICON1\n");
117          }          }
118          else if (!strcmp("POSITION1", tok1))          else if (!strcmp("POSITION", tok1))
119          {          {
120                  int x, y, width, height;                  int x, y, width, height;
121    
# Line 146  seamless_process_line(const char *line, Line 146  seamless_process_line(const char *line,
146    
147                  ui_seamless_move_window(id, x, y, width, height, flags);                  ui_seamless_move_window(id, x, y, width, height, flags);
148          }          }
149          else if (!strcmp("ZCHANGE1", tok1))          else if (!strcmp("ZCHANGE", tok1))
150          {          {
151                  unimpl("SeamlessRDP ZCHANGE1\n");                  unimpl("SeamlessRDP ZCHANGE1\n");
152          }          }
153          else if (!strcmp("SETSTATE1", tok1))          else if (!strcmp("SETSTATE", tok1))
154          {          {
155                  unsigned int state;                  unsigned int state;
156    
# Line 173  seamless_process_line(const char *line, Line 173  seamless_process_line(const char *line,
173                  ui_seamless_settitle(id, tok3);                  ui_seamless_settitle(id, tok3);
174                  ui_seamless_setstate(id, state, flags);                  ui_seamless_setstate(id, state, flags);
175          }          }
176          else if (!strcmp("DEBUG1", tok1))          else if (!strcmp("DEBUG", tok1))
177          {          {
178                  printf("SeamlessRDP:%s\n", line);                  printf("SeamlessRDP:%s\n", line);
179          }          }

Legend:
Removed from v.1089  
changed lines
  Added in v.1090

  ViewVC Help
Powered by ViewVC 1.1.26