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

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

revision 4 by matty, Wed May 10 07:36:34 2000 UTC revision 259 by astrand, Mon Nov 18 15:30:12 2002 UTC
# Line 1  Line 1 
1  /*  /* bitmap.c */
2     rdesktop: A Remote Desktop Protocol client.  BOOL bitmap_decompress(unsigned char *output, int width, int height, unsigned char *input,
3     Function prototypes                         int size);
4     Copyright (C) Matthew Chapman 1999-2000  /* cache.c */
5      HBITMAP cache_get_bitmap(uint8 cache_id, uint16 cache_idx);
6     This program is free software; you can redistribute it and/or modify  void cache_put_bitmap(uint8 cache_id, uint16 cache_idx, HBITMAP bitmap);
7     it under the terms of the GNU General Public License as published by  FONTGLYPH *cache_get_font(uint8 font, uint16 character);
8     the Free Software Foundation; either version 2 of the License, or  void cache_put_font(uint8 font, uint16 character, uint16 offset, uint16 baseline, uint16 width,
9     (at your option) any later version.                      uint16 height, HGLYPH pixmap);
10      DATABLOB *cache_get_text(uint8 cache_id);
11     This program is distributed in the hope that it will be useful,  void cache_put_text(uint8 cache_id, void *data, int length);
12     but WITHOUT ANY WARRANTY; without even the implied warranty of  uint8 *cache_get_desktop(uint32 offset, int cx, int cy, int bytes_per_pixel);
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  void cache_put_desktop(uint32 offset, int cx, int cy, int scanline, int bytes_per_pixel,
14     GNU General Public License for more details.                         uint8 * data);
15      HCURSOR cache_get_cursor(uint16 cache_idx);
16     You should have received a copy of the GNU General Public License  void cache_put_cursor(uint16 cache_idx, HCURSOR cursor);
17     along with this program; if not, write to the Free Software  /* iso.c */
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  STREAM iso_init(int length);
19  */  void iso_send(STREAM s);
20    STREAM iso_recv(void);
21  /* Parsing layer */  BOOL iso_connect(char *server);
22  BOOL prs_io_uint8(STREAM s, uint8 *i);  void iso_disconnect(void);
23  BOOL prs_io_uint8s(STREAM s, uint8 *p, unsigned int length);  /* licence.c */
24  BOOL msb_io_uint16(STREAM s, uint16 *i);  void licence_process(STREAM s);
25  BOOL lsb_io_uint16(STREAM s, uint16 *i);  /* mcs.c */
26  BOOL lsb_io_uint32(STREAM s, uint32 *i);  STREAM mcs_init(int length);
27    void mcs_send(STREAM s);
28  /* TCP layer */  STREAM mcs_recv(void);
29  HCONN tcp_connect(char *server);  BOOL mcs_connect(char *server, STREAM mcs_data);
30  void tcp_disconnect(HCONN conn);  void mcs_disconnect(void);
31  BOOL tcp_send(HCONN conn);  /* orders.c */
32  BOOL tcp_recv(HCONN conn, int length);  void process_orders(STREAM s);
33    void reset_order_state(void);
34  /* ISO layer */  /* rdesktop.c */
35  HCONN iso_connect(char *server);  int main(int argc, char *argv[]);
36  void iso_disconnect(HCONN conn);  void generate_random(uint8 * random);
 BOOL iso_send_msg(HCONN conn, uint8 code);  
 BOOL iso_recv_msg(HCONN conn, uint8 *code);  
 void iso_init(struct connection *conn);  
 BOOL iso_send(HCONN conn);  
 BOOL iso_recv(HCONN conn);  
 void iso_make_tpkt(TPKT *tpkt, int length);  
 BOOL iso_io_tpkt(STREAM s, TPKT *tpkt);  
 void iso_make_tpdu(TPDU *tpdu, uint8 code);  
 BOOL iso_io_tpdu(STREAM s, TPDU *tpdu);  
   
 /* MCS layer */  
 HCONN mcs_connect(char *server);  
 BOOL mcs_join_channel(HCONN conn, uint16 chanid);  
 void mcs_disconnect(HCONN conn);  
 void mcs_send_connect_initial(HCONN conn);  
 void mcs_send_edrq(HCONN conn);  
 void mcs_send_aurq(HCONN conn);  
 void mcs_send_cjrq(HCONN conn, uint16 chanid);  
 void mcs_init_data(HCONN conn);  
 void mcs_send_data(HCONN conn, uint16 chanid, BOOL request);  
 int mcs_recv(HCONN conn, BOOL request);  
 void mcs_make_domain_params(DOMAIN_PARAMS *dp, uint16 max_channels,  
            uint16 max_users, uint16 max_tokens, uint16 max_pdusize);  
 void mcs_make_connect_initial(MCS_CONNECT_INITIAL *mci);  
 BOOL ber_io_header(STREAM s, BOOL islong, int tagval, int *length);  
 BOOL ber_io_octet_string(STREAM s, OCTET_STRING *os);  
 BOOL ber_io_integer(STREAM s, uint16 *i);  
 BOOL ber_io_uint8(STREAM s, uint8 *i, int tagval);  
 BOOL mcs_io_domain_params(STREAM s, DOMAIN_PARAMS *dp);  
 BOOL mcs_io_connect_initial(STREAM s, MCS_CONNECT_INITIAL *mci);  
 BOOL mcs_io_connect_response(STREAM s, MCS_CONNECT_RESPONSE *mcr);  
 BOOL mcs_io_edrq(STREAM s, MCS_EDRQ *edrq);  
 BOOL mcs_io_aurq(STREAM s, MCS_AURQ *aurq);  
 BOOL mcs_io_aucf(STREAM s, MCS_AUCF *aucf);  
 BOOL mcs_io_cjrq(STREAM s, MCS_CJRQ *cjrq);  
 BOOL mcs_io_cjcf(STREAM s, MCS_CJCF *cjcf);  
 BOOL mcs_io_data(STREAM s, MCS_DATA *dt, BOOL request);  
   
 /* RDP layer */  
 HCONN rdp_connect(char *server);  
 void process_orders(HCONN conn, RDP_ORDER_STATE *os);  
 void rdp_establish_key(HCONN conn);  
 void rdp_send_cert(HCONN conn);  
 void rdp_send_confirm_active(HCONN conn);  
 void rdp_send_control(HCONN conn, uint16 action);  
 void rdp_send_synchronize(HCONN conn);  
 void rdp_send_fonts(HCONN conn, uint16 seqno);  
 void rdp_send_input(HCONN conn);  
 BOOL rdp_recv_pdu(HCONN conn, uint8 *type);  
 void rdp_disconnect(HCONN conn);  
 void rdp_make_header(RDP_HEADER *hdr, uint16 length, uint16 pdu_type,  
                      uint16 userid);  
 void rdp_make_data_header(RDP_DATA_HEADER *hdr, uint32 shareid,  
                           uint16 length, uint16 data_pdu_type);  
 void rdp_make_general_caps(RDP_GENERAL_CAPS *caps);  
 void rdp_make_bitmap_caps(RDP_BITMAP_CAPS *caps);  
 void rdp_make_order_caps(RDP_ORDER_CAPS *caps);  
 void rdp_make_bmpcache_caps(RDP_BMPCACHE_CAPS *caps);  
 void rdp_make_control_caps(RDP_CONTROL_CAPS *caps);  
 void rdp_make_activate_caps(RDP_ACTIVATE_CAPS *caps);  
 void rdp_make_pointer_caps(RDP_POINTER_CAPS *caps);  
 void rdp_make_share_caps(RDP_SHARE_CAPS *caps, uint16 userid);  
 void rdp_make_colcache_caps(RDP_COLCACHE_CAPS *caps);  
 void rdp_make_active_pdu(RDP_ACTIVE_PDU *pdu, uint32 shareid, uint16 userid);  
 void rdp_make_control_pdu(RDP_CONTROL_PDU *pdu, uint16 action);  
 void rdp_make_synchronize_pdu(RDP_SYNCHRONIZE_PDU *pdu, uint16 userid);  
 void rdp_make_font_pdu(RDP_FONT_PDU *pdu, uint16 seqno);  
 void rdp_make_input_pdu(RDP_INPUT_PDU *pdu);  
 BOOL rdp_io_header(STREAM s, RDP_HEADER *hdr);  
 BOOL rdp_io_data_header(STREAM s, RDP_DATA_HEADER *hdr);  
 BOOL rdp_io_general_caps(STREAM s, RDP_GENERAL_CAPS *caps);  
 BOOL rdp_io_bitmap_caps(STREAM s, RDP_BITMAP_CAPS *caps);  
 BOOL rdp_io_order_caps(STREAM s, RDP_ORDER_CAPS *caps);  
 BOOL rdp_io_bmpcache_info(STREAM s, RDP_BMPCACHE_INFO *info);  
 BOOL rdp_io_bmpcache_caps(STREAM s, RDP_BMPCACHE_CAPS *caps);  
 BOOL rdp_io_control_caps(STREAM s, RDP_CONTROL_CAPS *caps);  
 BOOL rdp_io_activate_caps(STREAM s, RDP_ACTIVATE_CAPS *caps);  
 BOOL rdp_io_pointer_caps(STREAM s, RDP_POINTER_CAPS *caps);  
 BOOL rdp_io_share_caps(STREAM s, RDP_SHARE_CAPS *caps);  
 BOOL rdp_io_colcache_caps(STREAM s, RDP_COLCACHE_CAPS *caps);  
 BOOL rdp_io_active_pdu(STREAM s, RDP_ACTIVE_PDU *pdu, int pdutype);  
 BOOL rdp_io_control_pdu(STREAM s, RDP_CONTROL_PDU *pdu);  
 BOOL rdp_io_synchronize_pdu(STREAM s, RDP_SYNCHRONIZE_PDU *pdu);  
 BOOL rdp_io_input_event(STREAM s, RDP_INPUT_EVENT *evt);  
 BOOL rdp_io_input_pdu(STREAM s, RDP_INPUT_PDU *pdu);  
 BOOL rdp_io_font_info(STREAM s, RDP_FONT_INFO *font);  
 BOOL rdp_io_font_pdu(STREAM s, RDP_FONT_PDU *pdu);  
 BOOL rdp_io_update_pdu(STREAM s, RDP_UPDATE_PDU *pdu);  
 BOOL rdp_io_secondary_order(STREAM s, RDP_SECONDARY_ORDER *rso);  
 BOOL rdp_io_bitmap_header(STREAM s, RDP_BITMAP_HEADER *rdh);  
   
 /* Utility routines */  
