No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Use function pointer. This might help... [CODE] TMyFunctionPrototype = function (num1 : integer) : integer of object; ... procedure sequence(my_func : TMyFunctionPrototype); begin ... if Assinged(my_func) then begin //do something with my_func my_func(5); end; ... end; function addnumbers(num1 : integer) : integer; begin result := num1 + 3; end; ... …
Hi, guys. I've been reading your forum for some time. Now I need a little help again. I am trying to read a bitmap file using BITMAPFILEHEADER, BITMAPINFOHEADER and RGBQUAD in windows.h - I need RGB values or only one of them. All the info in header structures is OK. …
The End.
adraganov