Changeset 3942 for trunk/src/ole32/ole2impl.cpp
- Timestamp:
- Aug 2, 2000, 10:18:25 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/ole2impl.cpp
r3176 r3942 1 /* $Id: ole2impl.cpp,v 1. 1 2000-03-21 00:28:32 davidrExp $ */1 /* $Id: ole2impl.cpp,v 1.2 2000-08-02 20:18:22 bird Exp $ */ 2 2 /* 3 3 * Ole 2 Create functions implementation … … 5 5 * Copyright (C) 1999-2000 Abey George 6 6 */ 7 /* 8 * 7 /* 8 * 9 9 * Project Odin Software License can be found in LICENSE.TXT 10 * 10 * 11 11 */ 12 /* 12 /* 13 13 * Ported from Wine 20/03/00 14 * 14 * 15 15 * Copyright 1999 David J. Raison 16 16 * … … 25 25 #define MAX_CLIPFORMAT_NAME 80 26 26 27 /****************************************************************************** 28 * Function : OleQueryCreateFromData [OLE32.117] 29 * Author : Abey George 27 /** 28 * [OLE32.117] 30 29 * Checks whether an object can become an embedded object. 31 30 * the clipboard or OLE drag and drop. 32 * Returns : S_OK - Format that supports Embedded object creation are present. 33 * OLE_E_STATIC - Format that supports static object creation are present. 34 * S_FALSE - No acceptable format is available. 31 * @author Abey George 32 * @returns S_OK - Format that supports Embedded object creation are present. 33 * OLE_E_STATIC - Format that supports static object creation are present. 34 * S_FALSE - No acceptable format is available. 35 35 */ 36 36 … … 72 72 } 73 73 74 /****************************************************************************** 75 * Function : OleCreateFromData [OLE32.92] 76 * Author : Abey George 74 /** 77 75 * Creates an embedded object from data transfer object retrieved from 78 76 * the clipboard or OLE drag and drop. 79 * Returns : S_OK - Embedded object was created successfully. 80 * OLE_E_STATIC - OLE can create only a static object 81 * DV_E_FORMATETC - No acceptable format is available (only error return code) 82 * TODO : CF_FILENAME, CF_EMBEDEDOBJECT formats. Parameter renderopt is currently ignored. 77 * [OLE32.92] 78 * @author Abey George 79 * @returns S_OK - Embedded object was created successfully. 80 * OLE_E_STATIC - OLE can create only a static object 81 * DV_E_FORMATETC - No acceptable format is available (only error return code) 82 * @remark TODO : CF_FILENAME, CF_EMBEDEDOBJECT formats. Parameter renderopt is currently ignored. 83 83 */ 84 84
Note:
See TracChangeset
for help on using the changeset viewer.