Quote
(DWORD) Logon Type
(DWORD) Server Token
(DWORD) UDPValue**
(FILETIME) MPQ filetime
(STRING) IX86ver filename
(STRING) ValueString
http://bnetdocs.valhallalegends.com/content.php?Code=3
I'm wondering how to send FILETIME and what exactly it does. :-/
And on another note please dont PM me about NLS.dll i dont care about Warcraft III stuff anymore so dont bother me.
Battle.net sends it to you
im trying to send it to my d2 client
(trying to craft a weird sort of application)
Take the value Battle.net gives you and then send it.
Filetime is a QWORD, 8 BYTES, 4 WORDS, 2 DWORDS.
EDIT: Wow i was sleepy
Quote from: BaDDBLooDmpq is a QWORD
No, it's a 64-bit FILETIME (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/filetime_str.asp) structure and it should be handled as such.
<3 TY :)
Quote from: LoRd[nK] on October 31, 2004, 01:07 AM
Quote from: BaDDBLooDmpq is a QWORD
No, it's a 64-bit FILETIME (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/filetime_str.asp) structure and it should be handled as such.
Although really, a FILETIME structure is a QWORD when represented in memory. :P
Quote from: MyndFyre on October 31, 2004, 03:46 PM
Quote from: LoRd[nK] on October 31, 2004, 01:07 AM
Quote from: BaDDBLooDmpq is a QWORD
No, it's a 64-bit FILETIME (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/filetime_str.asp) structure and it should be handled as such.
Although really, a FILETIME structure is a QWORD when represented in memory. :P
No, because it's not guaranteed to be aligned like a ULONGLONG would be (http://weblogs.asp.net/oldnewthing/archive/2004/08/25/220195.aspx).
Quote from: Skywing on November 01, 2004, 12:38 AM
Quote from: MyndFyre on October 31, 2004, 03:46 PM
Quote from: LoRd[nK] on October 31, 2004, 01:07 AM
Quote from: BaDDBLooDmpq is a QWORD
No, it's a 64-bit FILETIME (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/filetime_str.asp) structure and it should be handled as such.
Although really, a FILETIME structure is a QWORD when represented in memory. :P
No, because it's not guaranteed to be aligned like a ULONGLONG would be (http://weblogs.asp.net/oldnewthing/archive/2004/08/25/220195.aspx).
Ooooh, neato. Thanks for the info Skywing!