VirtualBox

source: vbox/trunk/src/VBox/RDP/client-1.8.4/doc/HACKING@ 89088

Last change on this file since 89088 was 55121, checked in by vboxsync, 10 years ago

rdesktop 1.8.3 unmodified

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.2 KB
Line 
1
2Code style / indentation
3------------------------
4The file indent-all.sh contains information about the current code
5style. Run this script before commits.
6
7
8Variable argument macros
9------------------------
10Variable argument macros are non-portable in general, and should be
11avoided. Either use a second set of parentheses like DEBUG, or create
12a variable argument function like error.
13
14
15Structure
16---------
17The core protocol stack should be system-independent (i.e. ANSI C89
18only) so that it is easy to port. This currently applies to the
19following files:
20
21bitmap.c licence.c orders.c rdp.c rdp5.c cache.c iso.c mcs.c
22secure.c mppc.c channels.c
23rdesktop.c
24
25
26Compiler support
27----------------
28
29The source code should be compatible with ANSI C89. One exception is
30the SeamlessRDP ServerEXE and ClientDLL, which should be compatible
31with ANSI C99.
32
33
34RDP resources
35-------------
36http://dev.remotenetworktechnology.com/refdata.htm
37
38
39Checking for out of memory conditions
40-------------------------------------
41Try to handle out of memory conditions gracefully. Use the xmalloc
42routines from rdesktop.c, instead of calling malloc manually. Also,
43remember that several Xlib functions can return NULL. This includes
44XGetImage. Use exit_if_null to verify returned pointers.
45
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette