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

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

revision 852 by jsorg71, Sun Mar 13 07:30:31 2005 UTC revision 1019 by jsorg71, Thu Sep 22 01:36:13 2005 UTC
# Line 37  int g_bitmap_compression = 1; Line 37  int g_bitmap_compression = 1;
37  int g_rdp5_performanceflags = 0;  int g_rdp5_performanceflags = 0;
38  int g_console_session = 0;  int g_console_session = 0;
39  int g_keylayout = 0x409; /* Defaults to US keyboard layout */  int g_keylayout = 0x409; /* Defaults to US keyboard layout */
40    int g_keyboard_type = 0x4; /* Defaults to US keyboard layout */
41    int g_keyboard_subtype = 0x0; /* Defaults to US keyboard layout */
42    int g_keyboard_functionkeys = 0xc; /* Defaults to US keyboard layout */
43    /* Session Directory redirection */
44    BOOL g_redirect = False;
45    char g_redirect_server[64];
46    char g_redirect_domain[16];
47    char g_redirect_password[64];
48    char g_redirect_username[64];
49    char g_redirect_cookie[128];
50    uint32 g_redirect_flags = 0;
51    
52  /*****************************************************************************/  /*****************************************************************************/
53  void ui_bell(void)  void ui_bell(void)
# Line 280  void xfree(void* in) Line 291  void xfree(void* in)
291  }  }
292    
293  /*****************************************************************************/  /*****************************************************************************/
294    char * xstrdup(const char * s)
295    {
296      char * mem = strdup(s);
297      if (mem == NULL)
298      {
299        perror("strdup");
300        exit(1);
301      }
302      return mem;
303    }
304    /*****************************************************************************/
305  void warning(char* format, ...)  void warning(char* format, ...)
306  {  {
307  }  }

Legend:
Removed from v.852  
changed lines
  Added in v.1019

  ViewVC Help
Powered by ViewVC 1.1.26