
                   comp.os.os2.programmer.misc      (Usenet)

                 Saturday, 27-Nov-1999 to Friday, 03-Dec-1999

+----------------------------------------------------------------------------+

From: bh@silk.apana.org.au                              27-Nov-99 12:43:25
  To: All                                               27-Nov-99 03:29:02
Subj: Re: Manually loaded DLL won't work?

From: bh@silk.apana.org.au (Brian Havard)

someone@somewhere.com (Charles Cruden) writes:

>On 24 Nov 1999 00:05:44 +1100, bh@silk.apana.org.au (Brian Havard)
>wrote:

>>someone@somewhere.com (Charles Cruden) writes:
>>
>>>The programs are being compiled/linked with Watcom 10.6 using a 32-bit
>>>flat memory model.
>>
>>I found it works if you use the 16 bit version of DosQueryProcAddr(), 
>>DosGetProcAddr(). As in (lifted from FC/2 source):
>>
>>extern APIRET16 APIENTRY16 (*winSetTitleAndIcon)( PSZ16, PSZ16 );
>>...
>>DosGetProcAddr( hPMSHAPI, (char *)MK_FP(0,ORD_WINSETTITLEANDICON),
&winSetTitleAndIcon ) 
>>
>>This is with Watcom C++ v11 

>I tried this and found that DosGetProcAddr produced an undefined
>symbol.  From the headers, it would seem it's only defined in the OS/2
>2.1 os2.h: perhaps it's only available in a 16-bit object file?  How
>did you get your example to compile in a 32-bit executable?

Oh, yeah, forgot that little detail. I defined the import using 
"imp DOSGETPROCADDR DOSCALLS.45" to wlink.

The ordinal (45) comes from bseord.h
The prototype is 

extern "C" {
  APIRET16 APIENTRY16 DosGetProcAddr( USHORT, PSZ16, PVOID16 );
}

Which is derived from the prototype in os21x\bsedos.h (that's OS/2 v1.x,
not v2.1 BTW).
-- 

______________________________________________________________________________
 | Brian Havard                   | "He is not the messiah!                  
|
 | brianh at kheldar.apana.org.au | He's a very naughty boy!" - Life of Brian
|

------------------------------------------------------------------------------

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Australian Public Access Network Association (1:109/42)

+----------------------------------------------------------------------------+

From: jacqueshenry@compuserve.com                       27-Nov-99 11:07:16
  To: All                                               27-Nov-99 10:30:01
Subj: Machine type and frquency and ...

From: "JH" <jacqueshenry@compuserve.com>

Hi,
How to know the machine caracteristics (Type,frequency,and so on...) in C or
C++ ?
Thancks



--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: CompuServe Interactive Services (1:109/42)

+----------------------------------------------------------------------------+

From: abuse@orac.clara.co.uk                            27-Nov-99 16:18:14
  To: All                                               27-Nov-99 14:20:21
Subj: Re: Compiler bugs in VAC++ 3.0 FP8

From: abuse@orac.clara.co.uk (Paul Ratcliffe)

On Fri, 26 Nov 1999 00:34:23 -0500 (EST), Mike Ruskai
<retsiemynnaht@spammoc.beoohaygone.net> wrote:

>>>    for (i=1; i<14; i++)
>>>        {
>>>        lineBuff[i]=horzBar;
>>>        }
>
>Incidentally, I've replaced all these loops with memset() calls.  The above
>would be this, instead:
>
>memset(lineBuff+1, horzBar, 13);

Much better.

>If you're interested, you can grab the altered DisplayFunctions.c file here:
>
>http://home.att.net/~thanny/dispfunc.zip

It would also be nice if you could put a Makefile or whatever in the next
Hpfsutil archive.

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: The Floppy BBS (1:109/42)

+----------------------------------------------------------------------------+

From: ckennedy@frugalsoft.com                           28-Nov-99 00:28:29
  To: All                                               28-Nov-99 00:25:05
Subj: notescpp.lib problems in a DLL

From: ckennedy@frugalsoft.com (Chris J. Kennedy)

Hi -

I have created a .dll using some of the Lotus Notes developer sample 
code.  This .dll links in notescpp.lib.  I then dynamically load the 
dll I created when I run my program.

Unfortunately, when I unload the .dll I created, either explicitly or 
just when my program exits, I get the following error popup:

The system could not demand load the application's segment.
ONMAIL->LCPPO201__DT__8LNSTRINGFV is in error.

"ONMAIL" is the name of my .dll.
It suggested looking at help for SYS127:

SYS0127: The specified procedure could not be found.
EXPLANATION: The specified procedure is not in the module being 
searched or in the Exitlist routine list.
ACTION: Check which procedure is being requested and make sure that it
is in the module or Exitlist routine list.

I'm guessing that maybe the Notes .dll is somehow registering a 
function in the exitlist that I have to implement?  I doubt that's it.

Any ideas?

Thanks,
Chris


http://www.frugalsoft.com

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Frugal Software (1:109/42)

+----------------------------------------------------------------------------+

From: retsiemynnaht@spammoc.beoohaygon...               28-Nov-99 06:20:18
  To: All                                               28-Nov-99 10:27:19
Subj: Re: Compiler bugs in VAC++ 3.0 FP8

Message sender: retsiemynnaht@spammoc.beoohaygone.net

From: "Mike Ruskai" <retsiemynnaht@spammoc.beoohaygone.net>

On Sat, 27 Nov 1999 16:18:29 GMT, Paul Ratcliffe wrote:

>On Fri, 26 Nov 1999 00:34:23 -0500 (EST), Mike Ruskai
><retsiemynnaht@spammoc.beoohaygone.net> wrote:
>
>>>>    for (i=1; i<14; i++)
>>>>        {
>>>>        lineBuff[i]=horzBar;
>>>>        }
>>
>>Incidentally, I've replaced all these loops with memset() calls.  The above
>>would be this, instead:
>>
>>memset(lineBuff+1, horzBar, 13);
>
>Much better.
>
>>If you're interested, you can grab the altered DisplayFunctions.c file here:
>>
>>http://home.att.net/~thanny/dispfunc.zip
>
>It would also be nice if you could put a Makefile or whatever in the next
>Hpfsutil archive.

I'll do that in the next version I put on Hobbes.


--
 - Mike

Remove 'spambegone.net' and reverse to send e-mail.


--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: TLF (1:109/42)

+----------------------------------------------------------------------------+

From: mamodeo@stny.rr.com                               29-Nov-99 12:40:11
  To: All                                               29-Nov-99 16:52:21
Subj: Profile (Prf) API calls and multithreaded apps

From: Marty <mamodeo@stny.rr.com>

Does anyone know of any issues that arise when accessing the same INI
file from multiple threads of the same program?  If I perform a PrfOpen
action in one thread and update the INI file with a PrfWriteProfileData
in another thread, it doesn't seem to completely flush the data
correctly so it can be up to date back in the first thread.  Eventually
the correct data is realized by the first thread, but not always when I
need it to happen.  Do I need to do a PrfOpen and get a different HINI
for each thread that needs to access the INI file?  Will this help?

