Skip to content

Commit

Permalink
Documentation for IShellFolder too
Browse files Browse the repository at this point in the history
  • Loading branch information
L W Ahonen committed Dec 4, 2015
1 parent e24f188 commit 0ab0660
Show file tree
Hide file tree
Showing 2 changed files with 341 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public interface IEnumIDList {
* the server every time a client does a query.
*/
HRESULT QueryInterface(
Guid.GUID.ByReference riid,
REFIID riid,
PointerByReference ppvObject);

/**
Expand Down Expand Up @@ -184,7 +184,7 @@ public static IEnumIDList PointerToIEnumIDList(final PointerByReference ptr) {
return new IEnumIDList() {

@Override
public WinNT.HRESULT QueryInterface(Guid.GUID.ByReference byValue, PointerByReference pointerByReference) {
public WinNT.HRESULT QueryInterface(REFIID byValue, PointerByReference pointerByReference) {
Function f = Function.getFunction(vTable[0], Function.ALT_CONVENTION);
return new WinNT.HRESULT(f.invokeInt(new Object[]{interfacePointer, byValue, pointerByReference}));
}
Expand Down
Loading

0 comments on commit 0ab0660

Please sign in to comment.