Zitat von
Razor:
Well i wouldnt know even where to start,all i found is this but what does this mean?Does it contain any parameters,well i doubt so.
Zitat:
public LX_IsQDIMainBoard
LX_IsQDIMainBoard proc near
or eax, 0FFFFFFFFh ; LX_IsMSIMainBoard
retn
LX_IsQDIMainBoard endp
No parameters. It just returns 0xFFFFFFFF, which is another way of saying -1 (32bit) or setting all bits in a LongBool to 1.
Zitat von
Razor:
Can someone translate this?To delphi..
The important part is
Code:
typedef int (*isgigabytemobo)(void);
which says that:
type TFNisgigabytemobo = function(): Integer; cdecl;
(where cdecl is not important, because no params are being passed)