I am trying to enumerate drives that are mounted without a direve letter so I can obtain the remaining space on each of the drives.This application must work with Windows XP so the Win32_Volume class
So in visual studio i have my solution with two projects, first one is managed c++ code and second one is unmanaged c++ library (waffles). I want to use classes from library in m开发者_Python百科y man
I have this method that I need to call and use in my application, but I don\'t know really know how to do it exactly.
I have several apps that need to create and write to Performance Counters. One of them is written in C++. Currently, upgrading 开发者_JAVA百科that app to .NET is not an option. Where is a good resourc
My team is currently using CppUnit for all our开发者_如何学Python unmanaged C++ unit tests but I\'m toying with the idea of transitioning to NUnit through either GenTestAsm (pure C#) or C++/CLI.Either
I have a class which uses a method in user32.dll: [System.Runtime.InteropServices.DllImport(\"user32.dll\")]
I have an unmanaged C++ application (unmanaged meaning: not using anything of the the fancy .Net stuff).I want to extend it with some meta information, and it looks like I could use the concept of att
This question already has answers here: Closed 12 years ago. Possible Duplicate: Iterate through struct variables.
I have a C# front end and a C++ backend for performance reasons. Now I would like to call a C++ function like for example:
I\'m writing a win32 dll for read/write USB HID device. The data for exchange is a 64 byte unsigned char array. The client program is written in C++/CLI.