|
-
April 5th, 1999, 12:11 PM
#1
ULARGE_INTEGER
Does anyone know how to convert Microsoft's ULARGE_INTEGER data type to a string?
-
April 5th, 1999, 02:29 PM
#2
Re: ULARGE_INTEGER
Try this :
sprintf( buffer, "value is %I64d\n", ulargeint.QuadPart );
I would guess that the CString Format member can handle this also.
-
April 5th, 1999, 03:10 PM
#3
Re: ULARGE_INTEGER
Thanks for your reply.
Actually, I found that Microsoft had the function '_ui64toa()'.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|