Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: viewtopic.php?t=37864

Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://twitter.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc

how to manage with 1SCDLL.DLL in a program ?

Post Reply
butathermix
Posts: 3
Joined: 2010-01-23 09:31

how to manage with 1SCDLL.DLL in a program ?

Post by butathermix »

Hello,
I would like to directly connect to a viewer on a PC over the Net.
I code with Delphi 2007 (Pascal) I integrate the 1SCDLL.DLL in the
code and it seems to work fine I can call the two functions start_server
and stop_server but which parameters do I have to pass ?
viewer is direct listenning on port 5500 so
start_server(
pchar('\0'),pchar('\0'),pchar('place.dyndns.org'),5500,pchar('passwrd')
,false,'HPW',false)
should works but no response and if i changed
start_server(
pchar('\0'),pchar('place.dyndns.org'),pchar('\0'),5500,pchar('passwrd')
,false,'HPW',false)
the viewer answer 'Start encryption Waiting server' and close with
'Network stopped, closing wiewer strange because i do not need any
repeater I tried
start_server(
pchar('\0'),pchar('place.dyndns.org'),pchar('place.dyndns.org'
),5500,pchar('passwrd') ,false,'HPW',false)
same answer
start_server(
pchar('\0'),pchar('place.dyndns.org'),pchar('place.dyndns.org'
),5500,pchar('40682260CC011947FC2D0B1A927138C5'),
false,'HPW',false)
same answer
what do I forget... it is surely not so easy as i thought Thanks you for your help ...
Post Reply