|
Navigation
- Home
- Community
- Development
- myReactOS
- Fundraiser 2012
Doxygen
- Main Page
- Alphabetical List
- Data Structures
- Directories
- File List
- Data Fields
- Globals
- Related Pages
Search
|
#include <winsock2.h>
#include <precomp.h>
Go to the source code of this file.
Functions |
| static void | str_to_uni (TCHAR *sizex, char *size1) |
| static void | uni_to_str (char *sizex, TCHAR *size1) |
| static int | check_sck (void) |
| void | mi_error (char *msg) |
| static int | get_scan_code_from_ascii (int code) |
| static void | mi_scroll (int dx, int dy) |
| int | mi_read_keyboard_state (void) |
| static void | mi_check_modifier (void) |
| static LRESULT | handle_WM_SETCURSOR (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_NCHITTEST (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_MOUSEMOVE (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_LBUTTONDOWN (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_LBUTTONUP (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_RBUTTONDOWN (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_RBUTTONUP (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_MBUTTONDOWN (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_MBUTTONUP (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_MOUSEWHEEL (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_KEY (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_PAINT (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_SIZE (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_SIZING (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_HSCROLL (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static LRESULT | handle_WM_VSCROLL (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| LRESULT CALLBACK | WndProc (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
| static HRGN | mi_clip (HDC dc) |
| int | mi_create_window (void) |
| int | mi_main_loop (void) |
| void | mi_warning (char *msg) |
| static void | mi_show_error (char *caption) |
| void | mi_paint_rect (char *data, int width, int height, int x, int y, int cx, int cy) |
| static INT | GetPortNumber (PCHAR szAddress) |
| static VOID | SetDomainAndUsername (PCHAR pName) |
| static BOOL | ParseCommandLine (LPWSTR lpCmdLine, PRDPSETTINGS pRdpSettings, BOOL *bSkipDlg) |
| int WINAPI | wWinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow) |
| void | mi_begin_update (void) |
| void | mi_end_update (void) |
| void | mi_fill_rect (int x, int y, int cx, int cy, int colour) |
| void | mi_line (int x1, int y1, int x2, int y2, int colour) |
| void | mi_screen_copy (int x, int y, int cx, int cy, int srcx, int srcy) |
| void | mi_set_clip (int x, int y, int cx, int cy) |
| void | mi_reset_clip (void) |
| void * | mi_create_cursor (unsigned int x, unsigned int y, int width, int height, unsigned char *andmask, unsigned char *xormask) |
| void | mi_destroy_cursor (void *cursor) |
| void | mi_set_cursor (void *cursor) |
| void | mi_set_null_cursor (void) |
Variables |
| char | g_username [] |
| char | g_hostname [] |
| char | g_servername [] |
| char | g_password [] |
| char | g_shell [] |
| char | g_directory [] |
| char | g_domain [] |
| int | g_width |
| int | g_height |
| int | g_tcp_sck |
| int | g_server_depth |
| int | g_tcp_port_rdp |
| int | pal_entries [] |
| static HWND | g_Wnd = 0 |
| static HINSTANCE | g_Instance = 0 |
| static HCURSOR | g_cursor = 0 |
| static int | g_block = 0 |
| static int | g_xoff = 0 |
| static int | g_yoff = 0 |
| static int | g_xscroll = 0 |
| static int | g_yscroll = 0 |
| static int | g_screen_width = 0 |
| static int | g_screen_height = 0 |
| static int | g_wnd_cwidth = 0 |
| static int | g_wnd_cheight = 0 |
| static int | g_fullscreen = 0 |
| static int | g_workarea = 0 |
| static int | g_mousex = 0 |
| static int | g_mousey = 0 |
| static int | g_clip_left = 0 |
| static int | g_clip_top = 0 |
| static int | g_clip_right = 800 |
| static int | g_clip_bottom = 600 |
| static RECT | g_wnd_clip |
Generated on Sat May 26 2012 04:41:11 for ReactOS by
1.7.6.1
|