ShlObj.pas line 9922 (as in Delphi XE):

type
  BFFCALLBACK = function(Wnd: HWND; uMsg: UINT; lParam, lpData: LPARAM): Integer stdcall;
  TFNBFFCallBack = type BFFCALLBACK;
  {$EXTERNALSYM BFFCALLBACK}

Answering to David Heffernan's comment here because i think this outlines a relevant background for possible why do you ask this? question. Procedural types for callback routines of Windows API origin are declared as type aliases (you know, canonical API name + "Pascalised" alias, or vice versa sometimes). Examples are Windows.PIMAGE_TLS_CALLBACK, ShlObj.LPFNDFMCALLBACK et cetera. Type declaration shown above is an exception. Thats why i'm asking :-)

link|improve this question

58% accept rate
Please suggest a proper tag(s) for such subtle matter as Pascalish type-identity. – user539484 Jan 15 at 23:31
I'd say delphi plus delphi-xe tags are fine. I doubt any other tags would ever help anyone much. – David Heffernan Jan 15 at 23:34
1  
Do you see the use of distinct types anywhere else in that unit? Or in Windows.pas? Makes a change from FARPROC I suppose! – David Heffernan Jan 15 at 23:35
@DavidHeffernan, good question! I've added a reply to your comment to the question body. – user539484 Jan 15 at 23:56
1  
@DavidHeffernan Deleted answer is wrong because you can pass procedural type as var. I never done it before, but it is possible and type prefix has same effect on procedural type as on other types. – Serg Jan 16 at 16:41
show 5 more comments
feedback

1 Answer

It is just a way to force us programmers to use TFNBFFCallBack instead of BFFCALLBACK. If it was an alias we could use either for the browse info structure. On a different platform TFNBFFCallBack could point to something different than BFFCALLBACK.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.