Browse Source

* Patch to correct parameter types in IDropSource by Cobines, mantis #21971

git-svn-id: trunk@21249 -
marco 13 years ago
parent
commit
2661bd406c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/winunits-base/src/activex.pp

+ 2 - 2
packages/winunits-base/src/activex.pp

@@ -3253,8 +3253,8 @@ type
   IDropSource = interface(IUnknown)
     ['{00000121-0000-0000-C000-000000000046}']
     function QueryContinueDrag(fEscapePressed: BOOL;
-      grfKeyState: Longint):HResult;StdCall;
-    function GiveFeedback(dwEffect: Longint): HResult;StdCall;
+      grfKeyState: DWORD):HResult;StdCall;
+    function GiveFeedback(dwEffect: DWORD): HResult;StdCall;
   end;
 
   IOleObject = interface(IUnknown)