From: Guy H <da...@us...> - 2004-10-13 23:21:57
|
Update of /cvsroot/anyedit/AnyEditToolkit/GuiLib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7298/AnyEditToolkit/GuiLib Modified Files: GuiADODB.h Added Files: msado15.h Log Message: Fixed to remove #import using full path Index: GuiADODB.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditToolkit/GuiLib/GuiADODB.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** GuiADODB.h 26 Sep 2004 16:11:49 -0000 1.1 --- GuiADODB.h 13 Oct 2004 23:21:48 -0000 1.2 *************** *** 22,30 **** ****************************************************************************/ ! ! ! ! #import "\Program Files\Common Files\System\ADO\msado15.dll" rename_namespace("ADOCG") rename("EOF", "EndOfFile") ! using namespace ADOCG; --- 22,26 ---- ****************************************************************************/ ! #include "msado15.h" using namespace ADOCG; --- NEW FILE: msado15.h --- // Created by Microsoft (R) C/C++ Compiler Version 12.00.9782.0 (2a95c354). // // e:\guy\projects\anyedit\anyedittoolkit\guilib\debug\msado15.tlh // // C++ source equivalent of Win32 type library C:\Program Files\Common Files\System\ADO\msado15.dll // compiler-generated file created 10/12/04 at 02:35:30 - DO NOT EDIT! #pragma once #pragma pack(push, 8) #include <comdef.h> namespace ADOCG { // // Forward references and typedefs // typedef enum SearchDirectionEnum SearchDirection; [...5043 lines suppressed...] inline _variant_t Field15::GetOriginalValue ( ) { VARIANT _result; VariantInit(&_result); HRESULT _hr = get_OriginalValue(&_result); if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this)); return _variant_t(_result, false); } inline _variant_t Field15::GetUnderlyingValue ( ) { VARIANT _result; VariantInit(&_result); HRESULT _hr = get_UnderlyingValue(&_result); if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this)); return _variant_t(_result, false); } } // namespace ADOCG #pragma pack(pop) |