/[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 726 by jsorg71, Sat Jun 19 00:09:30 2004 UTC revision 727 by jsorg71, Sun Jun 27 19:08:35 2004 UTC
# Line 11  int g_server_bpp = 8; Line 11  int g_server_bpp = 8;
11  int g_encryption = 1;  int g_encryption = 1;
12  int g_desktop_save =1;  int g_desktop_save =1;
13  int g_bitmap_cache = 1;  int g_bitmap_cache = 1;
14    int g_bitmap_cache_persist_enable = False;
15    int g_bitmap_cache_precache = True;
16  int g_bitmap_compression = 1;  int g_bitmap_compression = 1;
17  int g_rdp5_performanceflags = 0;  int g_rdp5_performanceflags = 0;
18  int g_console_session = 0;  int g_console_session = 0;
# Line 240  void error(char* format, ...) Line 242  void error(char* format, ...)
242  }  }
243    
244  /*****************************************************************************/  /*****************************************************************************/
245    BOOL rd_pstcache_mkdir(void)
246    {
247      return 0;
248    }
249    
250    /*****************************************************************************/
251    int rd_open_file(char *filename)
252    {
253      return 0;
254    }
255    
256    /*****************************************************************************/
257    void rd_close_file(int fd)
258    {
259      return;
260    }
261    
262    /*****************************************************************************/
263    int rd_read_file(int fd, void *ptr, int len)
264    {
265      return 0;
266    }
267    
268    /*****************************************************************************/
269    int rd_write_file(int fd, void* ptr, int len)
270    {
271      return 0;
272    }
273    
274    /*****************************************************************************/
275    int rd_lseek_file(int fd, int offset)
276    {
277      return 0;
278    }
279    
280    /*****************************************************************************/
281    BOOL rd_lock_file(int fd, int start, int len)
282    {
283      return False;
284    }
285    
286    /*****************************************************************************/
287  int main(int c, char** p)  int main(int c, char** p)
288  {  {
289    return 0;    return 0;

Legend:
Removed from v.726  
changed lines
  Added in v.727

  ViewVC Help
Powered by ViewVC 1.1.26