1

I'm making a project with dotras library and I want to make the executable compatible with both windows 7 and windows XP. The point is that dotras has two different libraries with the same name (one for win 7 and one for win XP). I was wondering if it's possible to include both and, basing on the running O.S., load & use the right one.

I'm using Visual Studio 2013 but I'm really new to it. any suggestions/examples?

Francesco
  • 95
  • 1
  • 7

1 Answers1

1

Are the functions in the dotras library the same in both versions? Also are the assembly versions the same? If yes, you try using LoadLibrary. See Loading dll library from Resource to Current Domain(Embedding dll in main exe file)

Community
  • 1
  • 1
Ganesh R.
  • 4,337
  • 3
  • 30
  • 46