Search found 92 matches

by gigaherz
Mon Aug 25, 2014 11:20 pm
Forum: General Discussion and Feedback
Topic: Blog: Dynamic menus and miscounted references
Replies: 20
Views: 11127

Re: Blog: Dynamic menus and miscounted references

Hi, gigaherz. I've read in your post that you started to work on DDE implementation. There are two windows shell replacment projects (open source, under GPL) that already contain DDE server: LiteStep (http://www.lsdev.org/) and Emerge Desktop (http://www.emergedesktop.org/). As far as I know ED is ...
by gigaherz
Mon Aug 25, 2014 1:20 am
Forum: General Discussion and Feedback
Topic: Blog: Dynamic menus and miscounted references
Replies: 20
Views: 11127

Re: Blog: Dynamic menus and miscounted references

There is a whole extra section showing in the picture above. I that that was only visible when you right-click an item. I thought it didn't not go on the file menu. I was thinking maybe you need to add flags to make that disappear from the file menu or something. However, on Windows 7, that section...
by gigaherz
Sun Aug 24, 2014 11:41 pm
Forum: General Discussion and Feedback
Topic: Blog: Dynamic menus and miscounted references
Replies: 20
Views: 11127

Re: Blog: Dynamic menus and miscounted references

erkinalp wrote:Moving context menu completely out of the file menu would solve that and also the File menu reinitialisation problem outright.
Huh? that makes no sense. There is no reinitialization problem, it's just how it works. It's supposed to be that way.
by gigaherz
Sun Aug 24, 2014 11:40 pm
Forum: General Discussion and Feedback
Topic: Blog: Dynamic menus and miscounted references
Replies: 20
Views: 11127

Re: Blog: Dynamic menus and miscounted references

If you had read the report, I explain that the items in the file menu come straight from the context menu, and that's wrong. We don't yet have the necessary code to build the "partial" menu the way Windows does it, so I went for the next best thing, which is to use the full context menu, i...
by gigaherz
Tue Aug 05, 2014 2:02 am
Forum: General Discussion and Feedback
Topic: We need an official C compiler and assembler for ReactOS
Replies: 22
Views: 21434

Re: We need an official C compiler and assembler for ReactOS

Please, before anyone wastes any more time. Let's think this through. I'm not giving any opinion on what would be best for the project, simply asking: Can any of you write such a compiler? Do any of you have the time, knowledge and resources to write such compiler? If the answer is yes, if you feel ...
by gigaherz
Tue Jul 22, 2014 1:18 am
Forum: General Discussion and Feedback
Topic: Blog: Merged Folders and undocumented interfaces
Replies: 21
Views: 16635

Re: Blog: Merged Folders and undocumented interfaces

I forgot to tell you ppl. Last monday when I was cooking, my left hand was splashed by hot oil, and I got second degree burns. It's not too serious, but it prevented me from doing any useful work. I'm hoping to start doing things over this week, and hopefully I can be fully back on track by next mon...
by gigaherz
Tue Jul 15, 2014 3:51 am
Forum: Development Help
Topic: New ReactOS Explorer
Replies: 10
Views: 16814

Re: New ReactOS Explorer

It has been explained multiple times in multiple blog threads already: the goal is to recreate the original windows shell components, so that 3rdparty programs using those interfaces can work at all. We already have a working non-comformant shell, but the team wants "the real thing", which...
by gigaherz
Mon Jul 14, 2014 1:25 pm
Forum: General Discussion and Feedback
Topic: Blog: Merged Folders and undocumented interfaces
Replies: 21
Views: 16635

Re: Blog: Merged Folders and undocumented interfaces

BigChimp wrote:Nice to see progress, gigaherz - not just because it's progress but more importantly because trying to fix bugs for hours or days and not succeeding can be intensely frustrating ;)

Keep up the good work!
Thanks! And yes, it is.
by gigaherz
Sun Jul 13, 2014 5:23 pm
Forum: General Discussion and Feedback
Topic: Blog: Merged Folders and undocumented interfaces
Replies: 21
Views: 16635

Re: Blog: Merged Folders and undocumented interfaces

Always impressed by the ability of proper programmers to understand the intricacies of convoluted Windows o/s level progamming,even if not the Windows core it all seems unnecessarily complicated. Kudos to you for being able to do it. Thanks! I like to think I have a talent for understanding how thi...
by gigaherz
Sun Jul 13, 2014 1:46 am
Forum: General Discussion and Feedback
Topic: Blog: Merged Folders and undocumented interfaces
Replies: 21
Views: 16635

Re: Blog: Merged Folders and undocumented interfaces

If I recall correctly the folders are defined in the registry, so it's theoretically possible to rename/relocate them. Problem is for many of the folders, you can't do that while programs are running inside them. Yes that is true. And sloppy coders might hard code them and then cannot find the cust...
by gigaherz
Sat Jul 12, 2014 9:50 pm
Forum: General Discussion and Feedback
Topic: Blog: Merged Folders and undocumented interfaces
Replies: 21
Views: 16635

Re: Blog: Merged Folders and undocumented interfaces

If I recall correctly the folders are defined in the registry, so it's theoretically possible to rename/relocate them. Problem is for many of the folders, you can't do that while programs are running inside them.
by gigaherz
Fri Jul 11, 2014 3:12 am
Forum: General Discussion and Feedback
Topic: Blog: Spilling the Wine
Replies: 35
Views: 21935

Re: Blog: Spilling the Wine

People, as I will explain tomorrow when I write this week's report (and sorry about missing it last weekend), and as you may have already read in the collaborative TODO list I made, I already found a way to debug the leak by using our shell32.dll in windows, loaded manually by our filebrowser.exe. I...
by gigaherz
Sat Jul 05, 2014 4:59 pm
Forum: General Discussion and Feedback
Topic: Blog: Spilling the Wine
Replies: 35
Views: 21935

Re: Blog: Spilling the Wine

Ahh... Dr Memory. I may have to check it again. I tried that one first, but I had issues getting it to work...
by gigaherz
Fri Jul 04, 2014 1:12 am
Forum: General Discussion and Feedback
Topic: Blog: Spilling the Wine
Replies: 35
Views: 21935

Re: Blog: Spilling the Wine

What about this :arrow: http://msdn.microsoft.com/en-us/library/windows/hardware/ff560206(v=vs.85).aspx :?: Uhm, the title clearly says "memory leaks" ;P Sorry, I did spend some hours looking, so I have probably seen all the best options already. If you want to surprise me, you'd have to ...
by gigaherz
Thu Jul 03, 2014 10:51 pm
Forum: General Discussion and Feedback
Topic: Blog: Spilling the Wine
Replies: 35
Views: 21935

Re: Blog: Spilling the Wine

:idea: Perhaps this may be helpful: :arrow: http://blogs.msdn.com/b/junfeng/archive/2008/04/21/use-htrace-to-debug-handle-leak.aspx Maybe? Sadly, no ;P That's Kernel handles, as in, the ones exposed by kernel32.dll The ones I need to fix are USER handles, exposed by user32.dll There's also GDI hand...