Search:

Type: Posts; User: Codeplug

Search: Search took 0.04 seconds.

  1. Ideally, your DLL interface would only expose /...

    Ideally, your DLL interface would only expose / transfer POD types - or other exported types. Since Device is using std:string, it's implicitly exported (which causes the warning). Here is how you...
  2. Yes, but it's not safe unless you use the exact...

    Yes, but it's not safe unless you use the exact same STL implementation with the exact same build options. It's just too easy for things to go wrong.

    gg
  3. You shouldn't pass CRT or STL objects across...

    You shouldn't pass CRT or STL objects across module (dll/exe) boundaries. When you export a class, you implicitly export all members and base classes.
    ...
Results 1 to 3 of 3