home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Spiele Spiele Spiele 1
/
spiele-spiele-spiele-topware.iso
/
spiele
/
top5029
/
gepackt.exe
/
SDK
/
PAS
/
LM_LGD.PAS
next >
Wrap
Pascal/Delphi Source File
|
1993-09-08
|
620b
|
31 lines
{$A+,B-,D+,F-,G-,I+,L+,N-,R-,S+,V+,W+,X+}
{$M 8192,8192}
unit lm_lgd;
{ Hinweis für C-Programmierer:
Die Funktion LgdDefProc muß in der .DEF-Datei IMPORTiert werden.
Prototyp (in einer .H-Datei):
BOOL LgdDefProc (LPLONG lRet, HWND hWnd, WORD msg, WORD wParam, LONG lParam);
}
interface
uses WinTypes;
Function LgdDefProc (var lRet:LongInt;
window: hwnd;
msg:word;
wParam:word;
lParam:LongInt): boolean;
implementation
Function LgdDefProc;
external 'lm_util' index 11;
end.