parsedisplayname.c (c2c66aff) | parsedisplayname.c (dbcbc1cd) |
---|---|
1/* 2 * IParseDisplayName implementation for DEVENUM.dll 3 * 4 * Copyright (C) 2002 Robert Shearman 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either --- 7 unchanged lines hidden (view full) --- 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 19 * 20 * NOTES ON THIS FILE: 21 * - Implements IParseDisplayName interface which creates a moniker 22 * from a string in a special format 23 */ | 1/* 2 * IParseDisplayName implementation for DEVENUM.dll 3 * 4 * Copyright (C) 2002 Robert Shearman 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either --- 7 unchanged lines hidden (view full) --- 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 19 * 20 * NOTES ON THIS FILE: 21 * - Implements IParseDisplayName interface which creates a moniker 22 * from a string in a special format 23 */ |
24 | |
25#include "devenum_private.h" 26 | 24#include "devenum_private.h" 25 |
26#include "wine/debug.h" 27 28WINE_DEFAULT_DEBUG_CHANNEL(devenum); 29 |
|
27static HRESULT WINAPI DEVENUM_IParseDisplayName_QueryInterface(IParseDisplayName *iface, 28 REFIID riid, void **ppv) 29{ 30 TRACE("\n\tIID:\t%s\n",debugstr_guid(riid)); 31 32 if (!ppv) 33 return E_POINTER; 34 --- 119 unchanged lines hidden --- | 30static HRESULT WINAPI DEVENUM_IParseDisplayName_QueryInterface(IParseDisplayName *iface, 31 REFIID riid, void **ppv) 32{ 33 TRACE("\n\tIID:\t%s\n",debugstr_guid(riid)); 34 35 if (!ppv) 36 return E_POINTER; 37 --- 119 unchanged lines hidden --- |