home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 1995 June
/
pcw-0695.iso
/
share
/
utils
/
edithelp
/
sample.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1995-03-10
|
265 b
|
16 lines
library sample;
uses WObjects, WinTypes, WinProcs, misc;
procedure func1(i: integer); export;
begin
MyMessageBox(0,'The number is '+numstr(i,1),
'Sample.DLL', mb_OK + mb_IconExclamation);
end;
exports
func1 name 'FUNC1';
begin
end.