Search found 1325 matches

by Mijikai
Tue Oct 24, 2023 4:31 pm
Forum: Windows
Topic: [SOLVED] Inhibit CTRL/C in the console
Replies: 8
Views: 998

Re: [SOLVED] Inhibit CTRL/C in the console

Mby:

Code: Select all

SetConsoleCtrlHandler_(#Null,#True)
by Mijikai
Wed Oct 18, 2023 8:26 pm
Forum: Coding Questions
Topic: Using 'FileSeek' and 'Inline ASM' in Memory?
Replies: 21
Views: 1309

Re: Using 'FileSeek' and 'Inline ASM' in Memory?

PoorMan wrote: Wed Oct 18, 2023 5:49 pm ...
I've solved the issue by myself!
PG/VEH ?
by Mijikai
Mon Sep 25, 2023 6:35 pm
Forum: Coding Questions
Topic: Link .lib only without the dll?
Replies: 31
Views: 1243

Re: Link .lib only without the dll?

You can try a naked:

Code: Select all

Import "msvcrt.lib"
EndImport
by Mijikai
Sat Sep 23, 2023 10:40 am
Forum: Announcement
Topic: PureBasic 6.03 LTS is released !
Replies: 184
Views: 38191

Re: PureBasic 6.03 LTS beta 8 is ready to test !

Fred wrote: Sat Sep 23, 2023 10:01 am As a side note we dropped codesign support for Windows package as the price went crazy for this (basically from 200 euros for 3 years to 450 euros per year, which is a total rip-off for nearly no advantage as AV still flags the execs as malware regardless of the signing state)
Great news 8)
by Mijikai
Sat Sep 09, 2023 11:22 am
Forum: Assembly and C Programming in PureBasic
Topic: [SOLVED] Questions about SSE
Replies: 2
Views: 881

Re: Questions about SSE

@STARGÅTE
Thanks for the quick help, i completely missed the third parameter :oops:
by Mijikai
Sat Sep 09, 2023 11:06 am
Forum: Announcement
Topic: [Windows x64] RetroPixel a 2D 8-Bit (256 Color) GFX Library - DEV
Replies: 38
Views: 8012

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

@Kuron
Im currently busy writing the documentation which i want to finish* before the next release.
(*at least for the main interface)
by Mijikai
Sat Sep 09, 2023 10:25 am
Forum: Assembly and C Programming in PureBasic
Topic: [SOLVED] Questions about SSE
Replies: 2
Views: 881

[SOLVED] Questions about SSE

I struggle with SSE :oops: How can i make the Procedure return the result directly ? How to compare two results and branch if they are less/greater ? Why is cmpsd not recognised as instruction ? Code: EnableExplicit Procedure.d Dummy(A.d,B.d,*C) !movsd xmm0,[p.v_A] !movsd xmm1,[p.v_B] !divsd xmm0,xm...
by Mijikai
Fri Sep 08, 2023 5:55 pm
Forum: Feature Requests and Wishlists
Topic: For var in (string1, string, string3)
Replies: 8
Views: 924

Re: For var in (string1, string, string3)

Something:

Code: Select all

DataSection:Data.s "Windows","Linux","MacOs":EndDataSection
For i = 0 To 2
 Read.s s.s:Debug s
Next
by Mijikai
Fri Sep 08, 2023 1:45 pm
Forum: Announcement
Topic: [Windows x64] RSOUND - RetroSound library - DEV
Replies: 6
Views: 1917

Re: [Windows x64] RSOUND - RetroSound library - DEV

Thank you @Kuron I have always wished for the "sound engine" from BBC Basic for Windows... It want to do something like that but im still not sure how and what exactly. Some easy to use sound chip/engine thing. Update Version DEV 0.03: - I have rewritten the lib in FASM now it is static an...
by Mijikai
Fri Sep 01, 2023 7:30 pm
Forum: Announcement
Topic: [Windows x64] RSOUND - RetroSound library - DEV
Replies: 6
Views: 1917

Re: [Windows x64] RSOUND - RetroSound library - DEV

Thank you @thyphoon and @Kwai chang caine

Update

Version DEV 0.02:
- Now the sound can be manipulated in realtime, this could be useful for creating a little synth 8)
by Mijikai
Thu Aug 31, 2023 4:08 pm
Forum: Coding Questions
Topic: old code drawing issue
Replies: 3
Views: 507

Re: old code drawing issue

I suspect that a event is missing.

You can try to add this call after the screen is created:

Code: Select all

ResizeWindow(0,#PB_Ignore,#PB_Ignore,#PB_Ignore,#PB_Ignore)
by Mijikai
Sat Aug 26, 2023 9:03 am
Forum: Announcement
Topic: New YouTube Channel - Beginner's Programming
Replies: 7
Views: 1538

Re: New YouTube Channel - Beginner's Programming

Good luck, great first video :)
by Mijikai
Fri Aug 25, 2023 4:10 pm
Forum: Coding Questions
Topic: Swap keyboard key functions
Replies: 13
Views: 1216

Re: Swap keyboard key functions

I came up with this, give it a try. Im not entirely sure on the ThreadMessage stuff but mby it works. KMAP Library: EnableExplicit ;KMAP - Library (installs a keyboard hook to swap keys) ;Version: dev.1 ;Author: Mijikai ;Platform: Windows Structure KEY_STRUCT old.a new.a EndStructure Global hook.i G...
by Mijikai
Sun Aug 20, 2023 9:51 am
Forum: Coding Questions
Topic: Clarification of Name Collisions
Replies: 8
Views: 482

Re: Clarification of Name Collisions

@spikey both codes behave exactly as i would expect them to - quite useful btw.
by Mijikai
Wed Aug 16, 2023 1:35 pm
Forum: Coding Questions
Topic: Getting a error by mpix256 example
Replies: 3
Views: 455

Re: Getting a error by mpix256 example

Glad it works now :)