Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/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://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc

Search found 20 matches

by zonesowhat
2014-09-03 01:45
Forum: Old messages
Topic: What are the ClippedUpdateTracker and the Simple** used for?
Replies: 0
Views: 1798

What are the ClippedUpdateTracker and the Simple** used for?

What are the ClippedUpdateTracker and the SimpleUpdateTracker used for? Does it means that raw regions/rects hooked by the vncHooks should be translated to the ultimate ones which are send to the vncViewer by handling with some regions/rects called Clipped ? The vncHooks send some regions/rects ...
by zonesowhat
2014-05-30 03:20
Forum: Old messages
Topic: the difference among copyXXX,cacheXXX and changeXXX
Replies: 5
Views: 4818

Re: the difference among copyXXX,cacheXXX and changeXXX

Many thanks!It cannot be more detailed!
by zonesowhat
2014-05-29 08:28
Forum: Old messages
Topic: the difference among copyXXX,cacheXXX and changeXXX
Replies: 5
Views: 4818

Re: the difference among copyXXX,cacheXXX and changeXXX

Then what is the copyrect on earth when recorded and sended?Is it a rect of (50x50) ,(100,50) or (50+100,50+50)?
The same question for others two.
by zonesowhat
2014-05-29 06:42
Forum: Old messages
Topic: What is the Class of ClippedUpdateTracker used for?
Replies: 0
Views: 1677

What is the Class of ClippedUpdateTracker used for?

What are the ClippedUpdateTracker and its member variable ,cliprgn, used for?When I read the file of cpp and h,I just cannot got the purpose of authors to create it. What is the difference between the ClippedUpdateTracker and the SimpleUpdateTracker? The latter derives some other classes so the h ...
by zonesowhat
2014-05-29 06:10
Forum: Old messages
Topic: Some rare usage in the source code
Replies: 2
Views: 2841

Re: Some rare usage in the source code

I have got the point.The problems has been solved by myself.
by zonesowhat
2014-05-29 00:34
Forum: Old messages
Topic: Some rare usage in the source code
Replies: 2
Views: 2841

Re: Some rare usage in the source code

