Search found 1333 matches

by Mijikai
Mon Mar 18, 2024 12:39 pm
Forum: Off Topic
Topic: The US government asks not to use C/C++ due to memory vulnerabilities.
Replies: 15
Views: 756

Re: The US government asks not to use C/C++ due to memory vulnerabilities.

Prob. just want people to use new tech with embedded backdoors instead.
by Mijikai
Thu Jan 25, 2024 7:47 pm
Forum: Announcement
Topic: [Windows x64] RetroPixel a 2D 8-Bit (256 Color) GFX Library - DEV
Replies: 38
Views: 7537

Re: [Windows x64] RetroPixel a 2D 8-Bit (256 Color) GFX Library - DEV

Example Simple Console: https://i.postimg.cc/BZhG90qk/console.png Code: EnableExplicit ;Simple Console Template ;Author: Mijikai XIncludeFile "rpix.pbi" Structure CONSOLE_STRUCT *rpix.RPIX *surface.RPIX_SURFACE *header.RPIX_SURFACE *footer.RPIX_SURFACE *cursor.RPIX_SURFACE *lead.RPIX_SURFA...
by Mijikai
Thu Jan 25, 2024 7:33 pm
Forum: Announcement
Topic: [Windows x64] RetroPixel a 2D 8-Bit (256 Color) GFX Library - DEV
Replies: 38
Views: 7537

Re: [Windows x64] RetroPixel a 2D 8-Bit (256 Color) GFX Library - DEV

Thanks @mrbungle, a Mac version is not planned yet.
by Mijikai
Sat Jan 20, 2024 12:34 am
Forum: Coding Questions
Topic: Performance improvement, accessing a list within a map
Replies: 2
Views: 308

Re: Performance improvement, accessing a list within a map

Somthing like this? EnableExplicit Structure STR_DATA List lst.s() EndStructure Global NewMap dm.STR_DATA() Global *ptr_list.STR_DATA Global *ptr_str.String *ptr_list = dm("test");<- AddElement(*ptr_list\lst()) *ptr_list\lst() = "123" *ptr_str = @*ptr_list\lst() Debug *ptr_list\l...
by Mijikai
Wed Jan 17, 2024 12:49 pm
Forum: Feature Requests and Wishlists
Topic: WebGadget Developer Tools
Replies: 7
Views: 780

Re: WebGadget Developer Tools

+1
by Mijikai
Sun Jan 14, 2024 11:24 pm
Forum: Feature Requests and Wishlists
Topic: Unsigned dword/qword
Replies: 79
Views: 19272

Re: Unsigned dword/qword

+1
by Mijikai
Sat Jan 13, 2024 3:11 pm
Forum: Coding Questions
Topic: How to check if an Executable is already Unpacked?
Replies: 12
Views: 1263

Re: How to check if an Executable is already Unpacked?

The UPX stub will unpack it and transfer execution - so everything is unpacked.
by Mijikai
Thu Jan 11, 2024 5:42 pm
Forum: Coding Questions
Topic: Create a DLL
Replies: 5
Views: 706

Re: Create a DLL

The functions in the dll dont know about the screen that is why it crashes.
by Mijikai
Mon Jan 08, 2024 5:50 pm
Forum: Coding Questions
Topic: How to check if an Executable is already Unpacked?
Replies: 12
Views: 1263

Re: How to check if an Executable is already Unpacked?

If it is running it is unpacked.
by Mijikai
Mon Jan 08, 2024 2:10 pm
Forum: Tricks 'n' Tips
Topic: [Source] Memory Preferences
Replies: 1
Views: 468

[Source] Memory Preferences

Some code to use preferences stored im memory (basically CatchPreference). Code: EnableExplicit ;PB 6.10 beta 1 (x64) ;MEM PREFERENCE ;Author: Mijikai ;Version: dev ;Note: ;- Ignores comments & order (improve if needed) ;- Not all pref functions have beed "translated" Structure PREFERE...
by Mijikai
Wed Dec 27, 2023 9:09 pm
Forum: Coding Questions
Topic: WebGadget delete history ?
Replies: 1
Views: 482

Re: WebGadget delete history ?

Deleting the history seems to be possible via the ICoreWebView2Profile2 interface. https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2profile2?view=webview2-1.0.2088.41 ClearBrowsingData(COREWEBVIEW2_BROWSING_DATA_KINDS dataKinds, ICoreWebView2ClearBrowsingDataCom...
by Mijikai
Wed Dec 27, 2023 1:58 pm
Forum: Coding Questions
Topic: WebGadget delete history ?
Replies: 1
Views: 482

WebGadget delete history ?

Is there a way to delete the history/data/cookies for the WebGadget + #PB_Web_Edge (PureBasic 6.10 beta 1) ?
How does it work ?
by Mijikai
Fri Dec 22, 2023 7:21 pm
Forum: Announcement
Topic: PureBasic 6.10 LTS is out !
Replies: 286
Views: 36315

Re: PureBasic 6.10 beta 1 - Xmas Release - is out !

@Fred and Team
Thank you & Happy Holidays :D
by Mijikai
Tue Dec 19, 2023 4:08 pm
Forum: Tricks 'n' Tips
Topic: ABOUT BINARY, BITS AND BYTES
Replies: 3
Views: 629

Re: ABOUT BINARY, BITS AND BYTES

Thank you for the tips STARGÅTE. I can change the BitGet() macro: Macro BitGet(_var_,_bit_) (((_var_) >> (_bit_)) & 1) EndMacro However the two others wont work, how should i do it? EnableExplicit Macro BitSet(_var_,_bit_) ((_var_) | (1 << (_bit_))) EndMacro Macro BitReset(_var_,_bit_) ((_var_) ...