jeffmorlen Posted May 22, 2008 Posted May 22, 2008 So far, within the posts of these forums, I have found code that will start a session of UltraVNC SC. It works great. I have started to try to figure out how to use the alternate, client side, of UltraVNC SC. The UltraVNC SC has two parts that run from 2 dlls. We have a 1scdll.dll and 1scvdll.dll. The server uses the 1scdll.dll. The client uses the 1scvdll.dll. I have written the following (which was copied from Florian Fida's code for the server): --- START --- #cs #ce If @Compiled Then FileInstall("icon1.ico", @TempDir & "\", 1) FileInstall("SCHook.dll", @TempDir & "\", 1) FileInstall("1SCVDLL.dll", @TempDir & "\", 1) FileInstall("1CHATDLL.dll", @TempDir & "\", 1) FileChangeDir(@TempDir) EndIf Global $g_hDll_1SCVDLL = DllOpen("1SCVDLL.dll") DllCall($g_hDll_1SCVDLL, "none:cdecl", "Start_viewer" , "", "", 5500, 0, "", False, False, 99) --- END --- The output that I get is: --- START --- >"E:\autoit\install\SciTe\..\autoit3.exe" /ErrorStdOut "E:\autoit\install\Examples\uvnc\Server.au3" WM_APP+4 disconnecting No 'Winvnc video hook driver2' found. >Exit code: 0 Time: 3.449 --- END --- Anyone have any ideas how to overcome this? Any help would be appreciated.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now