Does it cause a calling to the corresponding function of the subclass SimpleUpdateTracker? rfbUpdateTracker.h ... class SimpleUpdateTracker : public UpdateTracker { public: SimpleUpdateTracker(bool use_copyrect=false); virtual ~SimpleUpdateTracker(); virtual void enable_copyrect(bool enable) {copy ...
by zonesowhat
2014-05-28 08:47
Forum: Old messages
Topic: Some rare usage in the source code
Replies: 2
Views: 2841

Some rare usage in the source code

Firstly,the code: rfbUpdateTracker.h ... class UpdateTracker { public: UpdateTracker() {}; virtual ~UpdateTracker() {}; virtual void add_changed(const Region2D &region) = 0; ... }; class ClippedUpdateTracker : public UpdateTracker { public: ... ClippedUpdateTracker(UpdateTracker &child_, const ...
by zonesowhat
2014-05-20 01:26
Forum: Old messages
Topic: the difference among copyXXX,cacheXXX and changeXXX
Replies: 5
Views: 4818

Re: the difference among copyXXX,cacheXXX and changeXXX

copy: copyrect ( server option) If you move a window (0,0) (rect 50x50) to (100,50) 1) you tell the viewer to move his pixels (50x50) from position (0,0) to (100,50) 2) you ignore all updates in src+dest position 3) Next run you need to check for artifacts, bad or missing updates The copyregion ...
by zonesowhat
2014-05-17 02:05
Forum: Old messages
Topic: the difference among copyXXX,cacheXXX and changeXXX
Replies: 5
Views: 4818

the difference among copyXXX,cacheXXX and changeXXX

In the source code of Ultra VNC ,there exist three kinds of identifier:copyXXX(or copied_XXX somewhere),cacheXXX(or cached_XXX somewhere) and changeXXX(or changed_XXX somewhere).Those identifiers are used to identify buffers ,regions of desktop and may be others more. I just can not distinguish them ...
by zonesowhat
2014-05-12 03:15
Forum: Old messages
Topic: Errors of compiling the source code of the Ultra VNC
Replies: 9
Views: 8881

Re: Errors of compiling the source code of the Ultra VNC

The project 'winvnc' may be checked by someone before I got it.That means the projects which it depends on may be removed.
by zonesowhat
2014-05-12 03:10
Forum: Old messages
Topic: Errors of compiling the source code of the Ultra VNC
Replies: 9
Views: 8881

Re: Errors of compiling the source code of the Ultra VNC

Thanks.It seems that I have got the point.
by zonesowhat
2014-05-09 09:36
Forum: Old messages
Topic: Errors of compiling the source code of the Ultra VNC
Replies: 9
Views: 8881

Re: Errors of compiling the source code of the latest Ultra

This is no error, it's just a message to remind you that tabletranstemplate.cpp doesn't need to be compiled. Just read tabletranstemplate.cpp #if !defined(INVNC) || !defined(OUTVNC) #error "This file shouldn't be compiled." #error "It is included as part of translate.c" #endif Unless you are ...
by zonesowhat
2014-05-09 09:28
Forum: Old messages
Topic: Errors of compiling the source code of the Ultra VNC
Replies: 9
Views: 8881

Re: Errors of compiling the source code of the latest Ultra

Thanks for your reply.I want to tell you the details : When I open the project(or .sln) directly(winvnc2008.sln),the file icons of the files above(tableinittctemplate.cpp etc.) show differently (with a small red horizontal stroke on the right-down corner of the normal icon) with others which showing ...
by zonesowhat
2014-05-08 08:27
Forum: Old messages
Topic: Errors of compiling the source code of the Ultra VNC
Replies: 9
Views: 8881

Errors of compiling the source code of the Ultra VNC

I'm using the source code of Ultra VNC with an unknown version . These errors occur when compiling the 'winvnc' procject using VS2008: 3>.\tabletranstemplate.cpp(17) : fatal error C1189: #error : "This file shouldn't be compiled." 3>tableinittctemplate.cpp 3>.\tableinittctemplate.cpp(17) : fatal ...
by zonesowhat
2014-05-08 02:50
Forum: Old messages
Topic: ”Load_Localization“Function
Replies: 2
Views: 4257

Re: ”Load_Localization“Function

Rudi De Vos wrote:#include "Localization.h" :)
Thanks for your little joke.
by zonesowhat
2014-05-07 02:21
Forum: Old messages
Topic: ”Load_Localization“Function
Replies: 2
Views: 4257

”Load_Localization“Function

I'm using the source code of Ultra VNC with unknown version. There exists a function named "Load_Localization" in the WinMain fnc,but the fact is that I can not find any definition or declaration of it.So I want to know more about this function.Any one know about it?The code is as follows: int ...
by zonesowhat
2014-05-07 01:17
Forum: Old messages
Topic: hook and poll
Replies: 2
Views: 28713

Re: hook and poll

mark
by zonesowhat
2014-04-25 05:58
Forum: Olders
Topic: Compile with vs2008 error in keymap.h
Replies: 2
Views: 18522

Re: Compile with vs2008 error in keymap.h

The answer above cannot be useful.
by zonesowhat
2014-04-19 09:24
Forum: Old messages
Topic: The interpretation document of the latest UltraVNC
Replies: 2
Views: 4565

Re: The interpretation document of the latest UltraVNC

Actually I just want to learn its source code rather than to use the executable program .
by zonesowhat
2014-04-14 03:35
Forum: Old messages
Topic: The interpretation document of the latest UltraVNC
Replies: 2
Views: 4565

The interpretation document of the latest UltraVNC

Hey guys,
I'm studying the Ultra VNC hard,but I find that it's such difficult to do .
Now I'm searching for your helps.I will thank for anything which is helpful .(The interpretation document of the latest UltraVNC will be the best.)
Thanks!

__mail to:zonesowhat@gmail.com