/[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 721 by jsorg71, Sat Jun 19 00:09:30 2004 UTC revision 851 by jsorg71, Sun Mar 13 06:38:42 2005 UTC
# Line 1  Line 1 
1    /* -*- c-basic-offset: 8 -*-
2       rdesktop: A Remote Desktop Protocol client.
3       User interface services - Generic
4       Copyright (C) Jay Sorg 2004-2005
5    
6       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
8       the Free Software Foundation; either version 2 of the License, or
9       (at your option) any later version.
10    
11       This program is distributed in the hope that it will be useful,
12       but WITHOUT ANY WARRANTY; without even the implied warranty of
13       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14       GNU General Public License for more details.
15    
16       You should have received a copy of the GNU General Public License
17       along with this program; if not, write to the Free Software
18       Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19    */
20    
21  #include "../rdesktop.h"  #include "../rdesktop.h"
22    
# Line 11  int g_server_bpp = 8; Line 30  int g_server_bpp = 8;
30  int g_encryption = 1;  int g_encryption = 1;
31  int g_desktop_save =1;  int g_desktop_save =1;
32  int g_bitmap_cache = 1;  int g_bitmap_cache = 1;
33    int g_bitmap_cache_persist_enable = False;
34    int g_bitmap_cache_precache = True;
35  int g_bitmap_compression = 1;  int g_bitmap_compression = 1;
36  int g_rdp5_performanceflags = 0;  int g_rdp5_performanceflags = 0;
37  int g_console_session = 0;  int g_console_session = 0;
# Line 240  void error(char* format, ...) Line 261  void error(char* format, ...)
261  }  }
262    
263  /*****************************************************************************/  /*****************************************************************************/
264    BOOL rd_pstcache_mkdir(void)
265    {
266      return 0;
267    }
268    
269    /*****************************************************************************/
270    int rd_open_file(char *filename)
271    {
272      return 0;
273    }
274    
275    /*****************************************************************************/
276    void rd_close_file(int fd)
277    {
278      return;
279    }
280    
281    /*****************************************************************************/
282    int rd_read_file(int fd, void *ptr, int len)
283    {
284      return 0;
285    }
286    
287    /*****************************************************************************/
288    int rd_write_file(int fd, void* ptr, int len)
289    {
290      return 0;
291    }
292    
293    /*****************************************************************************/
294    int rd_lseek_file(int fd, int offset)
295    {
296      return 0;
297    }
298    
299    /*****************************************************************************/
300    BOOL rd_lock_file(int fd, int start, int len)
301    {
302      return False;
303    }
304    
305    /*****************************************************************************/
306  int main(int c, char** p)  int main(int c, char** p)
307  {  {
308    return 0;    return 0;

Legend:
Removed from v.721  
changed lines
  Added in v.851

  ViewVC Help
Powered by ViewVC 1.1.26