Thread
:
problems with CopyFileEX
View Single Post
Feb 27th, 2008, 6:43 PM
#
8
Cache
Hobbyist
Join Date: Sep 2005
Posts: 266
Rep Power:
4
Re: problems with CopyFileEX
LARGE_INTEGER is a union type. You have to access it's data members which are actually numeric types.
example:
(
Toggle Plain Text
)
LARGE_INTEGER x, y; LONGLONG z = (x.QuadPart / y.QuadPart) * 100;
LARGE_INTEGER x, y; LONGLONG z = (x.QuadPart / y.QuadPart) * 100;
http://msdn2.microsoft.com/en-us/lib...13(VS.85).aspx
Cache
View Public Profile
Find More Posts by Cache