|
Using raw read to read Hard disk sectors Hi, I want to use raw read() to read and dump out contents of the sectors of a hard disk partition. I searched on the net but haven't found very useful links. I want to do this using just plain "C" without using any Win32 APIs. Appreciate if someone can point me to some links. TIA, SD ... 9 May 2008 04:59
side-by-side info problem hi, i have just installed vista ultimate on my laptop. i tried to run the application on it, which i wrote on my XP desktop in native vc++. i got: 'side-by-side configuration error'. 1. what is the 'side-by-side configuration'? 2. how to fix this? ... 10 May 2008 19:01
two dimensional array using vector I would like to use a library that would allow me to create the equivalent of a two-dimensional array the same way that I am able to use the vector as a one dimensional array. Is that possible with the vector library or is there another? Daniel ... 9 May 2008 04:59
does vstudio 2005 run perfectly on vista? does vstudio 2005 run perfectly under vista? and if you don't need .net (if you program in native)? regards, marco ... 9 May 2008 16:59
emulation of gethostbyaddr to resolve to NetBIOS name I have encountered this issue: http://support.microsoft.com/kb/154608 (In my case, reverse DNS is not configured, so getnameinfo returns an IP address and gethostbyaddr, a NetBIOS name prefixed with IS~.) Obviously I could remove IS~ and perhaps that would be it, for I am aware of this table: http://support... 9 May 2008 01:51
(VC++ 6.0) Strange single step behavior Hi, While I debug an application in VS 6.0, I noticed a strange behavior : Value of a local variable (an int) increases by one for every single step. Even when the line in which the variable initialized to zero is stepped out, the variable is still getting increased : void func () { int i, j; ... 10 May 2008 00:02
Access Violation? void CSimplus6View::Init(const cCamera& defaultCamera, D3DFILLMODE defaultFillmode) { m_Camera = defaultCamera; <<< access violation m_Fillmode = defaultFillmode; I defined m_Camera as cCamera cCamera cam[4] init(cam[0], D3DFILL_MODE); //////////////////////////////////////////// class cCamera { p... 9 May 2008 06:33
Interesting Debug/Release build difference Hi, While I debugging an appliation I noticed an interesting nuance. If I build the application with Debug configuration and then successively call a function, the local variables of that function is not preserve their previous values. But If I build with Release configuration and do same things then the re... 8 May 2008 07:33
C2664 on initializing auto_ptr with const patam in constructor Hello, I've got a class like this: namespace Spimaging { class SPIMAGING_API StackOpZDivision: public IStackOperation { private: const auto_ptr<Spimage> m_opDivisor; public: explicit StackOpZDivision(const Spimage* i_opDivisor); .... }; StackOpZDivision::StackOpZDivision(const Spimage* i_opDivisor):... 8 May 2008 08:33
afxwin.h not found I downloaded the code for this tutorial -- http://msdn.microsoft.com/en-us/visualc/cc507088.aspx. When I try to build it in Visual C++, I get an error saying: fatal error C1083: Cannot open include file: 'afxwin.h': No such file or directory The error points to the line that says: #include <afxwin.h> /... 9 May 2008 01:51 |