- Marty

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: IBM Global Services North -- Burlington, Vermont,
(1:109/42)

+----------------------------------------------------------------------------+

From: retsiemynnaht@spammoc.beoohaygon...               29-Nov-99 14:45:28
  To: All                                               29-Nov-99 16:52:21
Subj: Re: Profile (Prf) API calls and multithreaded apps

Message sender: retsiemynnaht@spammoc.beoohaygone.net

From: "Mike Ruskai" <retsiemynnaht@spammoc.beoohaygone.net>

On Mon, 29 Nov 1999 12:40:23 -0500, Marty wrote:

>Does anyone know of any issues that arise when accessing the same INI
>file from multiple threads of the same program?  If I perform a PrfOpen
>action in one thread and update the INI file with a PrfWriteProfileData
>in another thread, it doesn't seem to completely flush the data
>correctly so it can be up to date back in the first thread.  Eventually
>the correct data is realized by the first thread, but not always when I
>need it to happen.  Do I need to do a PrfOpen and get a different HINI
>for each thread that needs to access the INI file?  Will this help?

It might.  I can't think of a good reason for the same handle across threads
to not work, though.

Another approach you might try is closing and reopening the profile after
each change.  

Of course, you'd want to use a DosEnterCritSec() during the process of
closing and reopening the profile, so another thread doesn't try to use the
handle while it's not valid.

I think that's more likely to work than re-opening the profile with a
different handle - if the same handle doesn't see the changes, it's a good
bet that the changes won't be seen by another handle.


--
 - Mike

Remove 'spambegone.net' and reverse to send e-mail.


--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: TLF (1:109/42)

+----------------------------------------------------------------------------+

From: mamodeo@stny.rr.com                               29-Nov-99 15:41:04
  To: All                                               29-Nov-99 16:52:21
Subj: Re: Profile (Prf) API calls and multithreaded apps

From: Marty <mamodeo@stny.rr.com>

Mike Ruskai wrote:
> 
> On Mon, 29 Nov 1999 12:40:23 -0500, Marty wrote:
> 
> >Does anyone know of any issues that arise when accessing the same INI
> >file from multiple threads of the same program?  If I perform a PrfOpen
> >action in one thread and update the INI file with a PrfWriteProfileData
> >in another thread, it doesn't seem to completely flush the data
> >correctly so it can be up to date back in the first thread.  Eventually
> >the correct data is realized by the first thread, but not always when I
> >need it to happen.  Do I need to do a PrfOpen and get a different HINI
> >for each thread that needs to access the INI file?  Will this help?
> 
> It might.  I can't think of a good reason for the same handle across threads
> to not work, though.
> 
> Another approach you might try is closing and reopening the profile after
> each change.
> 
> Of course, you'd want to use a DosEnterCritSec() during the process of
> closing and reopening the profile, so another thread doesn't try to use the
> handle while it's not valid.

Already tried this approach to no avail unfortunately.  It's somehow
caching or buffering the updates to the file on a thread-by-thread
basis, or at least seems to.  Strangely, closing the handle and
reopening it doesn't seem to flush this "cache".

> I think that's more likely to work than re-opening the profile with a
> different handle - if the same handle doesn't see the changes, it's a good
> bet that the changes won't be seen by another handle.

That's about the only option I have left to try right now.  The only way
I was able to hack it in the past was to perform boatloads of other Prf
operations and eventually this "cache" got filled up and it needed to go
back to the physical file, but this hack isn't guaranteed to always work
and is not in my present case.

- Marty

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: IBM Global Services North -- Burlington, Vermont,
(1:109/42)

+----------------------------------------------------------------------------+

From: retsiemynnaht@spammoc.beoohaygon...               30-Nov-99 06:38:05
  To: All                                               30-Nov-99 10:24:19
Subj: Re: Profile (Prf) API calls and multithreaded apps

Message sender: retsiemynnaht@spammoc.beoohaygone.net

From: "Mike Ruskai" <retsiemynnaht@spammoc.beoohaygone.net>

On Mon, 29 Nov 1999 15:41:08 -0500, Marty wrote:

>Mike Ruskai wrote:

[snip]

>> I think that's more likely to work than re-opening the profile with a
>> different handle - if the same handle doesn't see the changes, it's a good
>> bet that the changes won't be seen by another handle.
>
>That's about the only option I have left to try right now.  The only way
>I was able to hack it in the past was to perform boatloads of other Prf
>operations and eventually this "cache" got filled up and it needed to go
>back to the physical file, but this hack isn't guaranteed to always work
>and is not in my present case.

Does the thread which made the update always have immediate access to the
changed values?

If so, and if your other method doesn't work, then there's a kludge you might
try, though it'd take a bit of work.

Start a separate thread that does nothing but wait for requests to read/write
profile data.  Use a named pipe to receive the requests, which should include
an address where the results should be stored (so you don't have to worry
about the data being retrieved by the wrong thread).  

Things like that are why the term 'kludge' exists, but it might work if
nothing else does.


--
 - Mike

Remove 'spambegone.net' and reverse to send e-mail.


--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: TLF (1:109/42)

+----------------------------------------------------------------------------+

From: sonic@sega.net                                    30-Nov-99 22:01:01
  To: All                                               30-Nov-99 19:49:24
Subj: Grabbit two now available for FREE  7175

From: sonic@sega.net

This amazing little has now got a whole lot better, and Costech is please to
offer it to our friends for free.  Enjoy the power 

http://www.costech.com/Products/Grabit/grabit.html
gmzsfqrlddutouzppyvqflxbmhpr

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Sympatico (1:109/42)

+----------------------------------------------------------------------------+

From: deathlok@cww.de                                   01-Dec-99 01:01:22
  To: All                                               01-Dec-99 00:35:05
Subj: vider drivers

From: Pressenna Sockalingasamy <deathlok@cww.de>

Hi guys,

does anyone of you know about video driver development, 
and could point my to some resources (in the net) about that?
I'm especially interested in openGL hw acceleration.

--
CU/2
Pressenna ...

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Cityweb News Service (1:109/42)

+----------------------------------------------------------------------------+

From: robmv@promca.com                                  30-Nov-99 12:04:04
  To: All                                               01-Dec-99 00:35:05
Subj: (1/3) CoPilot Porting help (PalmPilot emulator)

From: Robert Marcano <robmv@promca.com>

Este es un mensaje de varias partes en formato MIME.
--------------2652BE8D507F826054FB0C6D
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

I'm starting a personal project to migrate CoPilot to OS/2, but I need
some help to start.

I'm using Windows source code and it include a Microsoft Developer
Studio Project File

Can somebody export this project file to makefile format using
Microsoft Developer Studio? Please send it to me by email...
thanks

--------------2652BE8D507F826054FB0C6D
Content-Type: text/plain; charset=us-ascii;
 name="Emulator.dsp"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="Emulator.dsp"

