How can I define this function in Delphi ? I know imports only without entry point and can't find any usefull example :(

That's written in C#

[DllImport("dwmapi.dll", EntryPoint = "#131")]
static extern int DwmpSetColorizationParameters(ref DwmColorParams dcpParams, 
bool alwaysTrue);

Thanks a lot

Best regards

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

This should do, although I'm not sure about the const for alwaysTrue.

function DwmpSetColorizationParameters(var dcpParams: TDwmColorParams; 
  alwaysTrue: BOOL): Integer; stdcall; 
  external 'dwmapi.dll' index 131;
link|improve this answer
+1 and accept, thanks a lot – user532231 Mar 11 '11 at 15:11
Thanks also to David Heffernan for good points (from the deleted answer). I wrote it in this way (stdcall), because I was writing the code from the screen to the laptop and it's a common practice for external calls, so I used it without thinking about it. And with the pointer as a parameter is minor thing. – user532231 Mar 11 '11 at 16:14
1  
@David Heffernan - that's twice you've deleted your answer in favor of mine. If you get to the States, I owe you a pint. :) – Ken White Mar 11 '11 at 20:14
feedback

The EntryPoint field allows the function to be declared with a name other than what the DLL used to export it. If the first character of the value is #, then it indicates the ordinal value of the function instead of the DLL's name for it.

Delphi uses two different clauses. If the DLL uses a name different from the one in your code, then you can use a name clause:

procedure Foo(...); external DLL name 'Bar';

But if the DLL doesn't export any name at all, then you can use an index clause to tell which ordinal value the function has:

procedure Foo(...); external DLL index 131;
link|improve this answer
+1, thanks for the completion of this quest :) – user532231 Mar 13 '11 at 23:11
feedback

Your Answer

 
or
required, but never shown