1
Events / Re: ArcaOS 5.0.8 is out!
« on: June 03, 2023, 01:03:59 am »
The kernel has some memory fixes, mostly for certain UEFI systems with fragmented memory IIRC.
OS2World.com Forum is back !!!
Remember to visit OS2World at:
http://www.os2world.com
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.
jigsaw.res: jigsaw.rc jigsaw.h jigsaw.ico jighelp.rc jigsaw.dlg
wrc -r jigsaw.rc jighelp.rc
Based on JIGSAW.MAK.it is recommended to remove the existing .dooble directory before the new installation, right?
This call obtains an update region of a window.
#define INCL_WINWINDOWMGR /* Or use INCL_WIN, INCL_PM, */
#include <os2.h>
HWND hwnd; /* Handle of window whose update region is to be queried. */
HRGN hrgn; /* Handle of the window's update region. */
LONG lComplexity; /* Complexity of resulting region/error indicator. */
lComplexity = WinQueryUpdateRegion(hwnd, hrgn);
Hi Dave
You are right. I found an issue in my config.sys. I had a wipfc mess there.
Now it generates the .hlp and works, I also got the:
"<hanoi.ipf:125:1> Warning 31: Unable to find the id or name for this reference..."
..etc.
Regards
wipfc hanoi.ipf
Open Watcom OS/2 Help Compiler Version 2.0beta1 Limited Availability
Copyright (c) 2010 Open Watcom Contributors. All Rights Reserved.
Source code is available under the Sybase Open Watcom Public License.
See http://www.openwatcom.org/ for details.
<hanoi.ipf:125:1> Warning 31: Unable to find the id or name for this reference
<hanoi.ipf:133:1> Warning 31: Unable to find the id or name for this reference
<hanoi.ipf:141:1> Warning 31: Unable to find the id or name for this reference
<hanoi.ipf:149:1> Warning 31: Unable to find the id or name for this reference
<hanoi.ipf:157:1> Warning 31: Unable to find the id or name for this reference
<hanoi.ipf:165:1> Warning 31: Unable to find the id or name for this reference
and a hanoi.hlp file.SET WIPFC=W:\usr\share\os2\wipfc
to my config.sys.Compiling document with following Country Code, Code Page:
1, 850
<hanoi.ipf:167> Warning 208: Missing tag [euserdoc]
/* BITMAP IDR_BITMAP "..\\prodinfo.bmp"*/
int main ( int argc, char *argv[] )
{
HFILE hFile;
ULONG ulNumBytes, ulFileLength;
PBYTE pbImageBottom, pbBMP;
ULONG rc;
PBITMAPFILEHEADER2 pbmfHeader;
/* Check the number of command line arguments. */
if ( argc != 2 )
{
printf ( "usage: SHOW filein.bmp\n" );
printf ( " Jams ab 8-bit bitmap image directly to the upper\n" );
printf ( " left corner of the screen. Clipping is not exemplified.\n" )
;
printf ( " Note this code example works only if:\n" );
printf ( " 1) SMVDD.SYS is installed propery in four CONFIG.SYS\n" );
printf ( " (You can get this from the MMPM/2 install disks), and\n" );
printf ( " 2) Your adapter has an aperture enabled, and\n" );
printf ( " 3) Your adapter is in 8, 16, or 24 bit bit color mode, and\n" );
printf ( " 4) Your bitmap is 8-bit only (i.e. this does no color conv
ersion).\n" );
return ( 0 );
}
--- a/src/ext/x86/x86inc.asm
+++ b/src/ext/x86/x86inc.asm
@@ -85,7 +85,9 @@
%endif
%macro SECTION_RODATA 0-1 16
- %ifidn __OUTPUT_FORMAT__,win32
+ %ifidn __OUTPUT_FORMAT__,aout
+ SECTION .text
+ %elif __OUTPUT_FORMAT__,win32
SECTION .rdata align=%1
%elif WIN64
SECTION .rdata align=%1
dooble https://lite.qwant.com/
works fine here, simplest is to add it to the program object.
--- CNREZ.C.orig 2023-05-26 17:16:48.000000000 -0700
+++ CNREZ.C 2023-05-26 17:16:14.000000000 -0700
@@ -51,6 +51,7 @@
#define INCL_WINSTDCNR
#define INCL_WINSTDDLGS
#define INCL_WINWINDOWMGR
+#define INCL_WINDIALOGS
/**********************************************************************/
/*----------------------------- INCLUDES -----------------------------*/