/[rdesktop]/sourceforge.net/trunk/rdesktop/rdesktop.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/rdesktop/rdesktop.c

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

revision 66 by astrand, Thu Jul 18 18:28:12 2002 UTC revision 76 by astrand, Mon Jul 29 20:16:22 2002 UTC
# Line 43  BOOL licence = True; Line 43  BOOL licence = True;
43  BOOL encryption = True;  BOOL encryption = True;
44  BOOL desktop_save = True;  BOOL desktop_save = True;
45  BOOL fullscreen = False;  BOOL fullscreen = False;
46    BOOL grab_keyboard = True;
47    
48  /* Display usage information */  /* Display usage information */
49  static void  static void
# Line 63  usage(char *program) Line 64  usage(char *program)
64          printf("   -m: do not send motion events\n");          printf("   -m: do not send motion events\n");
65          printf("   -l: do not request licence\n");          printf("   -l: do not request licence\n");
66          printf("   -t: rdp tcp port\n\n");          printf("   -t: rdp tcp port\n\n");
67            printf("   -K: keep window manager key bindings\n");
68  }  }
69    
70  /* Client program */  /* Client program */
# Line 89  main(int argc, char *argv[]) Line 91  main(int argc, char *argv[])
91          domain[0] = password[0] = shell[0] = directory[0] = 0;          domain[0] = password[0] = shell[0] = directory[0] = 0;
92          strcpy(keymapname, "us");          strcpy(keymapname, "us");
93    
94          while ((c = getopt(argc, argv, "u:d:s:c:p:n:k:g:t:fbemlh?")) != -1)          while ((c = getopt(argc, argv, "u:d:s:c:p:n:k:g:t:fbemlKh?")) != -1)
95          {          {
96                  switch (c)                  switch (c)
97                  {                  {
# Line 159  main(int argc, char *argv[]) Line 161  main(int argc, char *argv[])
161                                  tcp_port_rdp = strtol(optarg, NULL, 10);                                  tcp_port_rdp = strtol(optarg, NULL, 10);
162                                  break;                                  break;
163    
164                            case 'K':
165                                    grab_keyboard = False;
166                                    break;
167    
168                          case 'h':                          case 'h':
169                          case '?':                          case '?':
170                          default:                          default:

Legend:
Removed from v.66  
changed lines
  Added in v.76

  ViewVC Help
Powered by ViewVC 1.1.26