Comparing version 13.6.0 to 13.7.0
export * from './lib/consts/wingdi.enum.js'; | ||
export * from './lib/consts/winuser.const.js'; | ||
export * from './lib/keyboard-mouse-input/virtual-key.consts.js'; |
export * from './lib/consts/wingdi.enum.js'; | ||
export * from './lib/consts/winuser.const.js'; | ||
export * from './lib/keyboard-mouse-input/virtual-key.consts.js'; | ||
//# sourceMappingURL=index.consts.js.map |
@@ -0,1 +1,11 @@ | ||
/** | ||
* @link https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-flashwinfo | ||
*/ | ||
export declare const FLASHWINFO: { | ||
readonly cbSize: import("../def.enum.js").Def.uint; | ||
readonly hwnd: import("../def.enum.js").Def.uint32 | import("../def.enum.js").Def.uint64; | ||
readonly dwFlags: import("../def.enum.js").Def.uint32; | ||
readonly uCount: import("../def.enum.js").Def.uint; | ||
readonly dwTimeout: import("../def.enum.js").Def.uint32; | ||
}; | ||
/** https://docs.microsoft.com/zh-cn/windows/win32/api/winuser/ns-winuser-rid_device_info */ | ||
@@ -2,0 +12,0 @@ export declare const RID_DEVICE_INFO: { |
@@ -1,5 +0,15 @@ | ||
import { DWORD } from '../common.def.js'; | ||
import { DWORD, HWND, UINT, } from '../common.def.js'; | ||
import { UnionType } from '../helper.js'; | ||
import { RID_DEVICE_INFO_DUMMYUNIONNAME } from '../union/union.def.js'; | ||
// import * as UT from '../union/union.types.js' | ||
/** | ||
* @link https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-flashwinfo | ||
*/ | ||
export const FLASHWINFO = { | ||
cbSize: UINT, | ||
hwnd: HWND, | ||
dwFlags: DWORD, | ||
uCount: UINT, | ||
dwTimeout: DWORD, | ||
}; | ||
/** https://docs.microsoft.com/zh-cn/windows/win32/api/winuser/ns-winuser-rid_device_info */ | ||
@@ -6,0 +16,0 @@ export const RID_DEVICE_INFO = { |
@@ -1,3 +0,14 @@ | ||
import { DWORD, StructInstanceBase, _POINTER } from '../common.types.js'; | ||
import { DWORD, HWND, StructInstanceBase, UINT, _POINTER } from '../common.types.js'; | ||
import { RID_DEVICE_INFO_DUMMYUNIONNAME } from '../union/union.types.js'; | ||
/** | ||
* @link https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-flashwinfo | ||
*/ | ||
export interface FLASHWINFO extends StructInstanceBase { | ||
cbSize: UINT; | ||
hwnd: HWND; | ||
dwFlags: DWORD; | ||
uCount: UINT; | ||
dwTimeout: DWORD; | ||
} | ||
export declare type PFLASHWINFO = _POINTER; | ||
/** https://docs.microsoft.com/zh-cn/windows/win32/api/winuser/ns-winuser-rid_device_info */ | ||
@@ -4,0 +15,0 @@ export interface RID_DEVICE_INFO extends StructInstanceBase { |
import { Def } from '../def.enum.js'; | ||
/** | ||
* @link https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-flashwinfo | ||
*/ | ||
export declare const FLASHWINFO = Def.ptr; | ||
/** https://docs.microsoft.com/zh-cn/windows/win32/api/wingdi/ns-wingdi-display_devicew */ | ||
export declare const RID_DEVICE_INFO = Def.ptr; |
import { Def } from '../def.enum.js'; | ||
/** | ||
* @link https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-flashwinfo | ||
*/ | ||
export const FLASHWINFO = Def.ptr; | ||
/** https://docs.microsoft.com/zh-cn/windows/win32/api/wingdi/ns-wingdi-display_devicew */ | ||
export const RID_DEVICE_INFO = Def.ptr; | ||
//# sourceMappingURL=winuser.var.def.js.map |
{ | ||
"name": "win32-def", | ||
"author": "waiting", | ||
"version": "13.6.0", | ||
"version": "13.7.0", | ||
"description": "win32 definitions for node-ffi", | ||
@@ -99,3 +99,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "ff092ad8002923a828b73017369a56e9527a47e0" | ||
"gitHead": "24e96609ada2f82baf316154c8f220d8edad8a58" | ||
} |
export * from './lib/consts/wingdi.enum.js' | ||
export * from './lib/consts/winuser.const.js' | ||
export * from './lib/keyboard-mouse-input/virtual-key.consts.js' | ||
@@ -1,2 +0,6 @@ | ||
import { DWORD } from '../common.def.js' | ||
import { | ||
DWORD, | ||
HWND, | ||
UINT, | ||
} from '../common.def.js' | ||
import { UnionType } from '../helper.js' | ||
@@ -7,2 +11,13 @@ import { RID_DEVICE_INFO_DUMMYUNIONNAME } from '../union/union.def.js' | ||
/** | ||
* @link https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-flashwinfo | ||
*/ | ||
export const FLASHWINFO = { | ||
cbSize: UINT, | ||
hwnd: HWND, | ||
dwFlags: DWORD, | ||
uCount: UINT, | ||
dwTimeout: DWORD, | ||
} as const | ||
/** https://docs.microsoft.com/zh-cn/windows/win32/api/winuser/ns-winuser-rid_device_info */ | ||
@@ -9,0 +24,0 @@ export const RID_DEVICE_INFO = { |
import { | ||
DWORD, | ||
HWND, | ||
StructInstanceBase, | ||
UINT, | ||
_POINTER, | ||
@@ -9,2 +11,15 @@ } from '../common.types.js' | ||
/** | ||
* @link https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-flashwinfo | ||
*/ | ||
export interface FLASHWINFO extends StructInstanceBase { | ||
cbSize: UINT | ||
hwnd: HWND | ||
dwFlags: DWORD | ||
uCount: UINT | ||
dwTimeout: DWORD | ||
} | ||
export type PFLASHWINFO = _POINTER | ||
/** https://docs.microsoft.com/zh-cn/windows/win32/api/winuser/ns-winuser-rid_device_info */ | ||
@@ -11,0 +26,0 @@ export interface RID_DEVICE_INFO extends StructInstanceBase { |
import { Def } from '../def.enum.js' | ||
/** | ||
* @link https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-flashwinfo | ||
*/ | ||
export const FLASHWINFO = Def.ptr | ||
/** https://docs.microsoft.com/zh-cn/windows/win32/api/wingdi/ns-wingdi-display_devicew */ | ||
export const RID_DEVICE_INFO = Def.ptr | ||
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
286318
122
6089