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

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

revision 460 by astrand, Tue Sep 2 09:37:39 2003 UTC revision 542 by astrand, Mon Nov 3 13:22:09 2003 UTC
# Line 59  void unimpl(char *format, ...); Line 59  void unimpl(char *format, ...);
59  void hexdump(unsigned char *p, int len);  void hexdump(unsigned char *p, int len);
60  int load_licence(unsigned char **data);  int load_licence(unsigned char **data);
61  void save_licence(unsigned char *data, int length);  void save_licence(unsigned char *data, int length);
 /* rdp5.c */  
 void rdp5_process(STREAM s, BOOL encryption);  
62  /* rdp.c */  /* rdp.c */
63  void rdp_out_unistr(STREAM s, char *string, int len);  void rdp_out_unistr(STREAM s, char *string, int len);
64  void rdp_send_input(uint32 time, uint16 message_type, uint16 device_flags, uint16 param1,  void rdp_send_input(uint32 time, uint16 message_type, uint16 device_flags, uint16 param1,
# Line 74  BOOL rdp_main_loop(void); Line 72  BOOL rdp_main_loop(void);
72  BOOL rdp_connect(char *server, uint32 flags, char *domain, char *password, char *command,  BOOL rdp_connect(char *server, uint32 flags, char *domain, char *password, char *command,
73                   char *directory);                   char *directory);
74  void rdp_disconnect(void);  void rdp_disconnect(void);
75    /* rdp5.c */
76    void rdp5_process(STREAM s, BOOL encryption);
77  /* rdpdr.c */  /* rdpdr.c */
78  void rdpdr_send_connect(void);  void rdpdr_send_connect(void);
79  void rdpdr_send_name(void);  void rdpdr_send_name(void);
# Line 82  void rdpdr_send_completion(uint32 device Line 82  void rdpdr_send_completion(uint32 device
82                             uint32 length);                             uint32 length);
83  BOOL rdpdr_init(void);  BOOL rdpdr_init(void);
84  /* rdpsnd.c */  /* rdpsnd.c */
85    STREAM rdpsnd_init_packet(uint16 type, uint16 size);
86    void rdpsnd_send(STREAM s);
87    void rdpsnd_send_completion(uint16 tick, uint8 packet_index);
88    void rdpsnd_process_negotiate(STREAM in);
89    void rdpsnd_process(STREAM s);
90  BOOL rdpsnd_init(void);  BOOL rdpsnd_init(void);
91    /* rdpsnd_oss.c */
92    BOOL wave_out_open(void);
93    void wave_out_close(void);
94    BOOL wave_out_format_supported(WAVEFORMATEX * pwfx);
95    BOOL wave_out_set_format(WAVEFORMATEX * pwfx);
96    void wave_out_write(STREAM s, uint16 tick, uint8 index);
97    void wave_out_play(void);
98    void wave_out_volume(uint16 left, uint16 right);
99  /* secure.c */  /* secure.c */
100  void sec_hash_48(uint8 * out, uint8 * in, uint8 * salt1, uint8 * salt2, uint8 salt);  void sec_hash_48(uint8 * out, uint8 * in, uint8 * salt1, uint8 * salt2, uint8 salt);
101  void sec_hash_16(uint8 * out, uint8 * in, uint8 * salt1, uint8 * salt2);  void sec_hash_16(uint8 * out, uint8 * in, uint8 * salt1, uint8 * salt2);
# Line 105  STREAM tcp_recv(STREAM s, uint32 length) Line 118  STREAM tcp_recv(STREAM s, uint32 length)
118  BOOL tcp_connect(char *server);  BOOL tcp_connect(char *server);
119  void tcp_disconnect(void);  void tcp_disconnect(void);
120  /* xclip.c */  /* xclip.c */
121  void ui_clip_format_announce(char *data, uint32 length);  void ui_clip_format_announce(uint8 * data, uint32 length);
122  void ui_clip_handle_data(char *data, uint32 length);  void ui_clip_handle_data(uint8 * data, uint32 length);
123  void ui_clip_request_data(uint32 format);  void ui_clip_request_data(uint32 format);
124  void ui_clip_sync(void);  void ui_clip_sync(void);
125  void xclip_init(void);  void xclip_init(void);
# Line 116  BOOL handle_special_keys(uint32 keysym, Line 129  BOOL handle_special_keys(uint32 keysym,
129  key_translation xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state);  key_translation xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state);
130  uint16 xkeymap_translate_button(unsigned int button);  uint16 xkeymap_translate_button(unsigned int button);
131  char *get_ksname(uint32 keysym);  char *get_ksname(uint32 keysym);
132  void save_remote_modifiers(void);  void save_remote_modifiers(uint8 scancode);
133  void restore_remote_modifiers(uint32 ev_time);  void restore_remote_modifiers(uint32 ev_time, uint8 scancode);
134  void ensure_remote_modifiers(uint32 ev_time, key_translation tr);  void ensure_remote_modifiers(uint32 ev_time, key_translation tr);
135  void reset_modifier_keys(unsigned int state);  void reset_modifier_keys(unsigned int state);
136  void rdp_send_scancode(uint32 time, uint16 flags, uint8 scancode);  void rdp_send_scancode(uint32 time, uint16 flags, uint8 scancode);
# Line 139  HCURSOR ui_create_cursor(unsigned int x, Line 152  HCURSOR ui_create_cursor(unsigned int x,
152                           uint8 * xormask);                           uint8 * xormask);
153  void ui_set_cursor(HCURSOR cursor);  void ui_set_cursor(HCURSOR cursor);
154  void ui_destroy_cursor(HCURSOR cursor);  void ui_destroy_cursor(HCURSOR cursor);
155    void ui_set_null_cursor(void);
156  HCOLOURMAP ui_create_colourmap(COLOURMAP * colours);  HCOLOURMAP ui_create_colourmap(COLOURMAP * colours);
157  void ui_destroy_colourmap(HCOLOURMAP map);  void ui_destroy_colourmap(HCOLOURMAP map);
158  void ui_set_colourmap(HCOLOURMAP map);  void ui_set_colourmap(HCOLOURMAP map);

Legend:
Removed from v.460  
changed lines
  Added in v.542

  ViewVC Help
Powered by ViewVC 1.1.26