summaryrefslogtreecommitdiff
path: root/noncore/net/opierdesktop/proto.h
authormickeyl <mickeyl>2003-08-10 15:17:24 (UTC)
committer mickeyl <mickeyl>2003-08-10 15:17:24 (UTC)
commit1fb2f4ef9788b51c67b9c0f89ac3c3ce85e45e8f (patch) (unidiff)
tree73b54db5d3aa3e40f4159079c14c8fca90a76c1e /noncore/net/opierdesktop/proto.h
parentdf6337abb65463b466435a526bf62108e72a60f7 (diff)
downloadopie-1fb2f4ef9788b51c67b9c0f89ac3c3ce85e45e8f.zip
opie-1fb2f4ef9788b51c67b9c0f89ac3c3ce85e45e8f.tar.gz
opie-1fb2f4ef9788b51c67b9c0f89ac3c3ce85e45e8f.tar.bz2
initial import of qtrdesktop - not yet opiefied but working
Diffstat (limited to 'noncore/net/opierdesktop/proto.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opierdesktop/proto.h121
1 files changed, 121 insertions, 0 deletions
diff --git a/noncore/net/opierdesktop/proto.h b/noncore/net/opierdesktop/proto.h
new file mode 100644
index 0000000..6bc5b13
--- a/dev/null
+++ b/noncore/net/opierdesktop/proto.h
@@ -0,0 +1,121 @@
1/* bitmap.c */
2BOOL bitmap_decompress(unsigned char *output, int width, int height, unsigned char *input, int size,
3 int Bpp);
4/* cache.c */
5HBITMAP cache_get_bitmap(uint8 cache_id, uint16 cache_idx);
6void cache_put_bitmap(uint8 cache_id, uint16 cache_idx, HBITMAP bitmap);
7FONTGLYPH *cache_get_font(uint8 font, uint16 character);
8void cache_put_font(uint8 font, uint16 character, uint16 offset, uint16 baseline, uint16 width,
9 uint16 height, HGLYPH pixmap);
10DATABLOB *cache_get_text(uint8 cache_id);
11void cache_put_text(uint8 cache_id, void *data, int length);
12uint8 *cache_get_desktop(uint32 offset, int cx, int cy, int bytes_per_pixel);
13void cache_put_desktop(uint32 offset, int cx, int cy, int scanline, int bytes_per_pixel,
14 uint8 * data);
15HCURSOR cache_get_cursor(uint16 cache_idx);
16void cache_put_cursor(uint16 cache_idx, HCURSOR cursor);
17/* ewmhints.c */
18int get_current_workarea(uint32 * x, uint32 * y, uint32 * width, uint32 * height);
19/* iso.c */
20STREAM iso_init(int length);
21void iso_send(STREAM s);
22STREAM iso_recv(void);
23BOOL iso_connect(char *server);
24void iso_disconnect(void);
25/* licence.c */
26void licence_process(STREAM s);
27/* mcs.c */
28STREAM mcs_init(int length);
29void mcs_send(STREAM s);
30STREAM mcs_recv(void);
31BOOL mcs_connect(char *server, STREAM mcs_data);
32void mcs_disconnect(void);
33/* orders.c */
34void process_orders(STREAM s);
35void reset_order_state(void);
36/* rdesktop.c */
37int main(int argc, char *argv[]);
38void generate_random(uint8 * random);
39void *xmalloc(int size);
40void *xrealloc(void *oldmem, int size);
41void xfree(void *mem);
42void error(char *format, ...);
43void warning(char *format, ...);
44void unimpl(char *format, ...);
45void hexdump(unsigned char *p, unsigned int len);
46int load_licence(unsigned char **data);
47void save_licence(unsigned char *data, int length);
48/* rdp.c */
49void rdp_out_unistr(STREAM s, char *string, int len);
50void rdp_send_input(uint32 time, uint16 message_type, uint16 device_flags, uint16 param1,
51 uint16 param2);
52BOOL rdp_main_loop(void);
53BOOL rdp_connect(char *server, uint32 flags, char *domain, char *password, char *command,
54 char *directory);
55void rdp_disconnect(void);
56/* secure.c */
57void sec_hash_48(uint8 * out, uint8 * in, uint8 * salt1, uint8 * salt2, uint8 salt);
58void sec_hash_16(uint8 * out, uint8 * in, uint8 * salt1, uint8 * salt2);
59void buf_out_uint32(uint8 * buffer, uint32 value);
60void sec_sign(uint8 * signature, int siglen, uint8 * session_key, int keylen, uint8 * data,
61 int datalen);
62STREAM sec_init(uint32 flags, int maxlen);
63void sec_send(STREAM s, uint32 flags);
64STREAM sec_recv(void);
65BOOL sec_connect(char *server);
66void sec_disconnect(void);
67/* tcp.c */
68STREAM tcp_init(unsigned int maxlen);
69void tcp_send(STREAM s);
70STREAM tcp_recv(unsigned int length);
71BOOL tcp_connect(char *server);
72void tcp_disconnect(void);
73/* xkeymap.c */
74void xkeymap_init(void);
75BOOL handle_special_keys(uint32 keysym, unsigned int state, uint32 ev_time, BOOL pressed);
76key_translation xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state);
77uint16 xkeymap_translate_button(unsigned int button);
78char *get_ksname(uint32 keysym);
79void ensure_remote_modifiers(uint32 ev_time, key_translation tr);
80void reset_modifier_keys(unsigned int state);
81void rdp_send_scancode(uint32 time, uint16 flags, uint8 scancode);
82/* xwin.c */
83BOOL get_key_state(unsigned int state, uint32 keysym);
84BOOL ui_init(void);
85void ui_deinit(void);
86BOOL ui_create_window(void);
87void ui_destroy_window(void);
88void xwin_toggle_fullscreen(void);
89int ui_select(int rdp_socket);
90void ui_move_pointer(int x, int y);
91HBITMAP ui_create_bitmap(int width, int height, uint8 * data);
92void ui_paint_bitmap(int x, int y, int cx, int cy, int width, int height, uint8 * data);
93void ui_destroy_bitmap(HBITMAP bmp);
94HGLYPH ui_create_glyph(int width, int height, uint8 * data);
95void ui_destroy_glyph(HGLYPH glyph);
96HCURSOR ui_create_cursor(unsigned int x, unsigned int y, int width, int height, uint8 * andmask,
97 uint8 * xormask);
98void ui_set_cursor(HCURSOR cursor);
99void ui_destroy_cursor(HCURSOR cursor);
100HCOLOURMAP ui_create_colourmap(COLOURMAP * colours);
101void ui_destroy_colourmap(HCOLOURMAP map);
102void ui_set_colourmap(HCOLOURMAP map);
103void ui_begin_update(void);
104void ui_end_update(void);
105void ui_set_clip(int x, int y, int cx, int cy);
106void ui_reset_clip(void);
107void ui_bell(void);
108void ui_destblt(uint8 opcode, int x, int y, int cx, int cy);
109void ui_patblt(uint8 opcode, int x, int y, int cx, int cy, BRUSH * brush, int bgcolour,
110 int fgcolour);
111void ui_screenblt(uint8 opcode, int x, int y, int cx, int cy, int srcx, int srcy);
112void ui_memblt(uint8 opcode, int x, int y, int cx, int cy, HBITMAP src, int srcx, int srcy);
113void ui_triblt(uint8 opcode, int x, int y, int cx, int cy, HBITMAP src, int srcx, int srcy,
114 BRUSH * brush, int bgcolour, int fgcolour);
115void ui_line(uint8 opcode, int startx, int starty, int endx, int endy, PEN * pen);
116void ui_rect(int x, int y, int cx, int cy, int colour);
117void ui_draw_text(uint8 font, uint8 flags, int mixmode, int x, int y, int clipx, int clipy,
118 int clipcx, int clipcy, int boxx, int boxy, int boxcx, int boxcy, int bgcolour,
119 int fgcolour, uint8 * text, uint8 length);
120void ui_desktop_save(uint32 offset, int x, int y, int cx, int cy);
121void ui_desktop_restore(uint32 offset, int x, int y, int cx, int cy);