mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Improve win32 types
This commit is contained in:
+22
-10
@@ -1027,16 +1027,28 @@ TRACKMOUSEEVENT :: struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
WIN32_FIND_DATAW :: struct {
|
WIN32_FIND_DATAW :: struct {
|
||||||
dwFileAttributes: DWORD,
|
dwFileAttributes: DWORD,
|
||||||
ftCreationTime: FILETIME,
|
ftCreationTime: FILETIME,
|
||||||
ftLastAccessTime: FILETIME,
|
ftLastAccessTime: FILETIME,
|
||||||
ftLastWriteTime: FILETIME,
|
ftLastWriteTime: FILETIME,
|
||||||
nFileSizeHigh: DWORD,
|
nFileSizeHigh: DWORD,
|
||||||
nFileSizeLow: DWORD,
|
nFileSizeLow: DWORD,
|
||||||
dwReserved0: DWORD,
|
dwReserved0: DWORD,
|
||||||
dwReserved1: DWORD,
|
dwReserved1: DWORD,
|
||||||
cFileName: [260]wchar_t, // #define MAX_PATH 260
|
cFileName: [MAX_PATH]WCHAR,
|
||||||
cAlternateFileName: [14]wchar_t,
|
cAlternateFileName: [14]WCHAR,
|
||||||
|
_OBSOLETE_dwFileType: DWORD, // Obsolete. Do not use.
|
||||||
|
_OBSOLETE_dwCreatorType: DWORD, // Obsolete. Do not use
|
||||||
|
_OBSOLETE_wFinderFlags: WORD, // Obsolete. Do not use
|
||||||
|
}
|
||||||
|
|
||||||
|
FILE_ID_128 :: struct {
|
||||||
|
Identifier: [16]BYTE,
|
||||||
|
}
|
||||||
|
|
||||||
|
FILE_ID_INFO :: struct {
|
||||||
|
VolumeSerialNumber: ULONGLONG,
|
||||||
|
FileId: FILE_ID_128,
|
||||||
}
|
}
|
||||||
|
|
||||||
CREATESTRUCTA :: struct {
|
CREATESTRUCTA :: struct {
|
||||||
|
|||||||
Reference in New Issue
Block a user