User Profile

Collapse

Profile Sidebar

Collapse
michaelhsilva
michaelhsilva
Last Activity: Apr 4 '13, 03:00 PM
Joined: Feb 6 '12
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • C2712: Cannot use __try in functions that require object unwinding

    Hello,

    I am migrating a software writen with VC++ 6.0 to VS 2010/VC++2010. and I have a project which does not compile in Debug mode. I have:

    Code:
    LBSC_AppUserInfoList *			
    LBSC_Session::GetUsersInfo( const LBSC_Ticket *pTicket )
    {
    	TSROut_GetUsersInfo	sOut;
    	C_Buffer			*pcbRet = NULL;
    	TSRIn_TicketPar		InPar;
    //...
    	ClntFree( (void *)sOut.szBuffer );  // dealoca o
    ...
    See more | Go to post

  • michaelhsilva
    replied to Unresolved external symbol
    in C
    The error was solved when I reorganized the includes of a file .h to put #include <afxwin.h> to be the first. Go understand :) thanks for your replies.
    See more | Go to post

    Leave a comment:


  • michaelhsilva
    replied to Unresolved external symbol
    in C
    Making the project as a static library the error disapear. But another error appear, may I open a new thread? the error is:

    1>c:\program files\microsoft sdks\windows\v7 .0a\include\oai dl.h(226): error C2143: syntax error : missing ';' before 'constant'
    1>c:\program files\microsoft sdks\windows\v7 .0a\include\oai dl.h(226): error C2059: syntax error : 'constant'

    on the line:

    typedef CY CURRENCY;
    See more | Go to post

    Leave a comment:


  • michaelhsilva
    replied to Unresolved external symbol
    in C
    Yes I did. But error persists.
    See more | Go to post

    Leave a comment:


  • michaelhsilva
    replied to Unresolved external symbol
    in C
    I did dumpbin with lbwparser.lib for example and I saw that LBWParser::LBWP arser(void) and LBWParser::~LBW Parser(void) are there.
    See more | Go to post

    Leave a comment:


  • michaelhsilva
    started a topic Unresolved external symbol
    in C

    Unresolved external symbol

    Hi, I´m migrating a VC++ 6.0 project to VC++ 2010.

    I am sure I am linking the right libraries but still getting this error:

    1>LBW_Base_Priv ate.obj : error LNK2019: unresolved external symbol "public: __thiscall LBW_Parser::~LB W_Parser(void)" (??1LBW_Parser@ @QAE@XZ) referenced in function __unwindfunclet $??0LBW_Base@@A AE@XZ$0
    1>LBW_Base_Priv ate.obj : error LNK2019: unresolved external symbol "public:...
    See more | Go to post

  • michaelhsilva
    started a topic Unrecognizable template declaration/definition
    in C

    Unrecognizable template declaration/definition

    Hi folks!

    Is there anybody that can tell me what´s wrong with this template. I´ve migrate from VC++ 6 to VS 2010.

    template<int _Idx,
    class _Ty1,
    class _Ty2>
    typename _Pair_data<_Idx , _STD pair<_Ty1, _Ty2> >::_CType
    get(const _STD pair<_Ty1, _Ty2>& _Pr)
    { // return element at _Idx in pair _Pr
    return (_Pair_data<_Id x, _STD pair<_Ty1, _Ty2>...
    See more | Go to post
No activity results to display
Show More
Working...