16
Setup & Installation / REGEDIT2 export & import
« on: December 07, 2018, 01:50:15 am »
Is exporting and importing new settings (actually creating one file, to be imported per new install) safe and simple indeed?
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.
/* OS_DIFF.CMD */
CALL RxFuncAdd 'SysFileTree','RexxUtil','SysFileTree'
CALL SysFileTree 'C:\ECS\*','file.','FS'
DO i=1 TO file.0
SAY file.i
END i
CALL SysFileTree 'C:\OS2\*','file.','FS'
DO i=1 TO file.0
SAY file.i
END i
EXIT[code]
With file dates and file sizes, please.
The output would be nice-to-have, for example to upgrade components of OS/2 to an ArcaOS level. OO.EXE is probably an example of a random new OS component, but there are no formal upgrade packages for OS/2.
Please note this isn't about not buying ArcaOS. I'll need that for "modern" hardware anyway. I've already got an OO.EXE, but just didn't know that it's an OS component since eCS 2.x or ArcaOS.
void HTMLName(void)
{
int i,j,len;
len=strlen(buffer);
for (i=0;i<len;i++)
{
if (buffer[i]=='&')
{
for (j=len+3;j-4>i;j--)
buffer[j]=buffer[j-4];
buffer[++i]='a';
buffer[++i]='m';
buffer[++i]='p';
buffer[++i]=';';
buffer[len+4]=0;
len=strlen(buffer);
}
else if (buffer[i]=='á')
{
for (j=len+6;j-7>i;j--)
buffer[j]=buffer[j-7];
buffer[i]='&';
buffer[++i]='a';
buffer[++i]='a';
buffer[++i]='c';
buffer[++i]='u';
buffer[++i]='t';
buffer[++i]='e';
buffer[++i]=';';
buffer[len+7]=0;
len=strlen(buffer);
}
else if (buffer[i]=='¥')
{
...
}
else if (buffer[i]== ... )
{
...
}
}
return;
}
CALL SysCreateObject 'WPProgram','Why?','<WP_DESKTOP>','EXENAME=F:\OO\BAR.EXE;STARTUPDIR=F:\OO'
/**/
all=CharIn('HPFSTOOL.EXE',1,147476)
CALL CharOut 'HPFSTOOL.EXE'
PARSE VAR all . 'Green=Bitmap' rest
CALL CharOut 'Easter.Egg',rest
CALL CharOut 'Easter.Egg'
EXIT
- many compatibility enhancements and bugfixes suggested by Robert Meszaros.
- various small bugfixes noted by Jeff LaMarche and Max Alekseyev.
- updated to current gcc, autoconf, automake.
- added a TARGET_CPU=0 mode, for the C-only version.