# Microsoft Developer Studio Project File - Name="Emulator" - Package
Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **

# TARGTYPE "Win32 (x86) Application" 0x0101

CFG=Emulator - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE 
!MESSAGE NMAKE /f "Emulator.mak".
!MESSAGE 
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE 
!MESSAGE NMAKE /f "Emulator.mak" CFG="Emulator - Win32 Debug"
!MESSAGE 
!MESSAGE Possible choices for configuration are:
!MESSAGE 
!MESSAGE "Emulator - Win32 Release" (based on "Win32 (x86) Application")
!MESSAGE "Emulator - Win32 Debug" (based on "Win32 (x86) Application")
!MESSAGE "Emulator - Win32 Release_Internal" (based on "Win32 (x86)
Application")
!MESSAGE "Emulator - Win32 Release_Profile" (based on "Win32 (x86)
Application")
!MESSAGE "Emulator - Win32 Release_Internal_Profile" (based on "Win32 (x86)
Application")
!MESSAGE 

# Begin Project
# PROP AllowPerConfigDependencies 0


CPP=cl.exe
MTL=midl.exe
RSC=rc.exe

!IF  "$(CFG)" == "Emulator - Win32 Release"

# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Release"
# PROP BASE Intermediate_Dir "Release"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX
/FD /c
# ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D INCLUDE_SECRET_STUFF=0 /D
HAS_PROFILING=0 /Yu"EmulatorCommon.h" /FD @CppOptions.txt /c
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /i ".." /i "..\SrcWin" /i "..\SrcWin\Res" /i "..\SrcShared" 
/i "..\..\SrcShared" /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib
odbccp32.lib /nologo /subsystem:windows /machine:I386
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comctl32.lib
comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib
odbc32.lib odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows
/map /machine:I386
# SUBTRACT LINK32 /debug

!ELSEIF  "$(CFG)" == "Emulator - Win32 Debug"

# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "Debug"
# PROP BASE Intermediate_Dir "Debug"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "Debug"
# PROP Intermediate_Dir "Debug"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D
"_WINDOWS" /YX /FD /c
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D
INCLUDE_SECRET_STUFF=1 /D HAS_PROFILING=1 /FR /Yu"EmulatorCommon.h" /FD
@CppOptions.txt /c
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /i ".." /i "..\SrcWin" /i "..\SrcWin\Res" /i "..\SrcShared" 
/i "..\..\SrcShared" /d "_DEBUG" /d "INCLUDE_SECRET_STUFF"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib
odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comctl32.lib
comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib
odbc32.lib odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows
/debug /machine:I386 /out:"Debug/Emulator_Debug.exe" /pdbtype:sept

!ELSEIF  "$(CFG)" == "Emulator - Win32 Release_Internal"

# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Release_Internal"
# PROP BASE Intermediate_Dir "Release_Internal"
# PROP BASE Ignore_Export_Lib 0
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release_Internal"
# PROP Intermediate_Dir "Release_Internal"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX
/FD /c
# ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D INCLUDE_SECRET_STUFF=1 /D
HAS_PROFILING=0 /Yu"EmulatorCommon.h" /FD @CppOptions.txt /c
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /i ".." /i "..\SrcWin" /i "..\SrcWin\Res" /i "..\SrcShared" 
/i "..\..\SrcShared" /d "NDEBUG" /d INCLUDE_SECRET_STUFF=1
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comctl32.lib
comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib
odbc32.lib odbccp32.lib version.lib /nologo /subsystem:windows /map
/machine:I386
# SUBTRACT BASE LINK32 /debug
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comctl32.lib
comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib
odbc32.lib odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows
/map /machine:I386 /out:"Release_Internal/Emulator_Internal.exe"
# SUBTRACT LINK32 /debug

!ELSEIF  "$(CFG)" == "Emulator - Win32 Release_Profile"

# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Emulator"
# PROP BASE Intermediate_Dir "Emulator"
# PROP BASE Ignore_Export_Lib 0
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release_Profile"
# PROP Intermediate_Dir "Release_Profile"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX
/FD /c
# ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D INCLUDE_SECRET_STUFF=0 /D
HAS_PROFILING=1 /Yu"EmulatorCommon.h" /FD @CppOptions.txt /c
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /i ".." /i "..\SrcWin" /i "..\SrcWin\Res" /i "..\SrcShared" 
/i "..\..\SrcShared" /d "NDEBUG" /d HAS_PROFILING=1
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comctl32.lib
comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib
odbc32.lib odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows
/map /machine:I386
# SUBTRACT BASE LINK32 /debug
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comctl32.lib
comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib
odbc32.lib odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows
/map /machine:I386 /out:"Release_Profile/Emulator_Profile.exe"
# SUBTRACT LINK32 /debug

!ELSEIF  "$(CFG)" == "Emulator - Win32 Release_Internal_Profile"

# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Emulator___Win32_Release_Internal_Profile"
# PROP BASE Intermediate_Dir "Emulator___Win32_Release_Internal_Profile"
# PROP BASE Ignore_Export_Lib 0
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release_Internal_Profile"
# PROP Intermediate_Dir "Release_Internal_Profile"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D INCLUDE_SECRET_STUFF=1
/D HAS_PROFILING=0 /Yu"EmulatorCommon.h" /FD @CppOptions.txt /c
# ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D INCLUDE_SECRET_STUFF=1 /D
HAS_PROFILING=1 /Yu"EmulatorCommon.h" /FD @CppOptions.txt /c
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD BASE RSC /l 0x409 /i ".." /i "..\SrcWin" /i "..\SrcWin\Res" /i
"..\SrcShared" /i "..\..\SrcShared" /d "NDEBUG" /d INCLUDE_SECRET_STUFF=1
# ADD RSC /l 0x409 /i ".." /i "..\SrcWin" /i "..\SrcWin\Res" /i "..\SrcShared" 
/i "..\..\SrcShared" /d "NDEBUG" /d INCLUDE_SECRET_STUFF=1
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comctl32.lib
comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib
odbc32.lib odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows
/map /machine:I386 /out:"Release_Internal/Emulator_Internal.exe"
# SUBTRACT BASE LINK32 /debug
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comctl32.lib
comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib
odbc32.lib odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows
/map /machine:I386
/out:"Release_Internal_Profile/Emulator_Internal_Profile.exe"
# SUBTRACT LINK32 /debug

!ENDIF 

# Begin Target

# Name "Emulator - Win32 Release"
# Name "Emulator - Win32 Debug"
# Name "Emulator - Win32 Release_Internal"
# Name "Emulator - Win32 Release_Profile"
# Name "Emulator - Win32 Release_Internal_Profile"
# Begin Group "Emulator - Windows"

# PROP Default_Filter ""
# Begin Group "Resources"

# PROP Default_Filter ""
# Begin Source File

SOURCE=..\SrcWin\Res\Connection.bmp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Res\Document.ico
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Res\Emulator.ico
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Res\Emulator.rc
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Res\Finger.cur
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Res\resource.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Strings.r.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Res\Strings.rc

!IF  "$(CFG)" == "Emulator - Win32 Release"

# PROP Exclude_From_Build 1

!ELSEIF  "$(CFG)" == "Emulator - Win32 Debug"

# PROP Exclude_From_Build 1

!ELSEIF  "$(CFG)" == "Emulator - Win32 Release_Internal"

# PROP BASE Exclude_From_Build 1
# PROP Exclude_From_Build 1

!ELSEIF  "$(CFG)" == "Emulator - Win32 Release_Profile"

# PROP BASE Exclude_From_Build 1
# PROP Exclude_From_Build 1

!ELSEIF  "$(CFG)" == "Emulator - Win32 Release_Internal_Profile"

# PROP BASE Exclude_From_Build 1
# PROP Exclude_From_Build 1

!ENDIF 

# End Source File
# Begin Source File

SOURCE=..\SrcShared\Strings.txt
# End Source File
# End Group
# Begin Source File

SOURCE=..\SrcWin\About.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\About.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Application.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Application.h
# End Source File
# Begin Source File

SOURCE="..\..\..\..\Program Files\Microsoft Visual
Studio\VC98\Include\BASETSD.H"
# End Source File
# Begin Source File

SOURCE=.\CppOptions.txt
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Document.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Document.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\DownloadROM.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\DownloadROM.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Emulator.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Emulator.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\EmulatorCommon.cpp
# ADD CPP /Yc
# End Source File
# Begin Source File

SOURCE=..\SrcWin\EmulatorCommon.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\HostPreferences.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\HostPreferences.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Hyperlink.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Hyperlink.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\LCD.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\LCD.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\MMFMessaging.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\MMFMessaging.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Platform.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Platform_Files.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Platform_Files_Win.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Platform_NetLib.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Platform_NetLib_Sck.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Platform_Win.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\StartMenu.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcWin\StartMenu.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\Tracing.cpp
# End Source File
# End Group
# Begin Group "Emulator - Shared"

# PROP Default_Filter ""
# Begin Group "Includes"

# PROP Default_Filter ""
# Begin Group "Shared Includes"

# PROP Default_Filter ""
# Begin Group "Palm"

# PROP Default_Filter ""
# Begin Group "Hardware"

# PROP Default_Filter ""
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\Hardware\Hardware.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\Hardware\HardwareAustin.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\Hardware\HardwareEZ.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\Hardware\HardwarePrv.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\Hardware\HardwareTD1.h
# End Source File
# Begin Source File

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: =?iso-8859-1?Q?Programaci=F3n?= Mecanizada C.A. (
(1:109/42)

+----------------------------------------------------------------------------+

From: robmv@promca.com                                  30-Nov-99 12:04:04
  To: All                                               01-Dec-99 00:35:05
Subj: (2/3) CoPilot Porting help (PalmPilot emulator)

SOURCE=..\SrcShared\Palm\Incs\Hardware\M68328Hwr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\Hardware\M68681Hwr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\Hardware\M68EZ328Hwr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\Hardware\M68KHwr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\Hardware\SED1375Hwr.h
# End Source File
# End Group
# Begin Group "International"

# PROP Default_Filter ""
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\International\IntlMgr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\International\TextMgr.h
# End Source File
# End Group
# Begin Group "System"

# PROP Default_Filter ""
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\Crc.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\DataMgr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\DataPrv.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\DebugPrv.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\DLCommon.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\DLServer.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\FeatureMgr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\Globals.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\KeyMgr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\KeyPrv.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\MemoryMgr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\MemoryPrv.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\MemoryPrvNew.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\NetBitUtils.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\NetMgr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\PenMgr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\Preferences.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\SerialLinkMgr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\SerialLinkPrv.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\SerialMgr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\SysEvtMgr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\SysEvtPrv.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\SystemMgr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\SystemMgr.rh
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\SystemPkt.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\SystemPrv.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\SysTraps.h
# End Source File
# End Group
# Begin Group "UI"

# PROP Default_Filter ""
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\CharAttr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\Chars.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\Control.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\Event.H
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\System\FatalAlert.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\Field.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\Find.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\Font.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\Form.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\Init.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\InsPoint.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\List.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\Rect.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\ScrollBar.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\Table.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\UICommon.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\Window.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\UI\WindowNew.h
# End Source File
# End Group
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\AppBuildRules.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\BuildRules.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\Common.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\PalmPack.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\PalmPackPop.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\Pilot.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\Incs\SysBuildRules.h
# End Source File
# End Group
# Begin Source File

SOURCE=..\SrcShared\String2
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Switches.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\UAE.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\xstring2
# End Source File
# End Group
# Begin Group "Images"

# PROP Default_Filter ".i"
# Begin Source File

SOURCE=..\SrcShared\Images\EnglishAustinLarge.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\EnglishAustinSmall.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\160_jpeg_Win\IBMWP16W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\320_jpeg_Win\IBMWP32W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\160_jpeg_Win\IBMWPc316W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\320_jpeg_Win\IBMWPc332W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\160_jpeg_Win\Palm316W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\320_jpeg_Win\Palm332W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\160_jpeg_Win\Palm3e16W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\320_jpeg_Win\Palm3e32W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\160_jpeg_Win\Palm3x16W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\320_jpeg_Win\Palm3x32W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\160_jpeg_Win\Palm516W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\320_jpeg_Win\Palm532W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\160_jpeg_Win\Palm716W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\320_jpeg_Win\Palm732W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\160_jpeg_Win\Pil500016W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\320_jpeg_Win\Pil500032W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\160_jpeg_Win\PilPro16W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\320_jpeg_Win\PilPro32W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\160_jpeg_Win\Sym150016W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\320_jpeg_Win\Sym150032W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\160_jpeg_Win\Sym174016W.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Images\320_jpeg_Win\Sym174032W.i
# End Source File
# End Group
# Begin Source File

SOURCE=..\SrcWin\AppBuildRulesMSC.h
# End Source File
# Begin Source File

SOURCE="..\SrcShared\ATraps.h"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_DRAM.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_Dummy.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_MC68328.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_MC68681.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_MC68EZ328.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_PLD.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_ROM.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_SED1375.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_SRAM.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\bytesex.h
# End Source File
# Begin Source File

SOURCE="..\SrcShared\Byteswapping.h"
# End Source File
# Begin Source File

SOURCE="..\SrcShared\CGremlins.h"
# End Source File
# Begin Source File

SOURCE="..\SrcShared\CGremlinsStubs.h"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\ChunkFile.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\CPU_MT.h
# End Source File
# Begin Source File

SOURCE="..\SrcShared\CPU_REG.h"
# End Source File
# Begin Source File

SOURCE="..\SrcShared\DebugMgr.h"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\EmMapFile.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\EmRPC.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\EmulatorTypes.h
# End Source File
# Begin Source File

SOURCE=..\SrcWin\endian.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\ErrorHandling.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Hordes.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\HostControl.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\HostControlPrv.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\JPEGGlue.h
# End Source File
# Begin Source File

SOURCE="..\SrcShared\LoadApplication.h"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Logging.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Marshal.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\MetaMemory.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Miscellaneous.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\PalmHeap.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\PPStream.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\PreferenceMgr.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Profiling.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Quantizer.h
# End Source File
# Begin Source File

SOURCE="..\SrcShared\RAM_ROM.h"
# End Source File
# Begin Source File

SOURCE="..\SrcShared\ROMStubs.h"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\SessionFile.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\SkinData.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\SkinData.i
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Skins.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\SLP.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\SocketMessaging.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Startup.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\StreamHandle.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\StringConversions.h
# End Source File
# Begin Source File

SOURCE="..\SrcShared\StringData.h"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\SystemPacket.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Tracing.h
# End Source File
# Begin Source File

SOURCE="..\SrcShared\TrapPatches.h"
# End Source File
# Begin Source File

SOURCE="..\SrcShared\UAE_Utils.h"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UART.h
# End Source File
# End Group
# Begin Source File

SOURCE="..\SrcShared\ATraps.cpp"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_DRAM.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_Dummy.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_MC68328.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_MC68681.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_MC68EZ328.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_PLD.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_ROM.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_SED1375.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Bank_SRAM.cpp
# End Source File
# Begin Source File

SOURCE="..\SrcShared\Byteswapping.cpp"
# End Source File
# Begin Source File

SOURCE="..\SrcShared\CGremlins.cpp"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\CGremlinsStubs.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\ChunkFile.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\CPU_MT.cpp
# End Source File
# Begin Source File

SOURCE="..\SrcShared\CPU_REG.cpp"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Palm\System\Src\Crc.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE="..\SrcShared\DebugMgr.cpp"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\EmMapFile.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\EmRPC.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\ErrorHandling.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Hordes.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\HostControl.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\JPEGGlue.cpp
# End Source File
# Begin Source File

SOURCE="..\SrcShared\LoadApplication.cpp"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Logging.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Marshal.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\MetaMemory.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Miscellaneous.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\PalmHeap.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\PPStream.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\PreferenceMgr.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Profiling.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Quantizer.cpp
# End Source File
# Begin Source File

SOURCE="..\SrcShared\RAM_ROM.cpp"
# End Source File
# Begin Source File

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: =?iso-8859-1?Q?Programaci=F3n?= Mecanizada C.A. (
(1:109/42)

+----------------------------------------------------------------------------+

From: robmv@promca.com                                  30-Nov-99 12:04:04
  To: All                                               01-Dec-99 00:35:05
Subj: (3/3) CoPilot Porting help (PalmPilot emulator)

SOURCE="..\SrcShared\ROMStubs.cpp"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\SessionFile.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\SkinData.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Skins.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\SLP.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\SocketMessaging.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Startup.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\StreamHandle.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\StringConversions.cpp
# End Source File
# Begin Source File

SOURCE="..\SrcShared\StringData.cpp"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\SystemPacket.cpp
# End Source File
# Begin Source File

SOURCE="..\SrcShared\TrapPatches.cpp"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\TrapPatches_MemMgr.cpp
# End Source File
# Begin Source File

SOURCE=..\SrcShared\TrapPatches_NetLib.cpp
# End Source File
# Begin Source File

SOURCE="..\SrcShared\UAE_Utils.cpp"
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UART.cpp
# End Source File
# End Group
# Begin Group "UAE"

# PROP Default_Filter ""
# Begin Source File

SOURCE=..\SrcShared\UAE\compiler.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\config.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\cpudefs.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\cpuemu.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\cpustbl.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\cputbl.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\custom.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\machdep_m68k.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\machdep_maccess.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\memory_cpu.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\newcpu.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\options.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\readcpu.cpp
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\readcpu.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\sysconfig.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\sysdeps.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\UAE\target.h
# End Source File
# End Group
# Begin Group "Gzip"

# PROP Default_Filter ""
# Begin Source File

SOURCE=..\SrcShared\Gzip\bits.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Gzip\crypt.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Gzip\deflate.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Gzip\gzip.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Gzip\inflate.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Gzip\lzw.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Gzip\revision.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Gzip\tailor.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Gzip\trees.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\Gzip\util.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# End Group
# Begin Group "omnithread"

# PROP Default_Filter ""
# Begin Source File

SOURCE=..\SrcShared\omnithread\nt.cpp
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\omnithread\nt.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\omnithread\omnithread.h
# End Source File
# End Group
# Begin Group "jpeg"

# PROP Default_Filter ""
# Begin Source File

SOURCE=..\SrcShared\jpeg\cderror.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jcapimin.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jcapistd.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jccoefct.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jccolor.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jcdctmgr.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jchuff.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jchuff.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jcinit.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jcmainct.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jcmarker.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jcmaster.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jcomapi.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcWin\jconfig.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jcparam.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jcphuff.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jcprepct.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jcsample.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jctrans.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdapimin.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdapistd.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdatadst.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdatasrc.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdcoefct.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdcolor.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdct.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jddctmgr.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdhuff.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdhuff.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdinput.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdmainct.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdmarker.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdmaster.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdmerge.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdphuff.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdpostct.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdsample.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jdtrans.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jerror.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jerror.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jfdctflt.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jfdctfst.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jfdctint.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jidctflt.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jidctfst.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jidctint.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jidctred.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jinclude.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jmemmgr.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jmemnobs.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jmemsys.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jmorecfg.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jpegint.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jpeglib.h
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jquant1.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jquant2.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jutils.c
# SUBTRACT CPP /YX /Yc /Yu
# End Source File
# Begin Source File

SOURCE=..\SrcShared\jpeg\jversion.h
# End Source File
# End Group
# Begin Group "Docs"

# PROP Default_Filter "*.txt"
# Begin Source File

SOURCE=..\Docs\_Bugs.txt
# End Source File
# Begin Source File

SOURCE=..\Docs\_Building.txt
# End Source File
# Begin Source File

SOURCE=..\Docs\_Contributing.txt
# End Source File
# Begin Source File

SOURCE=..\Docs\_Credits.txt
# End Source File
# Begin Source File

SOURCE=..\Docs\_GPL.txt
# End Source File
# Begin Source File

SOURCE=..\Docs\_News.txt
# End Source File
# Begin Source File

SOURCE=..\Docs\_OldNews.txt
# End Source File
# Begin Source File

SOURCE=..\Docs\_ReadMe.txt
# End Source File
# Begin Source File

SOURCE=..\Docs\_ToDo.txt
# End Source File
# Begin Source File

SOURCE=..\Docs\NotesPrv.txt
# End Source File
# End Group
# Begin Group "Scripting"

# PROP Default_Filter ""
# Begin Group "Perl"

# PROP Default_Filter ".pl;.pm"
# Begin Source File

SOURCE=..\Scripting\Perl\EmFunctions.pm
# End Source File
# Begin Source File

SOURCE=..\Scripting\Perl\EmRPC.pm
# End Source File
# Begin Source File

SOURCE=..\Scripting\Perl\EmSysTraps.pm
# End Source File
# Begin Source File

SOURCE=..\Scripting\Perl\EmUtils.pm
# End Source File
# Begin Source File

SOURCE=..\Scripting\Perl\FormSpy.pl
# End Source File
# Begin Source File

SOURCE=..\Scripting\Perl\MakeSysTraps.pl
# End Source File
# Begin Source File

SOURCE=..\Scripting\Perl\PoserRPC.pl
# End Source File
# Begin Source File

SOURCE=..\Scripting\Perl\SkipStartup.pl
# End Source File
# End Group
# End Group
# End Target
# End Project

--------------2652BE8D507F826054FB0C6D
Content-Type: text/x-vcard; charset=us-ascii;
 name="robmv.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Tarjeta para Robert Marcano
Content-Disposition: attachment;
 filename="robmv.vcf"

begin:vcard 
n:Marcano Varela;Robert Jess
tel;fax:(+582) 9591729
tel;home:(+5816) 6218891
tel;work:(+582)9 591665
x-mozilla-html:TRUE
org:Programacin Mecanizada C.A. (PROMCA)
adr:;;CCCT, 1ra Etapa, piso 2, oficina 205,
Chuao;Caracas;Miranda;1060;Venezuela
version:2.1
email;internet:robmv@promca.com
title:System Architect
note;quoted-printable:Certified VisualAge for Smalltalk Associate
Developer=0D=0ACertified VisualAge for C++ Associate Developer=0D=0ACertified
OS/2 Warp Engineer
x-mozilla-cpt:;15136
fn:Robert Jess Marcano Varela
end:vcard

--------------2652BE8D507F826054FB0C6D--

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: =?iso-8859-1?Q?Programaci=F3n?= Mecanizada C.A. (
(1:109/42)

+----------------------------------------------------------------------------+

From: mamodeo@stny.rr.com                               30-Nov-99 12:02:11
  To: All                                               01-Dec-99 00:35:06
Subj: Re: CoPilot Porting help (PalmPilot emulator)

From: Marty <mamodeo@stny.rr.com>

Robert Marcano wrote:
> 
> I'm starting a personal project to migrate CoPilot to OS/2, but I need
> some help to start.
> 
> I'm using Windows source code and it include a Microsoft Developer
> Studio Project File
> 
> Can somebody export this project file to makefile format using
> Microsoft Developer Studio? Please send it to me by email...
> thanks

Why not just take the makefile from the Unix source for CoPilot?  It
shouldn't require too much revision.

- Marty

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: IBM Global Services North -- Burlington, Vermont,
(1:109/42)

+----------------------------------------------------------------------------+

From: pelliott@io.com                                   01-Dec-99 04:53:18
  To: All                                               01-Dec-99 17:09:06
Subj: How do I get info out of UniformResourceLocator objects using Rexx?

From: pelliott@io.com (Paul Elliott)

I would like to flatten a URL folder to a flat text file.
How do I get the info out of the objects using REXX?

Perhaps there is a REXX pr0ogram already to do this?

Thank You.
---

Paul Elliott                          Telephone: 1(512)837-9345
pelliott@io.com                       Address:   PMB 181, 11900 Metric Blvd
Suite J
http://www.io.com/~pelliott/pme/      Austin TX 78758-3117

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Illuminati Online (1:109/42)

+----------------------------------------------------------------------------+

From: ths@texbox.lahn.de                                27-Nov-99 17:15:15
  To: All                                               01-Dec-99 17:09:06
Subj: decompile INF to IPF?

From: ths@texbox.lahn.de (Thomas Seeling)

Hallo All,

I have lost the source code for INF files of my project.
I still have the latest release archive with INF.
Is there a way to decompile so that I can continue working on the
IPF source?

Tschau...Thomas

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Die TeX-Box (1:109/42)

+----------------------------------------------------------------------------+

From: cbzh@my-deja.com                                  01-Dec-99 10:27:15
  To: All                                               01-Dec-99 17:09:07
Subj: Re: decompile INF to IPF?

From: cbzh@my-deja.com

In article <MSGID_142=3A102=2F1_384011f6@lahn.de>,
  ths@texbox.lahn.de wrote:
> Hallo All,
>
> I have lost the source code for INF files of my project.
> I still have the latest release archive with INF.
> Is there a way to decompile so that I can continue working on the
> IPF source?
>

Sounds bad :-(

If you don't get what you are asking for: I remember there was a tool
somewhere to view INF files over the internet with a WWW browser: This
must in any case transform them into HTML - which in turn is already
somewhat closer to IPF than the original INF...

If you don't find it on Hobbes or wherever, I can try to look for it
myself. I must mention that I never used the thing myself, so I am not
sure about how powerful it is!

Greetings,
Cornelis Bockemhl <cbockem@datacomm.ch>

> Tschau...Thomas
>


Sent via Deja.com http://www.deja.com/
Before you buy.

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Deja.com - Before you buy. (1:109/42)

+----------------------------------------------------------------------------+

From: csaba_r@my-deja.com                               01-Dec-99 12:50:15
  To: All                                               01-Dec-99 17:09:08
Subj: Re: CoPilot Porting help (PalmPilot emulator)

From: csaba_r@my-deja.com (Csaba Raduly)

robmv@promca.com (Robert Marcano) wrote in <38441199.91B72A5@promca.com>:

>I'm starting a personal project to migrate CoPilot to OS/2, but I need
>some help to start.
>
>I'm using Windows source code and it include a Microsoft Developer
>Studio Project File
>
>Can somebody export this project file to makefile format using
>Microsoft Developer Studio? Please send it to me by email...
>thanks
>
>--------------2652BE8D507F826054FB0C6D
># Microsoft Developer Studio Project File - Name="Emulator" - Package
>Owner=<4> # Microsoft Developer Studio Generated Build File, Format
>Version 6.00 # ** DO NOT EDIT **
>
># TARGTYPE "Win32 (x86) Application" 0x0101
>
>CFG=Emulator - Win32 Debug
>!MESSAGE This is not a valid makefile. To build this project using NMAKE,
>!MESSAGE use the Export Makefile command and run
          ^^^^^^^^^^^^^^^^^^^^^^^
          ^^^^^^^^^^^^^^^^^^^^^^^
Do what the man says :-)
Load up the project in Visual Studio and use the "Export makefile" command.

[snipped]
-- 
-----BEGIN GEEK CODE BLOCK----- 
Version 3.1
GCS/MU d- s:- a30 C++$ UL+ P+>+++ L++ E- W+ N++ o? K? w++>$ O++$ M-
V- PS PE Y PGP- t+ 5 X++ R* tv++ b++ DI+++ D++ G- e+++ h-- r-- !y+
-----END GEEK CODE BLOCK----- 

Csaba Raduly,    Software Developer (OS/2),    Sophos Anti-Virus
mailto:csaba.raduly@sophos.com            http://www.sophos.com/
US Support +1 888 SOPHOS 9            UK Support +44 1235 559933
Life is complex, with real and imaginary parts.

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: SOPHOS Plc (1:109/42)

+----------------------------------------------------------------------------+

From: hunters@sapphire.indstate.edu                     01-Dec-99 17:18:10
  To: All                                               01-Dec-99 20:38:00
Subj: Re: vider drivers

From: hunters@sapphire.indstate.edu

In article <38446569.63209DB0@cww.de>,
  Pressenna Sockalingasamy <deathlok@cww.de> wrote:

> Hi guys,
>
> does anyone of you know about video driver development,
> and could point my to some resources (in the net) about that?
> I'm especially interested in openGL hw acceleration.

Personally, I couldn't write a device driver if my life depended on it,
but check out:
http://service.boulder.ibm.com/ddk/
for all your OS/2 device driver development needs.

Good luck!

--
-Steven Hunter                *OS/2 Warp 4 * |But on the other hand...|
hunters@sapphire.indstate.edu *AMD K6-2 400* |There's 5 more fingers. |


Sent via Deja.com http://www.deja.com/
Before you buy.

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Deja.com - Before you buy. (1:109/42)

+----------------------------------------------------------------------------+

From: herbert_d@gmx.net                                 01-Dec-99 21:08:22
  To: All                                               01-Dec-99 20:38:00
Subj: Re: decompile INF to IPF?

From: Herbert Martin Dietze <herbert_d@gmx.net>

Thomas Seeling <ths@texbox.lahn.de> wrote:

> I have lost the source code for INF files of my project.
> I still have the latest release archive with INF.
> Is there a way to decompile so that I can continue working on the
> IPF source?

I remember there was an attempt to do this years ago, there already
was a description of the data format that should be on Hobbes. I
don't know of any ready-to-run software though.

Cheers,

Herbert

-- 
I got it good, I got it bad. I got the sweetest sadness I ever had.
      --- the The

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Origin Line 1 Goes Here (1:109/42)

+----------------------------------------------------------------------------+

From: pfitzsim@NOSPAMBASTARDS!home.com                  01-Dec-99 23:07:07
  To: All                                               01-Dec-99 21:37:13
Subj: Re: decompile INF to IPF?

From: Peter Fitzsimons <pfitzsim@NOSPAMBASTARDS!home.com>

Thomas Seeling wrote:
> 
> Hallo All,
> 
> I have lost the source code for INF files of my project.
> I still have the latest release archive with INF.
> Is there a way to decompile so that I can continue working on the
> IPF source?
> 

I can convert it to plain text if you want.

I may be wrong, but I have some recollection of a "help authoring tool"
that could read *.inf.  Do a search on those keywords and see what comes
up.

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: @Home Network Canada (1:109/42)

+----------------------------------------------------------------------------+

From: abuse@orac.clara.co.uk                            02-Dec-99 00:27:20
  To: All                                               02-Dec-99 03:27:29
Subj: Re: How do I get info out of UniformResourceLocator objects using Rexx?

From: abuse@orac.clara.co.uk (Paul Ratcliffe)

On 1 Dec 1999 04:53:36 GMT, Paul Elliott <pelliott@io.com> wrote:

>I would like to flatten a URL folder to a flat text file.
>How do I get the info out of the objects using REXX?
>
>Perhaps there is a REXX pr0ogram already to do this?

You could use the GETSET program from Henk Kelder's excellent WPTOOL package.

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: The Floppy BBS (1:109/42)

+----------------------------------------------------------------------------+

From: rolf@together.net                                 01-Dec-99 23:35:12
  To: All                                               02-Dec-99 03:28:00
Subj: Re: How do I get info out of UniformResourceLocator objects using Rexx?

From: "Rolf Lochb?hler" <rolf@together.net>

On 1 Dec 1999 04:53:36 GMT, Paul Elliott wrote:

>I would like to flatten a URL folder to a flat text file.
>How do I get the info out of the objects using REXX?
>
>Perhaps there is a REXX pr0ogram already to do this?
>
>Thank You.
>---
>
>Paul Elliott                          Telephone: 1(512)837-9345
>pelliott@io.com                       Address:   PMB 181, 11900 Metric Blvd
Suite J
>http://www.io.com/~pelliott/pme/      Austin TX 78758-3117

I have a script that will probably do what you are looking for.

If you still need it I can send it in a separate email to you.


rl



--
Rolf Lochbhler <rolf@together.net>
http://homepages.together.net/~rolf


--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Together Networks - Burlington, VT. (1:109/42)

+----------------------------------------------------------------------------+

From: steve53_remove_this@earthlink.net                 01-Dec-99 20:36:01
  To: All                                               02-Dec-99 03:28:00
Subj: Re: vider drivers

From: steve53_remove_this@earthlink.net

In <38446569.63209DB0@cww.de>, on 12/01/99 
   at 01:01 AM, Pressenna Sockalingasamy <deathlok@cww.de> said:

>does anyone of you know about video driver development, 
>and could point my to some resources (in the net) about that? I'm
>especially interested in openGL hw acceleration.

You probably want to start with:

  http://service.software.ibm.com/ddk/

HTH,

Steven

--
-------------------------------------------------------------------
Steven Levine <steve53removethis@earthlink.net>  MR2/ICE 2.01 #10183
Warp4/FP11
-------------------------------------------------------------------


--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: EarthLink Network, Inc. (1:109/42)

+----------------------------------------------------------------------------+

From: timurkz@saxz.mmbankz.ruz                          02-Dec-99 03:18:01
  To: All                                               02-Dec-99 03:28:01
Subj: Re: How do I get info out of UniformResourceLocator objects using Rexx?

From: "Timur Kazimirov" <timurkz@saxz.mmbankz.ruz>

Hello Paul,

On 1 Dec 1999 04:53:36 GMT, Paul Elliott wrote:

>I would like to flatten a URL folder to a flat text file.
>How do I get the info out of the objects using REXX?
>
>Perhaps there is a REXX pr0ogram already to do this?

Go to the \Desktop\Connections\Web directory and add
contents of each file you will found in all subdirs to the
text file:

=== Begin of URL2TXT.CMD ===

/* URL objects to text converter */

if \RxFuncQuery("SysLoadFuncs") then nop
else do
  call RxFuncAdd "SysLoadFuncs", "REXXUTIL", "SysLoadFuncs"
  call SysLoadFuncs
end

TheTextFile = "URLList.TXT"

rc = SysFileTree("C:\Desktop\Connections\Web\*", URL, FSO)

do i = 1 to URL.0
  call lineout TheTextFile, linein(URL.i, 1)
end

exit

=== End of URL2TXT.CMD ===


With best regards,
Timur Kazimirov

-- Remove all "z" from my address to reply



--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Bank of Moscow, Sakhalin Branch (1:109/42)

+----------------------------------------------------------------------------+

From: timurkz@saxz.mmbankz.ruz                          02-Dec-99 04:08:09
  To: All                                               02-Dec-99 03:28:01
Subj: Re: How do I get info out of UniformResourceLocator objects using Rexx?

From: "Timur Kazimirov" <timurkz@saxz.mmbankz.ruz>

I have done a little correction to avoid problem with many opened files:

=== Begin of URL2TXT.CMD ===
/* URL objects to text converter */

if \RxFuncQuery("SysLoadFuncs") then nop
else do
  call RxFuncAdd "SysLoadFuncs", "REXXUTIL", "SysLoadFuncs"
  call SysLoadFuncs
end

TheTextFile = "URLList.TXT"

call SysFileTree "C:\Desktop\Connections\Web-\*.*", URLs, FSO
call stream TheTextFile, "c", "open write"

do i=34 to URLs.0
  call stream URLs.i, "c", "open read"
  TheURL = linein(URLs.i)
  call stream URLs.i, "c", "close"
  call lineout TheTextFile, TheURL
end

call stream TheTextFile, "c", "close"

exit

=== End of URL2TXT.CMD ===

With best regards,
Timur Kazimirov

-- Remove all "z" from my address to reply



--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Bank of Moscow, Sakhalin Branch (1:109/42)

+----------------------------------------------------------------------------+

From: cbzh@my-deja.com                                  02-Dec-99 12:41:21
  To: All                                               02-Dec-99 15:58:13
Subj: Re: decompile INF to IPF?

From: cbzh@my-deja.com

In article <822t6g$2te$1@nnrp1.deja.com>,
  cbzh@my-deja.com wrote:
> In article <MSGID_142=3A102=2F1_384011f6@lahn.de>,
>   ths@texbox.lahn.de wrote:
> > Hallo All,
> >
> > I have lost the source code for INF files of my project.
> > I still have the latest release archive with INF.
> > Is there a way to decompile so that I can continue working on the
> > IPF source?
> >
>
> Sounds bad :-(
>
> If you don't get what you are asking for: I remember there was a tool
> somewhere to view INF files over the internet with a WWW browser: This
> must in any case transform them into HTML - which in turn is already
> somewhat closer to IPF than the original INF...
>
> If you don't find it on Hobbes or wherever, I can try to look for it
> myself. I must mention that I never used the thing myself, so I am not
> sure about how powerful it is!
>

Answering my own posting, but now a bit more precise:

- You can take INF-FILE from the INFHTM package to create a pile of HTML
files from your INF. Get it at

ftp://hobbes.nmsu.edu/pub/os2/apps/internet/www/server/infhtm9b.zip

- Then take HTML2IPF to convert all the HTML files together to an IPF
file. Contrary to the first step I did this already successfully - works
great! Get it at

ftp://hobbes.nmsu.edu/pub/os2/apps/internet/www/util/html2ipf-0.1.1.zip

You will of course not have a 1:1 copy of your original IPF files
probably, but at least something to go on working with! I think this is
what I would do in your place.

Here is also the INF documentation another poster was mentioning:

ftp://hobbes.nmsu.edu/pub/os2/dev/help/inf02a.doc

But this means programming in order to get anything useful!

Greetings #2,
Cornelis Bockemhl <cbockem@datacomm.ch>

> Greetings,
> Cornelis Bockemhl <cbockem@datacomm.ch>
>
> > Tschau...Thomas
> >
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
>


Sent via Deja.com http://www.deja.com/
Before you buy.

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Deja.com - Before you buy. (1:109/42)

+----------------------------------------------------------------------------+

From: sbowring+nospam@mpc-data.co.uk                    02-Dec-99 16:56:13
  To: All                                               02-Dec-99 15:58:13
Subj: Re: CoPilot Porting help (PalmPilot emulator)

From: "Simon Bowring" <sbowring+nospam@mpc-data.co.uk>

>Load up the project in Visual Studio and use the "Export makefile" command.
Presumably he doesn't have Visual Boutique, hence the request for 
the conversion!?

Simon Bowring





--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: MPC Data Limited (1:109/42)

+----------------------------------------------------------------------------+

From: hubert@ugrad.cs.ualberta.ca                       02-Dec-99 14:07:28
  To: All                                               02-Dec-99 19:45:01
Subj: Re: $9 Domain Hosting - No Internic Fees

From: Hubert Chan <hubert@ugrad.cs.ualberta.ca>

On Thu, 2 Dec 1999, Charles Fenton wrote:

[stupid add cut out]
> Plus, they have a refferal program, so tell them that
> charles_fenton@NOhotmailSPAM.com sent you.  For every person I refer, I
                 ^^^^^^^^^^^^^
Well, isn't that nice.  A spammer who doesn't like to receive spam.
> can get $10, or a free month's hosting.  Thank you.

Hubert.

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Computing Science, U of Alberta, Edmonton, Canada
(1:109/42)

+----------------------------------------------------------------------------+

From: cannon@sonic.net                                  03-Dec-99 00:03:23
  To: All                                               03-Dec-99 05:15:15
Subj: Re: vider drivers

From: Andrew Cannon <cannon@sonic.net>


Pressenna Sockalingasamy wrote:

> Hi guys,
>
> does anyone of you know about video driver development,
> and could point my to some resources (in the net) about that?
> I'm especially interested in openGL hw acceleration.
>
> --
> CU/2
> Pressenna ...

You might want to look into
    http://www.scitechsoft.com/

--
Andy Cannon   http://www.sonic.net/~cannon


--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: Sonic,Santa Rosa CA,http://www.sonic.net (1:109/42)

+----------------------------------------------------------------------------+

From: SkidMARX@att.net                                  03-Dec-99 20:43:26
  To: All                                               03-Dec-99 20:03:07
Subj: Porting information request ...

From: SkidMARX@att.net

Hello,

I recently downloaded the "free" for private use source code for 
IntelliCAD 2000.  It's based on Visual C++ version 6 from Microsoft.

I have Watcom C++ version 11b and all corresponding Warp 4 programming
Toolkits, including the latest update via Developer's Connection.

Also, I have installed the latest daily build of Netlab's Odin 
project.

Question:

Does it sound feasable to port Intellicad over to Os/2 using the tools
I outlined?
Is this something that would be EXTREMELY hard to do considering MS 
Visual C++ is involved?
Does anyone know whether the Odin project would be helpful with this 
port?

Does anyone want to help?

I'm a beginner at this.
So maybe I'm jumping into something I really shouldn't, but being as 
OS/2 doesn't have a professional level CAD package (I have BlueCAD and
while it is not bad, it leaves a lot to be desired, expecially after 
working with Autocad) I thought what the hell I'd give it a shot.

Any ideas?
Any help?
Any info?

Would be greatly appreciated ...

Thanks,
Gregory L. Marx
Skidmarx@att.net

PS - I already contacted Adrian from NetLabs.  Just haven't heard 
anything yet.

--- WtrGate+ v0.93.p7 sn 165
 * Origin: Usenet: AT&T WorldNet Services (1:109/42)

+----------------------------------------------------------------------------+

+============================================================================+
