Search found 8 matches

by macko17
May 06, 2020 20:18
Forum: Community Discussion
Topic: Why did you choose FreeBASIC?
Replies: 37
Views: 7270

Re: Why did you choose FreeBASIC?

Is there a reason you spam your competing product in every thread about this language? And why have the moderators allowed you to do it nearly 3000 times? No doubt this is why there's a dearth of people using Freebasic, everybody who expects to read about it on this forum ends up with an advert abou...
by macko17
Nov 06, 2019 22:27
Forum: Projects
Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)
Replies: 981
Views: 347560

Re: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (Updated November 2, 2019)

PaulSquires wrote:Maybe you can see where I might be going wrong.
It won't fix any problems you may have but you're leaking the handle to the read end of the pipe. The write end is closed, but not the read. The MSDN example the code is based off has the same error so you translated it too perfectly :-)
by macko17
Oct 16, 2019 1:58
Forum: Windows
Topic: Need new gfxlib driver for Windows 7, 8, 10
Replies: 20
Views: 6828

Re: Need new gfxlib driver for Windows 7, 8, 10

Does anyone seen fbc's gfxlib2 DirectX driver working on Win7+ 64-bit with fbc 64-bit program? This is broken because somebody hardcoded the size of the DIDATAFORMAT rather than using sizeof, and since it contains pointers, isn't the same for 32 and 64. Changing this line https://github.com/freebas...
by macko17
Oct 08, 2019 22:00
Forum: General
Topic: ASLR
Replies: 64
Views: 11218

Re: ASLR

I got its plaintext life down to 0.72ms on encryption and 0.0038ms on decryption. Paranoid? Guilty, but I don't think that Bruce Schneier would call me paranoid. If you're paranoid better get off of PB too. It doesn't support stack smash canaries, Control Flow Guard or SafeSEH*, you know the relati...
by macko17
Nov 05, 2018 4:31
Forum: Community Discussion
Topic: Resignation
Replies: 74
Views: 12411

Re: Resignation

It's fun how on literally every forum, the people who post introductory "Hi this is my first post, I hope I'll be productive here" type things generally don't ever make any posts other than that one, while the people who post "I'm not ever posting here again because I hate things abou...
by macko17
Sep 03, 2018 20:59
Forum: Beginners
Topic: Simple example: Subclassing of an edit control
Replies: 17
Views: 5238

Re: Simple example: Subclassing of an edit control

I make good use of the dwRefData parameter. Right. How would you do this, using dwRefData? Probably the same way. Except it'd be more protected against random changes. You know, since anybody with the HWND can SetWindowLong to change the user data at any time (in any app!). Sure that's not gonna ha...
by macko17
Aug 30, 2018 18:32
Forum: Windows
Topic: PowerShell hashing
Replies: 10
Views: 2524

Re: PowerShell hashing

This has been in Windows for a while, the powershell thing is (probably) just a wrapper around it.

certutil -hashfile fileName HashType

Hashtype is MD2, MD4, MD5, SHA1, SHA256, SHA384, SHA512
by macko17
Jul 28, 2018 5:41
Forum: Sources, Examples, Tips and Tricks
Topic: FB MemCopy() statement (without CRT includes)
Replies: 44
Views: 7610

Re: FB MemCopy() statement (without CRT includes)

What I personally find somewhat distressing, in this whole discussion is: the neglection of ERROR checking, for "speed's sake" ... I'm not willing to do that since, it masks errors from calling code like: 1) a target string without allocated memory 2) the same, with un-allocated zstring p...