* moved the imports of InitTask, WaitEvent and InitApp to the win16 startup module

git-svn-id: trunk@31531 -
This commit is contained in:
nickysn 2015-09-05 12:43:26 +00:00
parent c2c008c09a
commit 049171c69c
2 changed files with 3 additions and 3 deletions

View File

@ -28,8 +28,11 @@
extern PASCALMAIN
extern InitTask
import InitTask KERNEL
extern WaitEvent
import WaitEvent KERNEL
extern InitApp
import InitApp USER
..start: ; Win16 applications start with the following
; values in registers:

View File

@ -78,9 +78,6 @@ const
{$endif RTLLITE}
procedure InitTask;external 'KERNEL';
procedure WaitEvent;external 'KERNEL';
procedure InitApp;external 'USER';
procedure MessageBox(hWnd: word; lpText, lpCaption: PChar; uType: word);external 'USER';
implementation