Skip to content

Commit

Permalink
add _r_taskbar_initialize, _r_taskbar_destroy, _r_taskbar_setprogress…
Browse files Browse the repository at this point in the history
…state, _r_taskbar_setprogressvalue, _r_taskbar_setoverlayicon

add _r_imagelist_addicon, _r_imagelist_getsystem
add _r_fs_getobjectname, _r_fs_isdirectory
add _r_workqueue_getsemaphore
add _r_path_getnametype
add _r_shell_openkey
upd _r_sys_gettempdirectory, _r_sys_createprocess, _r_sys_getbinarytype, _r_sys_getmemoryinfo, _r_sys_registerrestart, _r_sys_runasadmin
upd _r_imagelist_create, _r_imagelist_destroy, _r_imagelist_add, _r_imagelist_getsize, _r_imagelist_setsize
upd _r_workqueue_initialize, _r_workqueue_queueitem
upd _r_shell_showfile, _r_shell_resolveshortcut
upd _r_reg_enumvalues, _r_reg_queryvalue
upd _r_dc_drawtext, _r_dc_getcoloraccent
upd _r_tray_initialize, _r_tray_create
upd _r_path_getknownfolder
upd _r_math_generateguid
upd _r_autorun_isenabled
upd _r_ctrl_settipstyle
upd _r_format_interval
upd _r_skipuac_enable
upd _r_res_loadimage
upd _r_ctrl_enable
upd sal annotations
fix _r_str_fromhex
  • Loading branch information
henrypp committed Sep 10, 2024
1 parent e656585 commit db4dcbc
Show file tree
Hide file tree
Showing 6 changed files with 1,279 additions and 660 deletions.
7 changes: 4 additions & 3 deletions src/ntapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -892,6 +892,7 @@ typedef enum _MEMORY_INFORMATION_CLASS
MemoryPhysicalContiguityInformation, // MEMORY_PHYSICAL_CONTIGUITY_INFORMATION // since 20H1
MemoryBadInformation, // since WIN11
MemoryBadInformationAllProcesses, // since 22H1
MemoryImageExtensionInformation, // MEMORY_IMAGE_EXTENSION_INFORMATION // since 24H2
MaxMemoryInfoClass
} MEMORY_INFORMATION_CLASS;

Expand Down Expand Up @@ -1744,8 +1745,8 @@ typedef struct _TOKEN_SECURITY_ATTRIBUTE_FQBN_VALUE

typedef struct _TOKEN_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE
{
PVOID pValue;
ULONG ValueLength;
PVOID Value; // Pointer is BYTE aligned.
ULONG ValueLength; // In bytes
} TOKEN_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE, *PTOKEN_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE;

typedef struct _TOKEN_SECURITY_ATTRIBUTE_V1
Expand Down Expand Up @@ -2445,7 +2446,7 @@ typedef struct _KUSER_SHARED_DATA
volatile ULONG DismountCount;

// This field indicates the status of the 64-bit COM+ package on the
// system. It indicates whether the Itermediate Language (IL) COM+
// system. It indicates whether the Intermediate Language (IL) COM+
// images need to use the 64-bit COM+ runtime or the 32-bit COM+ runtime.
ULONG ComPlusPackage;

Expand Down
Loading

0 comments on commit db4dcbc

Please sign in to comment.