[C++-sig] boost::python executes wrong implementation

2010-11-02 Thread AdrianB
Hello The Situation: There are three modules involved: a) myapi.pyd b) myapi.dll c) myserver.dll myapi is a VC++ Project which exposes few classes and methods to python. myapi.pyd is a UNICODE build, to be used in python. myapi.dll is a ANSI build, to be used embedded by the myserver.dll mys

Re: [C++-sig] boost::python executes wrong implementation

2010-11-03 Thread AdrianB
Nat Linden lindenlab.com> writes: > Try renaming myapi.dll ... thanks for the hint. my real life scenario uses: MY-API.DLL myapi.pyd sorry for not mentioning this <:o) best regards Adrian ___ Cplusplus-sig mailing list Cplusplus-sig@python.org http:/

Re: [C++-sig] boost::python executes wrong implementation

2010-11-08 Thread AdrianB
HI, still hopeing somone could comme up with anny idea for: http://article.gmane.org/gmane.comp.python.c%2B%2B/15036 regards Adrian ___ Cplusplus-sig mailing list Cplusplus-sig@python.org http://mail.python.org/mailman/listinfo/cplusplus-sig

[C++-sig] init< LPCTSTR > error if used in static member of same class

2011-02-23 Thread AdrianB
Anny Idea why following situation failes to compile? class A { public: A( LPCTSTR szParam ){}; ~A(){}; }; class B: public A { public: B( LPCTSTR szParam ) A(szParam){}; ~B(){}; static void includePyModuleDefinition(); }; void B::includePyModuleDefinition(

Re: [C++-sig] init< LPCTSTR > error if used in static member of same class

2011-03-03 Thread AdrianB
AdrianB plato-ag.com> writes: I finally found one reason for this behaviour... In my Module I included json-spirit, also based on boost. We have a helper methods gathered into a Include file. And there I found using namespace boost; using namespace json-spirit; Although my CPP File sta