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

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

revision 795 by stargo, Wed Nov 3 13:56:52 2004 UTC revision 978 by stargo, Mon Aug 15 11:44:35 2005 UTC
# Line 1  Line 1 
1  /*  /*
2     rdesktop: A Remote Desktop Protocol client.     rdesktop: A Remote Desktop Protocol client.
3     Common data types     Common data types
4     Copyright (C) Matthew Chapman 1999-2002     Copyright (C) Matthew Chapman 1999-2005
5        
6     This program is free software; you can redistribute it and/or modify     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
# Line 37  typedef void *HGLYPH; Line 37  typedef void *HGLYPH;
37  typedef void *HCOLOURMAP;  typedef void *HCOLOURMAP;
38  typedef void *HCURSOR;  typedef void *HCURSOR;
39    
40    typedef struct _POINT
41    {
42            sint16 x, y;
43    }
44    POINT;
45    
46  typedef struct _COLOURENTRY  typedef struct _COLOURENTRY
47  {  {
48          uint8 red;          uint8 red;
# Line 104  DATABLOB; Line 110  DATABLOB;
110    
111  typedef struct _key_translation  typedef struct _key_translation
112  {  {
113            /* For normal scancode translations */
114          uint8 scancode;          uint8 scancode;
115          uint16 modifiers;          uint16 modifiers;
116            /* For sequences. If keysym is nonzero, the fields above are not used. */
117            uint32 seq_keysym;      /* Really KeySym */
118            struct _key_translation *next;
119  }  }
120  key_translation;  key_translation;
121    
# Line 119  typedef struct _VCHANNEL Line 129  typedef struct _VCHANNEL
129  }  }
130  VCHANNEL;  VCHANNEL;
131    
 typedef struct _BMPCACHEENTRY  
 {  
         HBITMAP bitmap;  
         uint32 usage;  
   
 }  
 BMPCACHEENTRY;  
   
132  /* PSTCACHE */  /* PSTCACHE */
133    typedef uint8 HASH_KEY[8];
 typedef uint8 BITMAP_ID[8];  
134    
135  /* Header for an entry in the persistent bitmap cache file */  /* Header for an entry in the persistent bitmap cache file */
136  typedef struct _PSTCACHE_CELLHEADER  typedef struct _PSTCACHE_CELLHEADER
137  {  {
138          BITMAP_ID bitmap_id;          HASH_KEY key;
139          uint8 width, height;          uint8 width, height;
140          uint16 length;          uint16 length;
141          uint32 stamp;          uint32 stamp;
# Line 247  typedef struct notify_data Line 248  typedef struct notify_data
248  }  }
249  NOTIFY;  NOTIFY;
250    
251    #ifndef PATH_MAX
252    #define PATH_MAX 256
253    #endif
254    
255  typedef struct fileinfo  typedef struct fileinfo
256  {  {
257          uint32 device_id, flags_and_attributes, accessmask;          uint32 device_id, flags_and_attributes, accessmask;
258          char path[256];          char path[PATH_MAX];
259          DIR *pdir;          DIR *pdir;
260          struct dirent *pdirent;          struct dirent *pdirent;
261          char pattern[64];          char pattern[PATH_MAX];
262          BOOL delete_on_close;          BOOL delete_on_close;
263          NOTIFY notify;          NOTIFY notify;
264          uint32 info_class;          uint32 info_class;

Legend:
Removed from v.795  
changed lines
  Added in v.978

  ViewVC Help
Powered by ViewVC 1.1.26