Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Martin Iturbide

Pages: [1] 2 3 ... 267
1
Hello

Everytime I go back to this thread I remember Alex Taylor's joke at some Warpstock....

                            "Don't ask what old men have in their basement... "   ;D ;D ;D

I'm only looking for OS/2 Courses material  ;D ;D

I still have the crazy dream to one day complete all the downloads of the IBM OS/2 Courseware material.

If you have one that I'm missing, let me know. Remember I can ask permission from IBM to republish it.

Regards

2
Programming / Re: Compiling a PM sample with GCC (2023)
« on: Today at 12:17:13 am »
Hi

I removed some of the warnings, and I think the sample is running as expected showing some listbox (I hope).
https://github.com/OS2World/DEV-SAMPLES-C-PM-ListBox2

I have these warnings that I need help to remove.
Code: [Select]
gcc -Wall -Zomf -c -O2 ListBox.c -o ListBox.obj
In file included from C:/usr/include/os2.h:39,
                 from ListBox.c:64:
ListBox.c: In function 'UpdateScrollBars':
ListBox.c:448:30: warning: operation on 'plbw->iVertScroll' may be undefined [-Wsequence-point]
  448 |           (plbw->iVertScroll = plbw->cVertScroll = 0) :
      |           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
ListBox.c:472:27: warning: operation on 'plbw->iHorzScroll' may be undefined [-Wsequence-point]
  472 |        (plbw->iHorzScroll = plbw->iHorzScroll = 0) :
      |        ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
ListBox.c: In function 'ListBoxWndProc':
ListBox.c:2553:11: warning: suggest explicit braces to avoid ambiguous 'else' [-Wdangling-else]
 2553 |        if ( ((flStyle = WinQueryWindowULong(hWnd, QWL_STYLE)) & 0x0000ffffUL) != (plbw->flStyle & 0x0000ffffUL) )
      |           ^

Regards

3
Games / PMRobots 1.4
« on: June 09, 2023, 06:17:27 pm »
Hello

I recompiled this little game called PMRobots with gcc, just in case someone wants to give it a spin.

It is played with the mouse. The goal is to make the Robots crash to move to the next level.

Here it is the source code just in case:
https://github.com/OS2World/GAME-PUZZLE-PM_Robots

Regards


4
Programming / Re: Compiling a PM sample with GCC (2023)
« on: June 08, 2023, 07:31:41 pm »
Thanks Dave

With your tip it compiles and the sample runs just using with gcc. I have a lot of warning that I have to check, I think I will turn crazy with the braces.

FYI: This little picture helps me with my English, I learned to code in C long time ago in Spanish. And it had been fun to re-learn that stuff.

5
Comments, Suggestions & Questions / Re: Hobbes (Files) Reoganization
« on: June 08, 2023, 06:59:34 pm »
Hi Again.

Getting into again the reorganizing again, I will put some efforts to finish
"/pub/windows".

One with thing with "/pub/dos", I don't know where to put dos5iso.zip which it says is the "IBM DOS 5.0 ISO font supplement"

And I'm going little by little trying to include all the OS/2 public (Freeware/Shareware/OpenSource/Demos) software I can find on hobbes. That is a long and ongoing thing.

There is this rule we set at the beginning or the reorganization , "Hobbes will only maintain the latest version of the software, and some exceptions apply."  I still have also the crazy dream to have a secondary repository with new and old version of all OS/2 Software following the same directory structure of hobbes. I'm doing that on my hard drive, and I published a backup on 2023-01-15. (https://archive.org/download/OS2FileRepo_2023-01-15). But the energy is running low these months  ;D

Regards

6
Programming / Re: Compiling a PM sample with GCC (2023)
« on: June 07, 2023, 06:54:26 pm »
Hi

Now I'm going after this one:
https://github.com/OS2World/DEV-SAMPLES-C-PM-ListBox2

I haven't fixed the warnings yet. I focused on having the program to compile first. After some effort DRIVER.EXE and LISTBOX.DLL are compiling, but DRIVER.EXE is not showing anything.

I get this on the POPUPLOG
Quote
06-07-2023  11:42:01  SYS2070  PID 017a  TID 0001  Slot 0084
C:\DEV\DEV-SAMPLES-C-PM-LISTBOX2\DRIVER.EXE
DRIVER->LISTBOX.1
182