37  void *xmalloc(int size);  void *xmalloc(int size);
38  void *xrealloc(void *oldmem, int size);  void *xrealloc(void *oldmem, int size);
39  BOOL bitmap_decompress(unsigned char *input, int size,  void xfree(void *mem);
40                         unsigned char *output, int width);  void error(char *format, ...);
41    void unimpl(char *format, ...);
42    void hexdump(unsigned char *p, unsigned int len);
43    /* rdp.c */
44    void rdp_out_unistr(STREAM s, char *string, int len);
45    void rdp_send_input(uint32 time, uint16 message_type, uint16 device_flags, uint16 param1,
46                        uint16 param2);
47    void rdp_main_loop(void);
48    BOOL rdp_connect(char *server, uint32 flags, char *domain, char *password, char *command,
49                     char *directory);
50    void rdp_disconnect(void);
51    /* readpass.c */
52    char *askpass(char *askpass, const char *msg);
53    /* secure.c */
54    void sec_hash_48(uint8 * out, uint8 * in, uint8 * salt1, uint8 * salt2, uint8 salt);
55    void sec_hash_16(uint8 * out, uint8 * in, uint8 * salt1, uint8 * salt2);
56    void buf_out_uint32(uint8 * buffer, uint32 value);
57    void sec_sign(uint8 * signature, int siglen, uint8 * session_key, int keylen, uint8 * data,
58                  int datalen);
59    STREAM sec_init(uint32 flags, int maxlen);
60    void sec_send(STREAM s, uint32 flags);
61    STREAM sec_recv(void);
62    BOOL sec_connect(char *server);
63    void sec_disconnect(void);
64    /* tcp.c */
65    STREAM tcp_init(int maxlen);
66    void tcp_send(STREAM s);
67    STREAM tcp_recv(int length);
68    BOOL tcp_connect(char *server);
69    void tcp_disconnect(void);
70    /* xkeymap.c */
71    void xkeymap_init(void);
72    BOOL handle_special_keys(uint32 keysym, unsigned int state, uint32 ev_time, BOOL pressed);
73    key_translation xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state);
74    uint16 xkeymap_translate_button(unsigned int button);
75    char *get_ksname(uint32 keysym);
76    void ensure_remote_modifiers(uint32 ev_time, key_translation tr);
77    void reset_modifier_keys(unsigned int state);
78    void rdp_send_scancode(uint32 time, uint16 flags, uint8 scancode);
79    /* xwin.c */
80    BOOL get_key_state(unsigned int state, uint32 keysym);
81    BOOL ui_init(void);
82    void ui_deinit(void);
83    BOOL ui_create_window(void);
84    void ui_destroy_window(void);
85    void xwin_toggle_fullscreen(void);
86    void ui_select(int rdp_socket);
87    void ui_move_pointer(int x, int y);
88    HBITMAP ui_create_bitmap(int width, int height, uint8 * data);
89    void ui_paint_bitmap(int x, int y, int cx, int cy, int width, int height, uint8 * data);
90    void ui_destroy_bitmap(HBITMAP bmp);
91    HGLYPH ui_create_glyph(int width, int height, uint8 * data);
92    void ui_destroy_glyph(HGLYPH glyph);
93    HCURSOR ui_create_cursor(unsigned int x, unsigned int y, int width, int height, uint8 * andmask,
94                             uint8 * xormask);
95    void ui_set_cursor(HCURSOR cursor);
96    void ui_destroy_cursor(HCURSOR cursor);
97    HCOLOURMAP ui_create_colourmap(COLOURMAP * colours);
98    void ui_destroy_colourmap(HCOLOURMAP map);
99    void ui_set_colourmap(HCOLOURMAP map);
100    void ui_set_clip(int x, int y, int cx, int cy);
101    void ui_reset_clip(void);
102    void ui_bell(void);
103    void ui_destblt(uint8 opcode, int x, int y, int cx, int cy);
104    void ui_patblt(uint8 opcode, int x, int y, int cx, int cy, BRUSH * brush, int bgcolour,
105                   int fgcolour);
106    void ui_screenblt(uint8 opcode, int x, int y, int cx, int cy, int srcx, int srcy);
107    void ui_memblt(uint8 opcode, int x, int y, int cx, int cy, HBITMAP src, int srcx, int srcy);
108    void ui_triblt(uint8 opcode, int x, int y, int cx, int cy, HBITMAP src, int srcx, int srcy,
109                   BRUSH * brush, int bgcolour, int fgcolour);
110    void ui_line(uint8 opcode, int startx, int starty, int endx, int endy, PEN * pen);
111    void ui_rect(int x, int y, int cx, int cy, int colour);
112    void ui_draw_glyph(int mixmode, int x, int y, int cx, int cy, HGLYPH glyph, int srcx, int srcy,
113                       int bgcolour, int fgcolour);
114    void ui_draw_text(uint8 font, uint8 flags, int mixmode, int x, int y, int clipx, int clipy,
115                      int clipcx, int clipcy, int boxx, int boxy, int boxcx, int boxcy, int bgcolour,
116                      int fgcolour, uint8 * text, uint8 length);
117    void ui_desktop_save(uint32 offset, int x, int y, int cx, int cy);
118    void ui_desktop_restore(uint32 offset, int x, int y, int cx, int cy);

Legend:
Removed from v.4  
changed lines
  Added in v.259

  ViewVC Help
Powered by ViewVC 1.1.26