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

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

revision 1017 by jdmeijer, Sun May 1 00:14:20 2005 UTC revision 1018 by jsorg71, Thu Sep 22 01:18:57 2005 UTC
# Line 60  int g_bitmap_compression = 1; Line 60  int g_bitmap_compression = 1;
60  int g_rdp5_performanceflags = 0;  int g_rdp5_performanceflags = 0;
61  int g_console_session = 0;  int g_console_session = 0;
62  int g_keylayout = 0x409; /* Defaults to US keyboard layout */  int g_keylayout = 0x409; /* Defaults to US keyboard layout */
63    int g_keyboard_type = 0x4; /* Defaults to US keyboard layout */
64    int g_keyboard_subtype = 0x0; /* Defaults to US keyboard layout */
65    int g_keyboard_functionkeys = 0xc; /* Defaults to US keyboard layout */
66    
67  /* hack globals */  /* hack globals */
68  static int g_argc = 0;  static int g_argc = 0;
# Line 117  static Qt::RasterOp g_OpCodes[16] = { Line 120  static Qt::RasterOp g_OpCodes[16] = {
120      Qt::OrROP,           // SRCPAINT      DSo      Qt::OrROP,           // SRCPAINT      DSo
121      Qt::SetROP};         // WHITENESS     1      Qt::SetROP};         // WHITENESS     1
122    
123    /* Session Directory redirection */
124    BOOL g_redirect = False;
125    char g_redirect_server[64];
126    char g_redirect_domain[16];
127    char g_redirect_password[64];
128    char g_redirect_username[64];
129    char g_redirect_cookie[128];
130    uint32 g_redirect_flags = 0;
131    
132  //*****************************************************************************  //*****************************************************************************
133  uint32 Color15to32(uint32 InColor)  uint32 Color15to32(uint32 InColor)
134  {  {
# Line 1494  void xfree(void * in_val) Line 1506  void xfree(void * in_val)
1506  }  }
1507    
1508  /*****************************************************************************/  /*****************************************************************************/
1509    char * xstrdup(const char * s)
1510    {
1511      char * mem = strdup(s);
1512      if (mem == NULL)
1513      {
1514        perror("strdup");
1515        exit(1);
1516      }
1517      return mem;
1518    }
1519    
1520    /*****************************************************************************/
1521  void warning(char * format, ...)  void warning(char * format, ...)
1522  {  {
1523    va_list ap;    va_list ap;

Legend:
Removed from v.1017  
changed lines
  Added in v.1018

  ViewVC Help
Powered by ViewVC 1.1.26