Subversion Repositories Kolibri OS

Rev

Rev 3545 | Rev 5666 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3545 Rev 3618
Line 1... Line -...
1
;
-
 
2
;
-
 
-
 
1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
 
2
;;                                                                 ;;
-
 
3
;; Copyright (C) KolibriOS team 2010-2013. All rights reserved.    ;;
-
 
4
;; Distributed under terms of the GNU General Public License       ;;
-
 
5
;;                                                                 ;;
3
; VNC Client for kolibrios by hidnplayr
6
;;  vncc.asm - VNC client for KolibriOS                            ;;
4
;
-
 
-
 
7
;;                                                                 ;;
5
; hidnplayr@gmail.com
8
;;  Written by hidnplayr@kolibrios.org                             ;;
6
;
-
 
-
 
9
;;                                                                 ;;
-
 
10
;;          GNU GENERAL PUBLIC LICENSE                             ;;
-
 
11
;;             Version 2, June 1991                                ;;
-
 
12
;;                                                                 ;;
-
 
13
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 7... Line 14...
7
 
14
 
Line -... Line 15...
-
 
15
format binary as ""
-
 
16
 
-
 
17
__DEBUG__       = 1
-
 
18
__DEBUG_LEVEL__ = 1
-
 
19
 
-
 
20
STRLEN          = 64            ; password and server max length
-
 
21
xpos            = 4             ; coordinates of image
-
 
22
ypos            = 22            ;
-
 
23
 
8
format binary as ""
24
TIMEOUT         = 5             ; timeout in seconds
Line 9... Line 25...
9
 
25
 
Line 10... Line 26...
10
use32
26
use32
Line 17... Line 33...
17
        dd      I_END                   ; size of image
33
        dd      I_END           ; size of image
18
        dd      IM_END                  ; memory for app
34
        dd      IM_END          ; memory for app
19
        dd      IM_END                  ; esp
35
        dd      IM_END          ; esp
20
        dd      0x0 , 0x0               ; I_Param , I_Path
36
        dd      0x0 , 0x0       ; I_Param , I_Path
Line 21... Line -...
21
 
-
 
22
__DEBUG__ equ 1
-
 
23
__DEBUG_LEVEL__ equ 1
-
 
24
 
-
 
25
STRLEN = 64      ; password and server max length
-
 
26
xpos = 4         ; coordinates of image
-
 
27
ypos = 22        ;
-
 
28
 
-
 
Line 29... Line 37...
29
TIMEOUT = 5     ; timeout in seconds
37
 
30
 
38
 
31
include '../macros.inc'
39
include '../../macros.inc'
32
include '../debug-fdo.inc'
40
include '../../debug-fdo.inc'
33
include '../proc32.inc'
41
include '../../proc32.inc'
34
include '../dll.inc'
42
include '../../dll.inc'
Line 35... Line 43...
35
include '../struct.inc'
43
include '../../struct.inc'
36
include '../network.inc'
44
include '../../network.inc'
37
 
45
 
38
include 'structs.inc'
46
include 'structs.inc'