Powerbasic Museum 2020-B

IT-Consultant: Charles Pegge => OxygenBasic => Topic started by: Chris Chancellor on May 11, 2018, 08:19:27 PM

Title: what is the difference between Corewin.inc and minwin.inc
Post by: Chris Chancellor on May 11, 2018, 08:19:27 PM
Hello Charles

what is the difference between Corewin.inc and minwin.inc

which situation do we use Corewin.inc and

which situation to use  minwin.inc  ?

Thanxx
Title: Re: what is the difference between Corewin.inc and minwin.inc
Post by: Charles Pegge on May 12, 2018, 04:19:51 AM
Hi Chris,

MinWin has a minimal set of Windows API functions, whereas CoreWin has nearly 6000 of them. That should cover most of your needs.

This is CoreWin.inc:

'2018-03-10 T 15:53:37

------------
'CoreWin.inc
============


'equates,types,macros
=====================

uses WinData

'dll declarations
=================

uses Kernel  '1595
uses User    '985
uses Gdi     '945
uses Comctl  '118
uses Comdlg  '28
uses Oleaut  '409
uses Shell   '484
uses Msvcrt  '1429 -58

'5935 declarations
Title: Re: what is the difference between Corewin.inc and minwin.inc
Post by: Chris Chancellor on May 12, 2018, 05:26:50 AM
Thanxx Charles

so if i just use CoreWin.inc  then this will take care of all or everything  as  MinWin.inc is just a subset of CoreWin.inc ?