Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. problem importing a com file in c++

problem importing a com file in c++

Scheduled Pinned Locked Moved C / C++ / MFC
16 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S snouto

    Hello everyone . i am trying to import a COM file in vc++ project but the generated .tlh file from the com file seems to have an inherit errors , i successfully added #import directive in my stdafx.h file with the full phyiscal path to my com file then i included stdafx.h into my stdafx.cpp file , then i compile the studio generates for me a .tlh file but that file seems to have errors in it . the following code in the generated .tlh file has the problem struct __declspec(uuid("92d8ec9e-550e-4525-a858-c8601ad50703")) _VoiceNumbers : IDispatch { // // Property data // **__declspec(property(get=GetVoiceNumbers)) _CollectionPtr VoiceNumbers;** // // Wrapper methods for error-handling // long Count ( ); HRESULT Delete ( long Index ); HRESULT Add ( struct _PhoneNumber * oAdd ); _PhoneNumberPtr Item ( long Index ); IUnknownPtr NewEnum ( ); _CollectionPtr GetVoiceNumbers ( ); // // Raw methods provided by interface // virtual HRESULT __stdcall raw_Count ( /*[out,retval]*/ long * _arg1 ) = 0; virtual HRESULT __stdcall raw_Delete ( /*[in]*/ long Index ) = 0; virtual HRESULT __stdcall raw_Add ( /*[in]*/ struct _PhoneNumber * oAdd ) = 0; virtual HRESULT __stdcall raw_Item ( /*[in]*/ long Index, /*[out,retval]*/ struct _PhoneNumber * * _arg2 ) = 0; virtual HRESULT __stdcall raw_NewEnum ( /*[out,retval]*/ struct IUnknown * * _arg1 ) = 0; virtual HRESULT __stdcall get_VoiceNumbers ( /*[out,retval]*/ struct _Collection * * _arg1 ) = 0; }; the bolded code part has the problem and the following errors are Error 1 error C2146: syntax error : missing ';' before identifier 'VoiceNumbers' d:\hitech work\jniwork\testingrex\testingrex\debug\resumemirror.tlh 893 TestingRex Error 2 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int d:\hitech work\jniwork\testingrex\testingrex\debug\resumemirror.tlh 893 TestingRex Error 3 error C2208: 'ResumeMirror::VoiceNumbers' : no members defined using this type d:\hitech work\jniwork\testingrex\testingrex\debug\resumemirror.tlh 893 TestingRex Error 4 fatal error C1903: unable to recover from previous error(s); stopping compilation d:\hitech work\jniwork\testingrex\testingrex\debug\resumemirror.tlh 893 TestingRex i am trying to make a wrapper for that com file to be

    S Offline
    S Offline
    Stuart Dootson
    wrote on last edited by
    #2

    Sounds like it has dependencies on another COM object. Try adding 'auto_search' to your #import statement - that will attempt to resolve dependencies such as this without you having to alter your code by implicitly importing the other libraries that are required:

    #import "some-comm-item" auto_search

    HTH!

    Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

    S V 2 Replies Last reply
    0
    • S Stuart Dootson

      Sounds like it has dependencies on another COM object. Try adding 'auto_search' to your #import statement - that will attempt to resolve dependencies such as this without you having to alter your code by implicitly importing the other libraries that are required:

      #import "some-comm-item" auto_search

      HTH!

      Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

      S Offline
      S Offline
      snouto
      wrote on last edited by
      #3

      i did that but it gives me the following errors Error 1 error C2059: syntax error : '(' d:\hitech work\jniwork\testingrexx\testingrexx\debug\msvbvm60.tlh 483 TestingRexX Error 2 error C2059: syntax error : '(' d:\hitech work\jniwork\testingrexx\testingrexx\debug\msvbvm60.tlh 925 TestingRexX Error 3 error C2059: syntax error : '<L_TYPE_raw>' d:\hitech work\jniwork\testingrexx\testingrexx\debug\msado27.tlh 2380 TestingRexX Error 4 error C2238: unexpected token(s) preceding ';' d:\hitech work\jniwork\testingrexx\testingrexx\debug\msado27.tlh 2380 TestingRexX

      Human knowledge belongs to the world.

      S 1 Reply Last reply
      0
      • S snouto

        i did that but it gives me the following errors Error 1 error C2059: syntax error : '(' d:\hitech work\jniwork\testingrexx\testingrexx\debug\msvbvm60.tlh 483 TestingRexX Error 2 error C2059: syntax error : '(' d:\hitech work\jniwork\testingrexx\testingrexx\debug\msvbvm60.tlh 925 TestingRexX Error 3 error C2059: syntax error : '<L_TYPE_raw>' d:\hitech work\jniwork\testingrexx\testingrexx\debug\msado27.tlh 2380 TestingRexX Error 4 error C2238: unexpected token(s) preceding ';' d:\hitech work\jniwork\testingrexx\testingrexx\debug\msado27.tlh 2380 TestingRexX

        Human knowledge belongs to the world.

        S Offline
        S Offline
        Stuart Dootson
        wrote on last edited by
        #4

        Well - that tells you where the CollectionPtr comes from - it's a VB thing. OK, in that case you can explicitly define CollectionPtr yourself (look at how it's defined in the msvbvm60.tlh file) and remove the auto_search from the #import statement.

        Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

        S 2 Replies Last reply
        0
        • S Stuart Dootson

          Well - that tells you where the CollectionPtr comes from - it's a VB thing. OK, in that case you can explicitly define CollectionPtr yourself (look at how it's defined in the msvbvm60.tlh file) and remove the auto_search from the #import statement.

          Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

          S Offline
          S Offline
          snouto
          wrote on last edited by
          #5

          please my friend , can you explain in more detail i am not c++ savvy be patient please with me i searched that file but i didn't find _CollectionPtr i found that struct __declspec(uuid("a4c46780-499f-101b-bb78-00aa00383cbb")) _Collection : IDispatch { // // Wrapper methods for error-handling // _variant_t Item ( VARIANT * Index ); HRESULT Add ( VARIANT * Item, VARIANT * Key = &vtMissing, VARIANT * Before = &vtMissing, VARIANT * After = &vtMissing ); long Count ( ); HRESULT Remove ( VARIANT * Index ); IUnknownPtr _NewEnum ( ); // // Raw methods provided by interface // virtual HRESULT __stdcall raw_Item ( /*[in]*/ VARIANT * Index, /*[out,retval]*/ VARIANT * pvarRet ) = 0; virtual HRESULT __stdcall raw_Add ( /*[in]*/ VARIANT * Item, /*[in]*/ VARIANT * Key = &vtMissing, /*[in]*/ VARIANT * Before = &vtMissing, /*[in]*/ VARIANT * After = &vtMissing ) = 0; virtual HRESULT __stdcall raw_Count ( /*[out,retval]*/ long * pi4 ) = 0; virtual HRESULT __stdcall raw_Remove ( /*[in]*/ VARIANT * Index ) = 0; virtual HRESULT __stdcall raw__NewEnum ( /*[out,retval]*/ IUnknown * * ppunk ) = 0; };

          Human knowledge belongs to the world.

          S 1 Reply Last reply
          0
          • S Stuart Dootson

            Well - that tells you where the CollectionPtr comes from - it's a VB thing. OK, in that case you can explicitly define CollectionPtr yourself (look at how it's defined in the msvbvm60.tlh file) and remove the auto_search from the #import statement.

            Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

            S Offline
            S Offline
            snouto
            wrote on last edited by
            #6

            how can i redefine explicitly that struct my friend , i don't get you well

            Human knowledge belongs to the world.

            S 1 Reply Last reply
            0
            • S snouto

              please my friend , can you explain in more detail i am not c++ savvy be patient please with me i searched that file but i didn't find _CollectionPtr i found that struct __declspec(uuid("a4c46780-499f-101b-bb78-00aa00383cbb")) _Collection : IDispatch { // // Wrapper methods for error-handling // _variant_t Item ( VARIANT * Index ); HRESULT Add ( VARIANT * Item, VARIANT * Key = &vtMissing, VARIANT * Before = &vtMissing, VARIANT * After = &vtMissing ); long Count ( ); HRESULT Remove ( VARIANT * Index ); IUnknownPtr _NewEnum ( ); // // Raw methods provided by interface // virtual HRESULT __stdcall raw_Item ( /*[in]*/ VARIANT * Index, /*[out,retval]*/ VARIANT * pvarRet ) = 0; virtual HRESULT __stdcall raw_Add ( /*[in]*/ VARIANT * Item, /*[in]*/ VARIANT * Key = &vtMissing, /*[in]*/ VARIANT * Before = &vtMissing, /*[in]*/ VARIANT * After = &vtMissing ) = 0; virtual HRESULT __stdcall raw_Count ( /*[out,retval]*/ long * pi4 ) = 0; virtual HRESULT __stdcall raw_Remove ( /*[in]*/ VARIANT * Index ) = 0; virtual HRESULT __stdcall raw__NewEnum ( /*[out,retval]*/ IUnknown * * ppunk ) = 0; };

              Human knowledge belongs to the world.

              S Offline
              S Offline
              Stuart Dootson
              wrote on last edited by
              #7

              snouto wrote:

              i searched that file but i didn't find _CollectionPtr

              You won't find that explicitly. You'll find something like COM_SMARTPTR_TYPEDEF(_Collection, __uuidof(_Collection));

              Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

              1 Reply Last reply
              0
              • S snouto

                how can i redefine explicitly that struct my friend , i don't get you well

                Human knowledge belongs to the world.

                S Offline
                S Offline
                Stuart Dootson
                wrote on last edited by
                #8

                Don't be so fscking impatient - you'll find it just irritates the people who are trying to help you.

                Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                S 3 Replies Last reply
                0
                • S Stuart Dootson

                  Don't be so fscking impatient - you'll find it just irritates the people who are trying to help you.

                  Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                  S Offline
                  S Offline
                  snouto
                  wrote on last edited by
                  #9

                  i am sorry my friend , i found that struct __declspec(uuid("a4c4671c-499f-101b-bb78-00aa00383cbb")) Collection; and that _COM_SMARTPTR_TYPEDEF(_Collection, __uuidof(_Collection)); so what can i do by this thing now

                  Human knowledge belongs to the world.

                  S 1 Reply Last reply
                  0
                  • S Stuart Dootson

                    Don't be so fscking impatient - you'll find it just irritates the people who are trying to help you.

                    Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                    S Offline
                    S Offline
                    snouto
                    wrote on last edited by
                    #10

                    Where can i put that line my friend ? _COM_SMARTPTR_TYPEDEF(_Collection, __uuidof(_Collection)); in Resumemirror.tlh just before the line with the error or where exactly ????

                    Human knowledge belongs to the world.

                    1 Reply Last reply
                    0
                    • S Stuart Dootson

                      Don't be so fscking impatient - you'll find it just irritates the people who are trying to help you.

                      Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                      S Offline
                      S Offline
                      snouto
                      wrote on last edited by
                      #11

                      stuart please give me a full solution , i don't get you well my friend

                      Human knowledge belongs to the world.

                      1 Reply Last reply
                      0
                      • S snouto

                        i am sorry my friend , i found that struct __declspec(uuid("a4c4671c-499f-101b-bb78-00aa00383cbb")) Collection; and that _COM_SMARTPTR_TYPEDEF(_Collection, __uuidof(_Collection)); so what can i do by this thing now

                        Human knowledge belongs to the world.

                        S Offline
                        S Offline
                        Stuart Dootson
                        wrote on last edited by
                        #12

                        Put these two lines:

                        struct __declspec(uuid("a4c4671c-499f-101b-bb78-00aa00383cbb"))
                        Collection;

                        _COM_SMARTPTR_TYPEDEF(_Collection, __uuidof(_Collection));

                        in your .cpp file before the #import line. You probably need the definition (as opposed to declaration of _Collection as well - is there another definition of _Collection later in the tlh file, or in the tli file? If so - you need that

                        Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                        1 Reply Last reply
                        0
                        • S Stuart Dootson

                          Sounds like it has dependencies on another COM object. Try adding 'auto_search' to your #import statement - that will attempt to resolve dependencies such as this without you having to alter your code by implicitly importing the other libraries that are required:

                          #import "some-comm-item" auto_search

                          HTH!

                          Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                          V Offline
                          V Offline
                          Vozzie2
                          wrote on last edited by
                          #13

                          I had the same problem importing msado15.dll, a solution was found on some Chinese forum[^], adding rename("EOF", "adoEOF") on the end of the import statement line for example,

                          #import "c:\program files\common files\system\ado\msado15.dll" no_namespace rename("EOF", "adoEOF")

                          In my case the error was raised on a line inside msado15.tlh with folowing code

                          __declspec(property(get=GetEOF))
                          VARIANT_BOOL EOF;

                          So i suppose the conflict was on EOF being defined multiple times, and the rename solves this. HTH,... ;)

                          S 1 Reply Last reply
                          0
                          • V Vozzie2

                            I had the same problem importing msado15.dll, a solution was found on some Chinese forum[^], adding rename("EOF", "adoEOF") on the end of the import statement line for example,

                            #import "c:\program files\common files\system\ado\msado15.dll" no_namespace rename("EOF", "adoEOF")

                            In my case the error was raised on a line inside msado15.tlh with folowing code

                            __declspec(property(get=GetEOF))
                            VARIANT_BOOL EOF;

                            So i suppose the conflict was on EOF being defined multiple times, and the rename solves this. HTH,... ;)

                            S Offline
                            S Offline
                            Stuart Dootson
                            wrote on last edited by
                            #14

                            Yes, I discovered that was the root cause as well - it was the same issue with the VB run-time - it defines EOF as well. I'd have found that out if I'd made a little sample app (as I often do), but as I do not have (and, given the opportunity, will never have) VB6 on my machine, I thought I wouldn't be able to import the VB6 run-time. I must confess that I decided not to post this alternate solution, as the OP seemed...satisfied, and I don't like adding confusion :-) Thanks for your post, anyway!

                            Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                            V 1 Reply Last reply
                            0
                            • S Stuart Dootson

                              Yes, I discovered that was the root cause as well - it was the same issue with the VB run-time - it defines EOF as well. I'd have found that out if I'd made a little sample app (as I often do), but as I do not have (and, given the opportunity, will never have) VB6 on my machine, I thought I wouldn't be able to import the VB6 run-time. I must confess that I decided not to post this alternate solution, as the OP seemed...satisfied, and I don't like adding confusion :-) Thanks for your post, anyway!

                              Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                              V Offline
                              V Offline
                              Vozzie2
                              wrote on last edited by
                              #15

                              Now i'm confused :laugh: ;)

                              S 1 Reply Last reply
                              0
                              • V Vozzie2

                                Now i'm confused :laugh: ;)

                                S Offline
                                S Offline
                                Stuart Dootson
                                wrote on last edited by
                                #16

                                I worked out that renaming things in the #import was the right solution (rather than the hack I suggested) well after my previous posts in this thread - that's why I didn't re-post and suggest it.

                                Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                                1 Reply Last reply
                                0
                                Reply
                                • Reply as topic
                                Log in to reply
                                • Oldest to Newest
                                • Newest to Oldest
                                • Most Votes


                                • Login

                                • Don't have an account? Register

                                • Login or register to search.
                                • First post
                                  Last post
                                0
                                • Categories
                                • Recent
                                • Tags
                                • Popular
                                • World
                                • Users
                                • Groups