Any help to show the sample is welcome, if that can be possible, I will go after the warnings.

Regards

7
Programming / Re: Compiling a PM sample with GCC (2023)
« on: June 07, 2023, 06:24:32 pm »
Thanks Dave.

I made your changes and I think it is good enough for the sample.

It's done for me, and I posted it here  to the public.
https://github.com/OS2World/DEV-SAMPLES-C-PM-framctl

Regards

8
Programming / Re: Compiling a PM sample with GCC (2023)
« on: June 07, 2023, 04:19:10 am »
Hi

Now I'm trying framctlit is a nice sample.
https://github.com/OS2World/DEV-SAMPLES-C-PM-framctl

It compiles, and removed all warnings I can, but I still get this warning on framctl3.

Quote
gcc -Wall -Zomf -c -O2 framectl.c -o framectl.obj
framectl.c: In function 'FrameWndProc':
framectl.c:363:14: warning: unused variable 'rc' [-Wunused-variable]
  363 |         BOOL rc = (BOOL)DefFrameWndProc( hWnd, msg, mp1, mp2 );
      |              ^~
Even that is says the variable is unused, if I comment rc, the sample does not longer run. I need to keep this line and warning to have the sample working. Any ideas if there is something else I can do to remove this warning?

Regards

9
Programming / Re: Compiling a PM sample with GCC (2023)
« on: June 07, 2023, 04:09:39 am »
Thanks Flashback.

It run fine here with 16M Colors on the VM.

Regards

10
Applications / TOR and Dooble
« on: June 06, 2023, 01:49:40 am »
Hi

Paul ported a new version of TOR:
https://smedley.id.au/tmp/tor-0.4.7.13-os2-20230606.zip

Can someone let me know if I'm configuring Dooble right?
It seems that some sites no longer see my real IP, but some https sites does not work.

Regards

11
Programming / Re: Compiling a PM sample with GCC (2023)
« on: June 05, 2023, 11:02:59 pm »
Hello

Thanks for the feedback. The show sample (Jet) is working fine.
https://github.com/OS2World/DEV-SAMPLES-C-PM-DIVE-ShowJet

My only question remains, why it does not work on 16M Colors? Is some limitation there that I don't know? I always used to set the colors to 16M and didn't have any problems that I can notice, until working with this sample.

Regards

12
Programming / Re: Compiling a PM sample with GCC (2023)
« on: June 05, 2023, 05:18:12 pm »
Thanks for the feedback

Dave, I have DIVE.DLL on the libpath. I had tried in two enviroments, the development VM and a Thinkpad L420 and in both I can not see any image on the window.

I'm attaching the "Query Caps" of the Thinkpad L420. should I can try putting the colors on 64K?
Update: Indeed, I changed it to 64K and now I can see the image (very fast)

I will check Lars' suggestion to see if it slows down.

Regards

13
Programming / Re: Compiling a PM sample with GCC (2023)
« on: June 05, 2023, 05:56:12 am »
Thanks Dave. Jigsaw now is fine with me.
https://github.com/OS2World/DEV-SAMPLES-C-PM-Jigsaw

I'm trying now this different "show" from the OS/2 Warp 4 Toolkit that works with DIVE.
https://github.com/OS2World/DEV-SAMPLES-IBM_Dev_Toolkit_Samples/tree/master/samples/mm/DIVE

I removed the warning, it compiles, but the image does not display on it.

Regards

14
Applications / Re: Java applications
« on: June 03, 2023, 11:29:06 pm »
Hi

Phex 3.4.2.116 runs, but I'm not sure if the network and servers listed there still works.
http://prdownloads.sourceforge.net/phex/phex_3.4.2.116.zip

Regards

15
Applications / Re: Java applications
« on: June 03, 2023, 10:52:53 pm »
Hi, I'm just checking the old news archive.

There used to be a Geometria version that used to run with our Java, but I can not find it anymore.
http://www.geocentral.net/geometria/
I don't understand this, you can download it from my Java pages, what is the problem?

Hi Joop. You are right. I got confused with Geogebra, and I thought that Geometria was not on your site, but it is there. Thanks.

Pages: [1] 2 3 ... 267