Jump to content

WinAPIEx UDF


Yashied
 Share

Recommended Posts

Link to comment
Share on other sites

  • 3 weeks later...

My OS is XP(SP3)。

When I run  _WinAPI_GetDriveGeometryEx,the sample code  returns  all 0.

Does   anybody    know the reason?  

Thanks!

#Include <WinAPIEx.au3>

Opt('MustDeclareVars', 1)

Global $tDISK_GEOMETRY_EX, $Drive = 0



While 1
    $tDISK_GEOMETRY_EX = _WinAPI_GetDriveGeometryEx($Drive)
    If @error Then
        ExitLoop
    EndIf
    If Not $Drive Then
        ConsoleWrite('-------------------------------' & @CR)
    EndIf
    ConsoleWrite('Drive: ' & $Drive & @CR)
    ConsoleWrite('Cylinders: ' & DllStructGetData($tDISK_GEOMETRY_EX, 'Cylinders') & @CR)
    ;ConsoleWrite('Cylinders: ' & DllStructGetData($tDISK_GEOMETRY_EX, 0) & @CR)
    ConsoleWrite('Tracks per Cylinder: ' & DllStructGetData($tDISK_GEOMETRY_EX, 'TracksPerCylinder') & @CR)
    ConsoleWrite('Sectors per Track: ' & DllStructGetData($tDISK_GEOMETRY_EX, 'SectorsPerTrack') & @CR)
    ConsoleWrite('Bytes per Sector: ' & DllStructGetData($tDISK_GEOMETRY_EX, 'BytesPerSector') & ' bytes' & @CR)
    ConsoleWrite('Total Space: ' & DllStructGetData($tDISK_GEOMETRY_EX, 'DiskSize') & ' bytes' & @CR& @CR)
    ConsoleWrite('-------------------------------' & @CR)
    ;MsgBox(0,"",DllStructGetData($tDISK_GEOMETRY_EX, 'DiskSize'))
    $Drive +=1
WEnd
Link to comment
Share on other sites

When I run  _WinAPI_GetDriveGeometryEx,the sample code  returns  all 0.

Does   anybody    know the reason?

Because the function returns an array and not a structure.

#include <WinAPIEx.au3>

Opt('MustDeclareVars', 1)

Global $aRet, $Drive = 0

While 1
$aRet = _WinAPI_GetDriveGeometryEx($Drive)
If @error Then
ExitLoop
EndIf
If Not $Drive Then
ConsoleWrite('-------------------------------' & @CR)
EndIf
ConsoleWrite('Drive: ' & $Drive & @CR)

ConsoleWrite('Cylinders: ' & $aRet[0] & @CR)
ConsoleWrite('Type of media: ' & $aRet[1] & @CR)
ConsoleWrite('Tracks per Cylinder: ' & $aRet[2] & @CR)
ConsoleWrite('Sectors per Track: ' & $aRet[3] & @CR)
ConsoleWrite('Bytes per Sector: ' & $aRet[4] & ' bytes' & @CR)
ConsoleWrite('Total Space: ' & $aRet[5] & ' bytes' & @CR & @CR)
ConsoleWrite('-------------------------------' & @CR)
$Drive += 1
WEnd
Edited by KaFu
Link to comment
Share on other sites

The WinAPIEx help file is pretty descriptive about that function.

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

Because the function returns an array and not a structure.

 

#include <WinAPIEx.au3>

Opt('MustDeclareVars', 1)

Global $aRet, $Drive = 0

While 1
$aRet = _WinAPI_GetDriveGeometryEx($Drive)
If @error Then
ExitLoop
EndIf
If Not $Drive Then
ConsoleWrite('-------------------------------' & @CR)
EndIf
ConsoleWrite('Drive: ' & $Drive & @CR)

ConsoleWrite('Cylinders: ' & $aRet[0] & @CR)
ConsoleWrite('Type of media: ' & $aRet[1] & @CR)
ConsoleWrite('Tracks per Cylinder: ' & $aRet[2] & @CR)
ConsoleWrite('Sectors per Track: ' & $aRet[3] & @CR)
ConsoleWrite('Bytes per Sector: ' & $aRet[4] & ' bytes' & @CR)
ConsoleWrite('Total Space: ' & $aRet[5] & ' bytes' & @CR & @CR)
ConsoleWrite('-------------------------------' & @CR)
$Drive += 1
WEnd

Thanks a lot.

I have a wrong version of help file.

Link to comment
Share on other sites

Re-download it again as you probably deleted it last time.

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

LAST VERSION - 3.8

03-Jul-12

 

MSDN_logo_new.png

This library contains the WinAPI functions are not included for unknown reasons to the native AutoIt WinAPI library. I use this UDF in nearly all of my programs, and decided to share it with the AutoIt community. I agree that over time some of these functions will be part of the native AutoIt library, but still... The library includes some undocumented, but useful functions (eg _WinAPI_GetFontResourceInfo()). The library also contains all the necessary constants to work with the appropriate functions. Most functions from this UDF intended for experienced users, but beginners will find the same lot of useful information for yourself. I will be to periodically add new functions to the library.

The archive contains WinAPIEx library, and as usual an excellent examples from me. Some examples I took from this forum and to simplify them for better understanding. For those who use SciTE (full version) I have prepared the au3.userudfs.properties and au3.user.calltips.api files to highlight functions from this UDF in your scripts. Just copy this files to ...SciTEProperties and ...SciTEAPI, respectively. I hope this UDF will be useful for many as for me. I look forward to any feedback and suggestions. Maybe somebody wants to add new WinAPI functions?

Credits

Authenticity

GEOSoft

KaFu

Martin

MrCreatoR

Prog@ndy

Rover

WideBoyDixon

et al.

Available functions

_WinAPI_AbortPath

_WinAPI_AboutDlg

_WinAPI_ActivateKeyboardLayout

_WinAPI_AddClipboardFormatListener

_WinAPI_AddFontMemResourceEx

_WinAPI_AddFontResourceEx

_WinAPI_AddIconOverlay

_WinAPI_AddIconTransparency

_WinAPI_AddMRUString

_WinAPI_AdjustBitmap

_WinAPI_AdjustTokenPrivileges

_WinAPI_AdjustWindowRectEx

_WinAPI_AlphaBlend

_WinAPI_AngleArc

_WinAPI_AnimateWindow

_WinAPI_Arc

_WinAPI_ArcTo

_WinAPI_ArrayToStruct

_WinAPI_AssignProcessToJobObject

_WinAPI_AssocGetPerceivedType

_WinAPI_AssocQueryString

_WinAPI_BackupRead

_WinAPI_BackupReadAbort

_WinAPI_BackupSeek

_WinAPI_BackupWrite

_WinAPI_BackupWriteAbort

_WinAPI_BeginBufferedPaint

_WinAPI_BeginDeferWindowPos

_WinAPI_BeginPaint

_WinAPI_BeginPath

_WinAPI_BeginUpdateResource

_WinAPI_BringWindowToTop

_WinAPI_BroadcastSystemMessage

_WinAPI_BrowseForFolderDlg

_WinAPI_BufferedPaintClear

_WinAPI_BufferedPaintInit

_WinAPI_BufferedPaintSetAlpha

_WinAPI_BufferedPaintUnInit

_WinAPI_CalculatePopupWindowPosition

_WinAPI_CallWindowProcW

_WinAPI_CascadeWindows

_WinAPI_ChangeWindowMessageFilterEx

_WinAPI_CharToOem

_WinAPI_ChildWindowFromPointEx

_WinAPI_ClipCursor

_WinAPI_CloseDesktop

_WinAPI_CloseEnhMetaFile

_WinAPI_CloseFigure

_WinAPI_CloseThemeData

_WinAPI_CloseWindow

_WinAPI_CloseWindowStation

_WinAPI_CLSIDFromProgID

_WinAPI_CoInitialize

_WinAPI_ColorAdjustLuma

_WinAPI_ColorHLSToRGB

_WinAPI_ColorRGBToHLS

_WinAPI_CombineTransform

_WinAPI_CommandLineToArgv

_WinAPI_CommDlgExtendedErrorEx

_WinAPI_CompareString

_WinAPI_CompressBitmapBits

_WinAPI_CompressBuffer

_WinAPI_ComputeCrc32

_WinAPI_ConfirmCredentials

_WinAPI_CopyBitmap

_WinAPI_CopyCursor

_WinAPI_CopyEnhMetaFile

_WinAPI_CopyFileEx

_WinAPI_CopyImage

_WinAPI_CopyRect

_WinAPI_CopyStruct

_WinAPI_CoTaskMemAlloc

_WinAPI_CoTaskMemFree

_WinAPI_CoTaskMemRealloc

_WinAPI_CoUninitialize

_WinAPI_Create32BitHBITMAP

_WinAPI_Create32BitHICON

_WinAPI_CreateANDBitmap

_WinAPI_CreateBitmapIndirect

_WinAPI_CreateBrushIndirect

_WinAPI_CreateBuffer

_WinAPI_CreateBufferFromStruct

_WinAPI_CreateCaret

_WinAPI_CreateColorAdjustment

_WinAPI_CreateCompatibleBitmapEx

_WinAPI_CreateDesktop

_WinAPI_CreateDIB

_WinAPI_CreateDIBColorTable

_WinAPI_CreateDIBitmap

_WinAPI_CreateDIBSection

_WinAPI_CreateDirectory

_WinAPI_CreateDirectoryEx

_WinAPI_CreateEllipticRgn

_WinAPI_CreateEmptyIcon

_WinAPI_CreateEnhMetaFile

_WinAPI_CreateFileEx

_WinAPI_CreateFileMapping

_WinAPI_CreateFontEx

_WinAPI_CreateGUID

_WinAPI_CreateHardLink

_WinAPI_CreateIcon

_WinAPI_CreateIconFromResourceEx

_WinAPI_CreateIconIndirect

_WinAPI_CreateJobObject

_WinAPI_CreateMargins

_WinAPI_CreateMRUList

_WinAPI_CreateMutex

_WinAPI_CreateNullRgn

_WinAPI_CreateNumberFormatInfo

_WinAPI_CreateObjectID

_WinAPI_CreatePoint

_WinAPI_CreatePolygonRgn

_WinAPI_CreateProcessWithToken

_WinAPI_CreateRect

_WinAPI_CreateRectEx

_WinAPI_CreateRectRgnIndirect

_WinAPI_CreateSemaphore

_WinAPI_CreateSize

_WinAPI_CreateStreamOnHGlobal

_WinAPI_CreateString

_WinAPI_CreateSymbolicLink

_WinAPI_CreateTransform

_WinAPI_CreateWindowStation

_WinAPI_DecompressBuffer

_WinAPI_DecryptFile

_WinAPI_DeferWindowPos

_WinAPI_DefineDosDevice

_WinAPI_DefRawInputProc

_WinAPI_DefSubclassProc

_WinAPI_DefWindowProcW

_WinAPI_DeleteEnhMetaFile

_WinAPI_DeleteFile

_WinAPI_DeleteObjectID

_WinAPI_DeleteVolumeMountPoint

_WinAPI_DeregisterShellHookWindow

_WinAPI_DestroyCaret

_WinAPI_DestroyCursor

_WinAPI_DeviceIoControl

_WinAPI_DisplayStruct

_WinAPI_DllGetVersion

_WinAPI_DllInstall

_WinAPI_DllUninstall

_WinAPI_DPtoLP

_WinAPI_DragAcceptFiles

_WinAPI_DragFinish

_WinAPI_DragQueryFileEx

_WinAPI_DragQueryPoint

_WinAPI_DrawAnimatedRects

_WinAPI_DrawBitmap

_WinAPI_DrawFocusRect

_WinAPI_DrawShadowText

_WinAPI_DrawThemeBackground

_WinAPI_DrawThemeEdge

_WinAPI_DrawThemeIcon

_WinAPI_DrawThemeParentBackground

_WinAPI_DrawThemeText

_WinAPI_DrawThemeTextEx

_WinAPI_DuplicateEncryptionInfoFile

_WinAPI_DuplicateHandle

_WinAPI_DuplicateTokenEx

_WinAPI_DwmDefWindowProc

_WinAPI_DwmEnableBlurBehindWindow

_WinAPI_DwmEnableComposition

_WinAPI_DwmExtendFrameIntoClientArea

_WinAPI_DwmGetColorizationColor

_WinAPI_DwmGetColorizationParameters

_WinAPI_DwmGetWindowAttribute

_WinAPI_DwmInvalidateIconicBitmaps

_WinAPI_DwmIsCompositionEnabled

_WinAPI_DwmQueryThumbnailSourceSize

_WinAPI_DwmRegisterThumbnail

_WinAPI_DwmSetColorizationParameters

_WinAPI_DwmSetIconicLivePreviewBitmap

_WinAPI_DwmSetIconicThumbnail

_WinAPI_DwmSetWindowAttribute

_WinAPI_DwmUnregisterThumbnail

_WinAPI_DwmUpdateThumbnailProperties

_WinAPI_DWordToFloat

_WinAPI_DWordToInt

_WinAPI_EjectMedia

_WinAPI_Ellipse

_WinAPI_EmptyWorkingSet

_WinAPI_EncryptFile

_WinAPI_EncryptionDisable

_WinAPI_EndBufferedPaint

_WinAPI_EndDeferWindowPos

_WinAPI_EndPaint

_WinAPI_EndPath

_WinAPI_EndUpdateResource

_WinAPI_EnumChildProcess

_WinAPI_EnumChildWindows

_WinAPI_EnumDesktops

_WinAPI_EnumDesktopWindows

_WinAPI_EnumDeviceDrivers

_WinAPI_EnumDisplayMonitors

_WinAPI_EnumDisplaySettings

_WinAPI_EnumDllProc

_WinAPI_EnumFiles

_WinAPI_EnumFileStreams

_WinAPI_EnumFontFamilies

_WinAPI_EnumHardLinks

_WinAPI_EnumMRUList

_WinAPI_EnumPageFiles

_WinAPI_EnumProcessHandles

_WinAPI_EnumProcessModules

_WinAPI_EnumProcessThreads

_WinAPI_EnumProcessWindows

_WinAPI_EnumRawInputDevices

_WinAPI_EnumResourceLanguages

_WinAPI_EnumResourceNames

_WinAPI_EnumResourceTypes

_WinAPI_EnumSystemGeoID

_WinAPI_EnumSystemLocales

_WinAPI_EnumUILanguages

_WinAPI_EnumWindowStations

_WinAPI_EqualMemory

_WinAPI_EqualRect

_WinAPI_EqualRgn

_WinAPI_ExcludeClipRect

_WinAPI_ExtCreatePen

_WinAPI_ExtCreateRegion

_WinAPI_ExtFloodFill

_WinAPI_ExtractIcon

_WinAPI_ExtSelectClipRgn

_WinAPI_FatalExit

_WinAPI_FileEncryptionStatus

_WinAPI_FileExists

_WinAPI_FileIconInit

_WinAPI_FileInUse

_WinAPI_FillMemory

_WinAPI_FillPath

_WinAPI_FillRect

_WinAPI_FillRgn

_WinAPI_FindClose

_WinAPI_FindCloseChangeNotification

_WinAPI_FindFirstChangeNotification

_WinAPI_FindFirstFile

_WinAPI_FindFirstFileName

_WinAPI_FindFirstStream

_WinAPI_FindNextChangeNotification

_WinAPI_FindNextFile

_WinAPI_FindNextFileName

_WinAPI_FindNextStream

_WinAPI_FindResource

_WinAPI_FindResourceEx

_WinAPI_FindTextDlg

_WinAPI_FlattenPath

_WinAPI_FloatToDWord

_WinAPI_FlushFRBuffer

_WinAPI_FlushViewOfFile

_WinAPI_FormatDriveDlg

_WinAPI_FrameRect

_WinAPI_FrameRgn

_WinAPI_FreeMemory

_WinAPI_FreeMRUList

_WinAPI_FreeResource

_WinAPI_GdiComment

_WinAPI_GetActiveWindow

_WinAPI_GetAllUsersProfileDirectory

_WinAPI_GetApplicationRestartSettings

_WinAPI_GetArcDirection

_WinAPI_GetAsyncKeyState

_WinAPI_GetBinaryType

_WinAPI_GetBitmapBits

_WinAPI_GetBitmapDimension

_WinAPI_GetBitmapDimensionEx

_WinAPI_GetBkColor

_WinAPI_GetBoundsRect

_WinAPI_GetBrushOrg

_WinAPI_GetBufferedPaintBits

_WinAPI_GetBufferedPaintDC

_WinAPI_GetBufferedPaintTargetDC

_WinAPI_GetBufferedPaintTargetRect

_WinAPI_GetBValue

_WinAPI_GetCaretBlinkTime

_WinAPI_GetCaretPos

_WinAPI_GetCDType

_WinAPI_GetClassInfoEx

_WinAPI_GetClassLongEx

_WinAPI_GetClipboardSequenceNumber

_WinAPI_GetClipBox

_WinAPI_GetClipCursor

_WinAPI_GetClipRgn

_WinAPI_GetColorAdjustment

_WinAPI_GetCompressedFileSize

_WinAPI_GetCompression

_WinAPI_GetConnectedDlg

_WinAPI_GetCurrentDirectory

_WinAPI_GetCurrentHwProfile

_WinAPI_GetCurrentObject

_WinAPI_GetCurrentPosition

_WinAPI_GetCurrentProcessExplicitAppUserModelID

_WinAPI_GetCurrentThemeName

_WinAPI_GetCursor

_WinAPI_GetDateFormat

_WinAPI_GetDCEx

_WinAPI_GetDefaultPrinter

_WinAPI_GetDefaultUserProfileDirectory

_WinAPI_GetDeviceDriverBaseName

_WinAPI_GetDeviceDriverFileName

_WinAPI_GetDeviceGammaRamp

_WinAPI_GetDIBColorTable

_WinAPI_GetDiskFreeSpaceEx

_WinAPI_GetDllDirectory

_WinAPI_GetDriveBusType

_WinAPI_GetDriveGeometryEx

_WinAPI_GetDriveNumber

_WinAPI_GetDriveType

_WinAPI_GetDurationFormat

_WinAPI_GetEffectiveClientRect

_WinAPI_GetEnhMetaFile

_WinAPI_GetEnhMetaFileBits

_WinAPI_GetEnhMetaFileDescription

_WinAPI_GetEnhMetaFileDimension

_WinAPI_GetEnhMetaFileHeader

_WinAPI_GetErrorMessage

_WinAPI_GetErrorMode

_WinAPI_GetExitCodeProcess

_WinAPI_GetExtended

_WinAPI_GetFileAttributes

_WinAPI_GetFileID

_WinAPI_GetFileInformationByHandle

_WinAPI_GetFileInformationByHandleEx

_WinAPI_GetFilePointerEx

_WinAPI_GetFileSizeOnDisk

_WinAPI_GetFileTitle

_WinAPI_GetFileType

_WinAPI_GetFileVersionInfo

_WinAPI_GetFinalPathNameByHandle

_WinAPI_GetFinalPathNameByHandleEx

_WinAPI_GetFontName

_WinAPI_GetFontResourceInfo

_WinAPI_GetForegroundWindow

_WinAPI_GetFRBuffer

_WinAPI_GetFullPathName

_WinAPI_GetGeoInfo

_WinAPI_GetGlyphOutline

_WinAPI_GetGraphicsMode

_WinAPI_GetGUIThreadInfo

_WinAPI_GetGValue

_WinAPI_GetHandleInformation

_WinAPI_GetHGlobalFromStream

_WinAPI_GetIconDimension

_WinAPI_GetIconInfoEx

_WinAPI_GetIdleTime

_WinAPI_GetKeyboardLayout

_WinAPI_GetKeyboardLayoutList

_WinAPI_GetKeyboardState

_WinAPI_GetKeyboardType

_WinAPI_GetKeyNameText

_WinAPI_GetKeyState

_WinAPI_GetLastActivePopup

_WinAPI_GetLayeredWindowAttributes

_WinAPI_GetLocaleInfo

_WinAPI_GetLogicalDrives

_WinAPI_GetMapMode

_WinAPI_GetMemorySize

_WinAPI_GetMessageExtraInfo

_WinAPI_GetModuleFileNameEx

_WinAPI_GetModuleHandleEx

_WinAPI_GetModuleInformation

_WinAPI_GetMonitorInfo

_WinAPI_GetMUILanguage

_WinAPI_GetNumberFormat

_WinAPI_GetObjectID

_WinAPI_GetObjectInfoByHandle

_WinAPI_GetObjectNameByHandle

_WinAPI_GetObjectType

_WinAPI_GetOutlineTextMetrics

_WinAPI_GetParentProcess

_WinAPI_GetPEType

_WinAPI_GetPerformanceInfo

_WinAPI_GetPhysicallyInstalledSystemMemory

_WinAPI_GetPixel

_WinAPI_GetPolyFillMode

_WinAPI_GetPosFromRect

_WinAPI_GetPriorityClass

_WinAPI_GetProcAddress

_WinAPI_GetProcessCommandLine

_WinAPI_GetProcessFileName

_WinAPI_GetProcessHandleCount

_WinAPI_GetProcessID

_WinAPI_GetProcessIoCounters

_WinAPI_GetProcessMemoryInfo

_WinAPI_GetProcessName

_WinAPI_GetProcessShutdownParameters

_WinAPI_GetProcessTimes

_WinAPI_GetProcessUser

_WinAPI_GetProcessWindowStation

_WinAPI_GetProcessWorkingDirectory

_WinAPI_GetProfilesDirectory

_WinAPI_GetPwrCapabilities

_WinAPI_GetRawInputBuffer

_WinAPI_GetRawInputBufferLength

_WinAPI_GetRawInputData

_WinAPI_GetRawInputDeviceInfo

_WinAPI_GetRegionData

_WinAPI_GetRegisteredRawInputDevices

_WinAPI_GetRegKeyNameByHandle

_WinAPI_GetRgnBox

_WinAPI_GetROP2

_WinAPI_GetRValue

_WinAPI_GetShellWindow

_WinAPI_GetStartupInfo

_WinAPI_GetStretchBltMode

_WinAPI_GetString

_WinAPI_GetSystemDefaultLangID

_WinAPI_GetSystemDefaultLCID

_WinAPI_GetSystemDefaultUILanguage

_WinAPI_GetSystemDEPPolicy

_WinAPI_GetSystemInfo

_WinAPI_GetSystemPowerStatus

_WinAPI_GetSystemTimes

_WinAPI_GetSystemWow64Directory

_WinAPI_GetTabbedTextExtent

_WinAPI_GetTempFileName

_WinAPI_GetTextAlign

_WinAPI_GetTextCharacterExtra

_WinAPI_GetTextColor

_WinAPI_GetTextFace

_WinAPI_GetTextMetrics

_WinAPI_GetThemeAppProperties

_WinAPI_GetThemeBackgroundContentRect

_WinAPI_GetThemeBackgroundExtent

_WinAPI_GetThemeBackgroundRegion

_WinAPI_GetThemeBitmap

_WinAPI_GetThemeBool

_WinAPI_GetThemeColor

_WinAPI_GetThemeDocumentationProperty

_WinAPI_GetThemeEnumValue

_WinAPI_GetThemeFilename

_WinAPI_GetThemeFont

_WinAPI_GetThemeInt

_WinAPI_GetThemeMargins

_WinAPI_GetThemeMetric

_WinAPI_GetThemePartSize

_WinAPI_GetThemePosition

_WinAPI_GetThemePropertyOrigin

_WinAPI_GetThemeRect

_WinAPI_GetThemeString

_WinAPI_GetThemeSysBool

_WinAPI_GetThemeSysColor

_WinAPI_GetThemeSysColorBrush

_WinAPI_GetThemeSysFont

_WinAPI_GetThemeSysInt

_WinAPI_GetThemeSysSize

_WinAPI_GetThemeSysString

_WinAPI_GetThemeTextExtent

_WinAPI_GetThemeTextMetrics

_WinAPI_GetThemeTransitionDuration

_WinAPI_GetThreadDesktop

_WinAPI_GetThreadErrorMode

_WinAPI_GetThreadLocale

_WinAPI_GetThreadUILanguage

_WinAPI_GetTickCount

_WinAPI_GetTickCount64

_WinAPI_GetTimeFormat

_WinAPI_GetTopWindow

_WinAPI_GetUDFColorMode

_WinAPI_GetUDFVersion

_WinAPI_GetUpdateRect

_WinAPI_GetUpdateRgn

_WinAPI_GetUserDefaultLangID

_WinAPI_GetUserDefaultLCID

_WinAPI_GetUserDefaultUILanguage

_WinAPI_GetUserGeoID

_WinAPI_GetUserObjectInformation

_WinAPI_GetVersion

_WinAPI_GetVersionEx

_WinAPI_GetVolumeInformation

_WinAPI_GetVolumeInformationByHandle

_WinAPI_GetVolumeNameForVolumeMountPoint

_WinAPI_GetWindowDisplayAffinity

_WinAPI_GetWindowExt

_WinAPI_GetWindowFileName

_WinAPI_GetWindowInfo

_WinAPI_GetWindowLongEx

_WinAPI_GetWindowOrg

_WinAPI_GetWindowRgnBox

_WinAPI_GetWindowSubclass

_WinAPI_GetWindowTheme

_WinAPI_GetWorkArea

_WinAPI_GetWorldTransform

_WinAPI_GradientFill

_WinAPI_HashData

_WinAPI_HashString

_WinAPI_Hex64

_WinAPI_HiByte

_WinAPI_HideCaret

_WinAPI_HiDWord

_WinAPI_InflateRect

_WinAPI_InitMUILanguage

_WinAPI_IntersectClipRect

_WinAPI_IntersectRect

_WinAPI_IntToDWord

_WinAPI_InvalidateRect

_WinAPI_InvalidateRgn

_WinAPI_InvertANDBitmap

_WinAPI_InvertColor

_WinAPI_InvertRect

_WinAPI_InvertRgn

_WinAPI_IOCTL

_WinAPI_IsAlphaBitmap

_WinAPI_IsBadCodePtr

_WinAPI_IsBadReadPtr

_WinAPI_IsBadStringPtr

_WinAPI_IsBadWritePtr

_WinAPI_IsChild

_WinAPI_IsDoorOpen

_WinAPI_IsElevated

_WinAPI_IsHungAppWindow

_WinAPI_IsIconic

_WinAPI_IsInternetConnected

_WinAPI_IsLoadKBLayout

_WinAPI_IsMemory

_WinAPI_IsNameInExpression

_WinAPI_IsNetworkAlive

_WinAPI_IsPathShared

_WinAPI_IsProcessInJob

_WinAPI_IsProcessorFeaturePresent

_WinAPI_IsRectEmpty

_WinAPI_IsThemeActive

_WinAPI_IsThemeBackgroundPartiallyTransparent

_WinAPI_IsThemePartDefined

_WinAPI_IsValidLocale

_WinAPI_IsWindowEnabled

_WinAPI_IsWindowUnicode

_WinAPI_IsWow64Process

_WinAPI_IsWritable

_WinAPI_IsZoomed

_WinAPI_Keybd_Event

_WinAPI_KillTimer

_WinAPI_LineDDA

_WinAPI_LoadCursor

_WinAPI_LoadCursorFromFile

_WinAPI_LoadIcon

_WinAPI_LoadIconMetric

_WinAPI_LoadIconWithScaleDown

_WinAPI_LoadIndirectString

_WinAPI_LoadKeyboardLayout

_WinAPI_LoadMedia

_WinAPI_LoadResource

_WinAPI_LoadStringEx

_WinAPI_LoByte

_WinAPI_LockDevice

_WinAPI_LockFile

_WinAPI_LockResource

_WinAPI_LockWindowUpdate

_WinAPI_LockWorkStation

_WinAPI_LoDWord

_WinAPI_LongMid

_WinAPI_LookupIconIdFromDirectoryEx

_WinAPI_LPtoDP

_WinAPI_MakeWord

_WinAPI_MapViewOfFile

_WinAPI_MapVirtualKey

_WinAPI_MaskBlt

_WinAPI_MessageBoxCheck

_WinAPI_MessageBoxIndirect

_WinAPI_MirrorIcon

_WinAPI_ModifyWorldTransform

_WinAPI_MonitorFromPoint

_WinAPI_MonitorFromRect

_WinAPI_MonitorFromWindow

_WinAPI_MoveFileEx

_WinAPI_MoveMemory

_WinAPI_MoveToEx

_WinAPI_NtStatusToDosError

_WinAPI_OemToChar

_WinAPI_OffsetClipRgn

_WinAPI_OffsetPoints

_WinAPI_OffsetRect

_WinAPI_OffsetRgn

_WinAPI_OffsetWindowOrg

_WinAPI_OpenDesktop

_WinAPI_OpenFileById

_WinAPI_OpenFileDlg

_WinAPI_OpenFileMapping

_WinAPI_OpenIcon

_WinAPI_OpenInputDesktop

_WinAPI_OpenJobObject

_WinAPI_OpenMutex

_WinAPI_OpenProcessToken

_WinAPI_OpenSemaphore

_WinAPI_OpenThemeData

_WinAPI_OpenWindowStation

_WinAPI_PageSetupDlg

_WinAPI_PaintDesktop

_WinAPI_PaintRgn

_WinAPI_ParseURL

_WinAPI_ParseUserName

_WinAPI_PatBlt

_WinAPI_PathAddBackslash

_WinAPI_PathAddExtension

_WinAPI_PathAppend

_WinAPI_PathBuildRoot

_WinAPI_PathCanonicalize

_WinAPI_PathCommonPrefix

_WinAPI_PathCompactPath

_WinAPI_PathCompactPathEx

_WinAPI_PathCreateFromUrl

_WinAPI_PathFindExtension

_WinAPI_PathFindFileName

_WinAPI_PathFindNextComponent

_WinAPI_PathFindOnPath

_WinAPI_PathGetArgs

_WinAPI_PathGetCharType

_WinAPI_PathGetDriveNumber

_WinAPI_PathIsContentType

_WinAPI_PathIsDirectory

_WinAPI_PathIsDirectoryEmpty

_WinAPI_PathIsExe

_WinAPI_PathIsFileSpec

_WinAPI_PathIsLFNFileSpec

_WinAPI_PathIsRelative

_WinAPI_PathIsRoot

_WinAPI_PathIsSameRoot

_WinAPI_PathIsSystemFolder

_WinAPI_PathIsUNC

_WinAPI_PathIsUNCServer

_WinAPI_PathIsUNCServerShare

_WinAPI_PathMakeSystemFolder

_WinAPI_PathMatchSpec

_WinAPI_PathParseIconLocation

_WinAPI_PathRelativePathTo

_WinAPI_PathRemoveArgs

_WinAPI_PathRemoveBackslash

_WinAPI_PathRemoveExtension

_WinAPI_PathRemoveFileSpec

_WinAPI_PathRenameExtension

_WinAPI_PathSearchAndQualify

_WinAPI_PathSkipRoot

_WinAPI_PathStripPath

_WinAPI_PathStripToRoot

_WinAPI_PathToRegion

_WinAPI_PathUndecorate

_WinAPI_PathUnExpandEnvStrings

_WinAPI_PathUnmakeSystemFolder

_WinAPI_PathUnquoteSpaces

_WinAPI_PathYetAnotherMakeUniqueName

_WinAPI_PickIconDlg

_WinAPI_PlayEnhMetaFile

_WinAPI_PlaySound

_WinAPI_PlgBlt

_WinAPI_PolyBezier

_WinAPI_PolyBezierTo

_WinAPI_PolyDraw

_WinAPI_Polygon

_WinAPI_PrintDlg

_WinAPI_PrintDlgEx

_WinAPI_PrintWindow

_WinAPI_ProgIDFromCLSID

_WinAPI_PtInRectEx

_WinAPI_PtInRegion

_WinAPI_PtVisible

_WinAPI_QueryDosDevice

_WinAPI_QueryInformationJobObject

_WinAPI_QueryPerformanceCounter

_WinAPI_QueryPerformanceFrequency

_WinAPI_RadialGradientFill

_WinAPI_ReadDirectoryChanges

_WinAPI_Rectangle

_WinAPI_RectInRegion

_WinAPI_RectVisible

_WinAPI_RegCloseKey

_WinAPI_RegConnectRegistry

_WinAPI_RegCopyTree

_WinAPI_RegCopyTreeEx

_WinAPI_RegCreateKey

_WinAPI_RegDeleteEmptyKey

_WinAPI_RegDeleteKey

_WinAPI_RegDeleteKeyValue

_WinAPI_RegDeleteTree

_WinAPI_RegDeleteTreeEx

_WinAPI_RegDeleteValue

_WinAPI_RegDisableReflectionKey

_WinAPI_RegDuplicateHKey

_WinAPI_RegEnableReflectionKey

_WinAPI_RegEnumKey

_WinAPI_RegEnumValue

_WinAPI_RegFlushKey

_WinAPI_RegisterApplicationRestart

_WinAPI_RegisterClassEx

_WinAPI_RegisterHotKey

_WinAPI_RegisterPowerSettingNotification

_WinAPI_RegisterRawInputDevices

_WinAPI_RegisterShellHookWindow

_WinAPI_RegLoadMUIString

_WinAPI_RegNotifyChangeKeyValue

_WinAPI_RegOpenKey

_WinAPI_RegQueryInfoKey

_WinAPI_RegQueryLastWriteTime

_WinAPI_RegQueryMultipleValues

_WinAPI_RegQueryReflectionKey

_WinAPI_RegQueryValue

_WinAPI_RegRestoreKey

_WinAPI_RegSaveKey

_WinAPI_RegSetValue

_WinAPI_ReleaseMutex

_WinAPI_ReleaseSemaphore

_WinAPI_ReleaseStream

_WinAPI_RemoveClipboardFormatListener

_WinAPI_RemoveDirectory

_WinAPI_RemoveFontMemResourceEx

_WinAPI_RemoveFontResourceEx

_WinAPI_RemoveWindowSubclass

_WinAPI_ReOpenFile

_WinAPI_ReplaceFile

_WinAPI_ReplaceTextDlg

_WinAPI_ResetEvent

_WinAPI_RestartDlg

_WinAPI_RestoreDC

_WinAPI_RGB

_WinAPI_RotatePoints

_WinAPI_RoundRect

_WinAPI_SaveDC

_WinAPI_SaveFileDlg

_WinAPI_SaveHBITMAPToFile

_WinAPI_SaveHICONToFile

_WinAPI_ScaleWindowExt

_WinAPI_SearchPath

_WinAPI_SelectClipPath

_WinAPI_SelectClipRgn

_WinAPI_SendMessageTimeout

_WinAPI_SetActiveWindow

_WinAPI_SetArcDirection

_WinAPI_SetBitmapBits

_WinAPI_SetBitmapDimensionEx

_WinAPI_SetBoundsRect

_WinAPI_SetBrushOrg

_WinAPI_SetClassLongEx

_WinAPI_SetColorAdjustment

_WinAPI_SetCompression

_WinAPI_SetCaretBlinkTime

_WinAPI_SetCaretPos

_WinAPI_SetCurrentDirectory

_WinAPI_SetCurrentProcessExplicitAppUserModelID

_WinAPI_SetDCBrushColor

_WinAPI_SetDCPenColor

_WinAPI_SetDefaultPrinter

_WinAPI_SetDeviceGammaRamp

_WinAPI_SetDIBColorTable

_WinAPI_SetDIBitsToDevice

_WinAPI_SetDllDirectory

_WinAPI_SetEnhMetaFileBits

_WinAPI_SetErrorMode

_WinAPI_SetFileAttributes

_WinAPI_SetFileInformationByHandleEx

_WinAPI_SetFilePointerEx

_WinAPI_SetFileShortName

_WinAPI_SetFileValidData

_WinAPI_SetForegroundWindow

_WinAPI_SetFRBuffer

_WinAPI_SetGraphicsMode

_WinAPI_SetHandleInformation

_WinAPI_SetInformationJobObject

_WinAPI_SetKeyboardLayout

_WinAPI_SetKeyboardState

_WinAPI_SetLayeredWindowAttributes

_WinAPI_SetLocaleInfo

_WinAPI_SetMapMode

_WinAPI_SetMessageExtraInfo

_WinAPI_SetParent

_WinAPI_SetPixel

_WinAPI_SetPolyFillMode

_WinAPI_SetPriorityClass

_WinAPI_SetProcessShutdownParameters

_WinAPI_SetProcessWindowStation

_WinAPI_SetRectRgn

_WinAPI_SetROP2

_WinAPI_SetSearchPathMode

_WinAPI_SetStretchBltMode

_WinAPI_SetSystemCursor

_WinAPI_SetTextAlign

_WinAPI_SetTextCharacterExtra

_WinAPI_SetTextJustification

_WinAPI_SetThemeAppProperties

_WinAPI_SetThreadDesktop

_WinAPI_SetThreadErrorMode

_WinAPI_SetThreadExecutionState

_WinAPI_SetThreadLocale

_WinAPI_SetThreadUILanguage

_WinAPI_SetTimer

_WinAPI_SetUDFColorMode

_WinAPI_SetUserGeoID

_WinAPI_SetUserObjectInformation

_WinAPI_SetVolumeMountPoint

_WinAPI_SetWindowDisplayAffinity

_WinAPI_SetWindowExt

_WinAPI_SetWindowLongEx

_WinAPI_SetWindowOrg

_WinAPI_SetWindowSubclass

_WinAPI_SetWindowTheme

_WinAPI_SetWinEventHook

_WinAPI_SetWorldTransform

_WinAPI_SfcIsFileProtected

_WinAPI_SfcIsKeyProtected

_WinAPI_ShellAddToRecentDocs

_WinAPI_ShellChangeNotify

_WinAPI_ShellChangeNotifyDeregister

_WinAPI_ShellChangeNotifyRegister

_WinAPI_ShellCreateDirectory

_WinAPI_ShellEmptyRecycleBin

_WinAPI_ShellExecute

_WinAPI_ShellExecuteEx

_WinAPI_ShellExtractAssociatedIcon

_WinAPI_ShellExtractIcon

_WinAPI_ShellFileOperation

_WinAPI_ShellFlushSFCache

_WinAPI_ShellGetFileInfo

_WinAPI_ShellGetIconOverlayIndex

_WinAPI_ShellGetImageList

_WinAPI_ShellGetKnownFolderIDList

_WinAPI_ShellGetKnownFolderPath

_WinAPI_ShellGetLocalizedName

_WinAPI_ShellGetPathFromIDList

_WinAPI_ShellGetSetFolderCustomSettings

_WinAPI_ShellGetSettings

_WinAPI_ShellGetSpecialFolderLocation

_WinAPI_ShellGetSpecialFolderPath

_WinAPI_ShellGetStockIconInfo

_WinAPI_ShellILCreateFromPath

_WinAPI_ShellNotifyIcon

_WinAPI_ShellNotifyIconGetRect

_WinAPI_ShellObjectProperties

_WinAPI_ShellOpenFolderAndSelectItems

_WinAPI_ShellOpenWithDlg

_WinAPI_ShellQueryRecycleBin

_WinAPI_ShellQueryUserNotificationState

_WinAPI_ShellRemoveLocalizedName

_WinAPI_ShellRestricted

_WinAPI_ShellSetKnownFolderPath

_WinAPI_ShellSetLocalizedName

_WinAPI_ShellSetSettings

_WinAPI_ShellStartNetConnectionDlg

_WinAPI_ShellUpdateImage

_WinAPI_ShellUserAuthenticationDlg

_WinAPI_ShellUserAuthenticationDlgEx

_WinAPI_ShortToWord

_WinAPI_ShowCaret

_WinAPI_ShowLastError

_WinAPI_ShowOwnedPopups

_WinAPI_ShutdownBlockReasonCreate

_WinAPI_ShutdownBlockReasonDestroy

_WinAPI_ShutdownBlockReasonQuery

_WinAPI_SizeOfResource

_WinAPI_StretchBlt

_WinAPI_StretchDIBits

_WinAPI_StrFormatByteSize

_WinAPI_StrFormatByteSizeEx

_WinAPI_StrFormatKBSize

_WinAPI_StrFromTimeInterval

_WinAPI_StrLen

_WinAPI_StrokeAndFillPath

_WinAPI_StrokePath

_WinAPI_StructToArray

_WinAPI_SubtractRect

_WinAPI_SwitchColor

_WinAPI_SwitchDesktop

_WinAPI_SwitchToThisWindow

_WinAPI_SwapDWord

_WinAPI_SwapQWord

_WinAPI_SwapWord

_WinAPI_TabbedTextOut

_WinAPI_TerminateJobObject

_WinAPI_TerminateProcess

_WinAPI_TextOut

_WinAPI_TileWindows

_WinAPI_TransparentBlt

_WinAPI_TrackMouseEvent

_WinAPI_UnhookWinEvent

_WinAPI_UnionRect

_WinAPI_UnionStruct

_WinAPI_UniqueHardwareID

_WinAPI_UnloadKeyboardLayout

_WinAPI_UnlockFile

_WinAPI_UnmapViewOfFile

_WinAPI_UnregisterApplicationRestart

_WinAPI_UnregisterClass

_WinAPI_UnregisterHotKey

_WinAPI_UnregisterPowerSettingNotification

_WinAPI_UpdateLayeredWindowEx

_WinAPI_UpdateLayeredWindowIndirect

_WinAPI_UpdateResource

_WinAPI_UrlApplyScheme

_WinAPI_UrlCanonicalize

_WinAPI_UrlCombine

_WinAPI_UrlCompare

_WinAPI_UrlCreateFromPath

_WinAPI_UrlFixup

_WinAPI_UrlGetPart

_WinAPI_UrlHash

_WinAPI_UrlIs

_WinAPI_UserHandleGrantAccess

_WinAPI_ValidateRect

_WinAPI_ValidateRgn

_WinAPI_VerQueryRoot

_WinAPI_VerQueryValue

_WinAPI_VerQueryValueEx

_WinAPI_WidenPath

_WinAPI_WindowFromDC

_WinAPI_WordToShort

_WinAPI_Wow64EnableWow64FsRedirection

_WinAPI_ZeroMemory

Files to download

WinAPIEx UDF v3.8 for AutoIt 3.3.6.1

Previous downloads: 22106

Installer

Redirection to WinAPIEx_3.8_3361.exe, 2.93 MB

attachicon.gifWinAPIEx_3.8_3361_setup.html

Zip

Redirection to WinAPIEx_3.8_3361.zip, 2.79 MB

attachicon.gifWinAPIEx_3.8_3361.html

WinAPIEx UDF v3.8 for AutoIt 3.3.8.x

Previous downloads: 4671

Installer

Redirection to WinAPIEx_3.8_3380.exe, 2.93 MB

attachicon.gifWinAPIEx_3.8_3380_setup.html

Zip

Redirection to WinAPIEx_3.8_3380.zip, 2.79 MB

attachicon.gifWinAPIEx_3.8_3380.html

 the website  be visited now ?

Can the website can be visited now?

I can not reach it.

Link to comment
Share on other sites

Really? The links are in the spoilers, just select the version to match your version of AutoIt.

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

How did you download it before?

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

  • 4 weeks later...

I spotted what could probably be a bug. I'm using the latest version v3.8 for AutoIt 3.3.6.1. The function _WinAPI_GetProcAddress, when it's provided with a symbol name, passes the parameter to the win32 API function GetProcAddress as wstr. GetProcAddress documentation on MSDN http://msdn.microsoft.com/en-us/library/windows/desktop/ms683212%28v=vs.85%29.aspx however states that the symbol name parameter is LPCSTR, which imposes using str, not wstr. I tested the function with a sample script that tried to get the address of GetWindowTextA from User32.dll and the function failed. When I changed the parameter type from wstr to str, it worked fine.

Link to comment
Share on other sites

Download the latest beta version of AutoIt3, WinAPIEx is now included.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

  • 2 weeks later...

seems like the download link is down. I get error 503 with none english written.

Msgbox(0, "Hate", "Just hate it when I post a question and find my own answer after a couple tries. But if I don't post the question, I can't seem to resolve it at all.")
Link to comment
Share on other sites

If you need the UDF now then it's also in the AutoIt beta.

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

  • 3 weeks later...

LAST VERSION - 3.8

03-Jul-12

 

MSDN_logo_new.png

This library contains the WinAPI functions are not included for unknown reasons to the native AutoIt WinAPI library. I use this UDF in nearly all of my programs, and decided to share it with the AutoIt community. I agree that over time some of these functions will be part of the native AutoIt library, but still... The library includes some undocumented, but useful functions (eg _WinAPI_GetFontResourceInfo()). The library also contains all the necessary constants to work with the appropriate functions. Most functions from this UDF intended for experienced users, but beginners will find the same lot of useful information for yourself. I will be to periodically add new functions to the library.

The archive contains WinAPIEx library, and as usual an excellent examples from me. Some examples I took from this forum and to simplify them for better understanding. For those who use SciTE (full version) I have prepared the au3.userudfs.properties and au3.user.calltips.api files to highlight functions from this UDF in your scripts. Just copy this files to ...SciTEProperties and ...SciTEAPI, respectively. I hope this UDF will be useful for many as for me. I look forward to any feedback and suggestions. Maybe somebody wants to add new WinAPI functions?

Credits

Authenticity

GEOSoft

KaFu

Martin

MrCreatoR

Prog@ndy

Rover

WideBoyDixon

et al.

Available functions

_WinAPI_AbortPath

_WinAPI_AboutDlg

_WinAPI_ActivateKeyboardLayout

_WinAPI_AddClipboardFormatListener

_WinAPI_AddFontMemResourceEx

_WinAPI_AddFontResourceEx

_WinAPI_AddIconOverlay

_WinAPI_AddIconTransparency

_WinAPI_AddMRUString

_WinAPI_AdjustBitmap

_WinAPI_AdjustTokenPrivileges

_WinAPI_AdjustWindowRectEx

_WinAPI_AlphaBlend

_WinAPI_AngleArc

_WinAPI_AnimateWindow

_WinAPI_Arc

_WinAPI_ArcTo

_WinAPI_ArrayToStruct

_WinAPI_AssignProcessToJobObject

_WinAPI_AssocGetPerceivedType

_WinAPI_AssocQueryString

_WinAPI_BackupRead

_WinAPI_BackupReadAbort

_WinAPI_BackupSeek

_WinAPI_BackupWrite

_WinAPI_BackupWriteAbort

_WinAPI_BeginBufferedPaint

_WinAPI_BeginDeferWindowPos

_WinAPI_BeginPaint

_WinAPI_BeginPath

_WinAPI_BeginUpdateResource

_WinAPI_BringWindowToTop

_WinAPI_BroadcastSystemMessage

_WinAPI_BrowseForFolderDlg

_WinAPI_BufferedPaintClear

_WinAPI_BufferedPaintInit

_WinAPI_BufferedPaintSetAlpha

_WinAPI_BufferedPaintUnInit

_WinAPI_CalculatePopupWindowPosition

_WinAPI_CallWindowProcW

_WinAPI_CascadeWindows

_WinAPI_ChangeWindowMessageFilterEx

_WinAPI_CharToOem

_WinAPI_ChildWindowFromPointEx

_WinAPI_ClipCursor

_WinAPI_CloseDesktop

_WinAPI_CloseEnhMetaFile

_WinAPI_CloseFigure

_WinAPI_CloseThemeData

_WinAPI_CloseWindow

_WinAPI_CloseWindowStation

_WinAPI_CLSIDFromProgID

_WinAPI_CoInitialize

_WinAPI_ColorAdjustLuma

_WinAPI_ColorHLSToRGB

_WinAPI_ColorRGBToHLS

_WinAPI_CombineTransform

_WinAPI_CommandLineToArgv

_WinAPI_CommDlgExtendedErrorEx

_WinAPI_CompareString

_WinAPI_CompressBitmapBits

_WinAPI_CompressBuffer

_WinAPI_ComputeCrc32

_WinAPI_ConfirmCredentials

_WinAPI_CopyBitmap

_WinAPI_CopyCursor

_WinAPI_CopyEnhMetaFile

_WinAPI_CopyFileEx

_WinAPI_CopyImage

_WinAPI_CopyRect

_WinAPI_CopyStruct

_WinAPI_CoTaskMemAlloc

_WinAPI_CoTaskMemFree

_WinAPI_CoTaskMemRealloc

_WinAPI_CoUninitialize

_WinAPI_Create32BitHBITMAP

_WinAPI_Create32BitHICON

_WinAPI_CreateANDBitmap

_WinAPI_CreateBitmapIndirect

_WinAPI_CreateBrushIndirect

_WinAPI_CreateBuffer

_WinAPI_CreateBufferFromStruct

_WinAPI_CreateCaret

_WinAPI_CreateColorAdjustment

_WinAPI_CreateCompatibleBitmapEx

_WinAPI_CreateDesktop

_WinAPI_CreateDIB

_WinAPI_CreateDIBColorTable

_WinAPI_CreateDIBitmap

_WinAPI_CreateDIBSection

_WinAPI_CreateDirectory

_WinAPI_CreateDirectoryEx

_WinAPI_CreateEllipticRgn

_WinAPI_CreateEmptyIcon

_WinAPI_CreateEnhMetaFile

_WinAPI_CreateFileEx

_WinAPI_CreateFileMapping

_WinAPI_CreateFontEx

_WinAPI_CreateGUID

_WinAPI_CreateHardLink

_WinAPI_CreateIcon

_WinAPI_CreateIconFromResourceEx

_WinAPI_CreateIconIndirect

_WinAPI_CreateJobObject

_WinAPI_CreateMargins

_WinAPI_CreateMRUList

_WinAPI_CreateMutex

_WinAPI_CreateNullRgn

_WinAPI_CreateNumberFormatInfo

_WinAPI_CreateObjectID

_WinAPI_CreatePoint

_WinAPI_CreatePolygonRgn

_WinAPI_CreateProcessWithToken

_WinAPI_CreateRect

_WinAPI_CreateRectEx

_WinAPI_CreateRectRgnIndirect

_WinAPI_CreateSemaphore

_WinAPI_CreateSize

_WinAPI_CreateStreamOnHGlobal

_WinAPI_CreateString

_WinAPI_CreateSymbolicLink

_WinAPI_CreateTransform

_WinAPI_CreateWindowStation

_WinAPI_DecompressBuffer

_WinAPI_DecryptFile

_WinAPI_DeferWindowPos

_WinAPI_DefineDosDevice

_WinAPI_DefRawInputProc

_WinAPI_DefSubclassProc

_WinAPI_DefWindowProcW

_WinAPI_DeleteEnhMetaFile

_WinAPI_DeleteFile

_WinAPI_DeleteObjectID

_WinAPI_DeleteVolumeMountPoint

_WinAPI_DeregisterShellHookWindow

_WinAPI_DestroyCaret

_WinAPI_DestroyCursor

_WinAPI_DeviceIoControl

_WinAPI_DisplayStruct

_WinAPI_DllGetVersion

_WinAPI_DllInstall

_WinAPI_DllUninstall

_WinAPI_DPtoLP

_WinAPI_DragAcceptFiles

_WinAPI_DragFinish

_WinAPI_DragQueryFileEx

_WinAPI_DragQueryPoint

_WinAPI_DrawAnimatedRects

_WinAPI_DrawBitmap

_WinAPI_DrawFocusRect

_WinAPI_DrawShadowText

_WinAPI_DrawThemeBackground

_WinAPI_DrawThemeEdge

_WinAPI_DrawThemeIcon

_WinAPI_DrawThemeParentBackground

_WinAPI_DrawThemeText

_WinAPI_DrawThemeTextEx

_WinAPI_DuplicateEncryptionInfoFile

_WinAPI_DuplicateHandle

_WinAPI_DuplicateTokenEx

_WinAPI_DwmDefWindowProc

_WinAPI_DwmEnableBlurBehindWindow

_WinAPI_DwmEnableComposition

_WinAPI_DwmExtendFrameIntoClientArea

_WinAPI_DwmGetColorizationColor

_WinAPI_DwmGetColorizationParameters

_WinAPI_DwmGetWindowAttribute

_WinAPI_DwmInvalidateIconicBitmaps

_WinAPI_DwmIsCompositionEnabled

_WinAPI_DwmQueryThumbnailSourceSize

_WinAPI_DwmRegisterThumbnail

_WinAPI_DwmSetColorizationParameters

_WinAPI_DwmSetIconicLivePreviewBitmap

_WinAPI_DwmSetIconicThumbnail

_WinAPI_DwmSetWindowAttribute

_WinAPI_DwmUnregisterThumbnail

_WinAPI_DwmUpdateThumbnailProperties

_WinAPI_DWordToFloat

_WinAPI_DWordToInt

_WinAPI_EjectMedia

_WinAPI_Ellipse

_WinAPI_EmptyWorkingSet

_WinAPI_EncryptFile

_WinAPI_EncryptionDisable

_WinAPI_EndBufferedPaint

_WinAPI_EndDeferWindowPos

_WinAPI_EndPaint

_WinAPI_EndPath

_WinAPI_EndUpdateResource

_WinAPI_EnumChildProcess

_WinAPI_EnumChildWindows

_WinAPI_EnumDesktops

_WinAPI_EnumDesktopWindows

_WinAPI_EnumDeviceDrivers

_WinAPI_EnumDisplayMonitors

_WinAPI_EnumDisplaySettings

_WinAPI_EnumDllProc

_WinAPI_EnumFiles

_WinAPI_EnumFileStreams

_WinAPI_EnumFontFamilies

_WinAPI_EnumHardLinks

_WinAPI_EnumMRUList

_WinAPI_EnumPageFiles

_WinAPI_EnumProcessHandles

_WinAPI_EnumProcessModules

_WinAPI_EnumProcessThreads

_WinAPI_EnumProcessWindows

_WinAPI_EnumRawInputDevices

_WinAPI_EnumResourceLanguages

_WinAPI_EnumResourceNames

_WinAPI_EnumResourceTypes

_WinAPI_EnumSystemGeoID

_WinAPI_EnumSystemLocales

_WinAPI_EnumUILanguages

_WinAPI_EnumWindowStations

_WinAPI_EqualMemory

_WinAPI_EqualRect

_WinAPI_EqualRgn

_WinAPI_ExcludeClipRect

_WinAPI_ExtCreatePen

_WinAPI_ExtCreateRegion

_WinAPI_ExtFloodFill

_WinAPI_ExtractIcon

_WinAPI_ExtSelectClipRgn

_WinAPI_FatalExit

_WinAPI_FileEncryptionStatus

_WinAPI_FileExists

_WinAPI_FileIconInit

_WinAPI_FileInUse

_WinAPI_FillMemory

_WinAPI_FillPath

_WinAPI_FillRect

_WinAPI_FillRgn

_WinAPI_FindClose

_WinAPI_FindCloseChangeNotification

_WinAPI_FindFirstChangeNotification

_WinAPI_FindFirstFile

_WinAPI_FindFirstFileName

_WinAPI_FindFirstStream

_WinAPI_FindNextChangeNotification

_WinAPI_FindNextFile

_WinAPI_FindNextFileName

_WinAPI_FindNextStream

_WinAPI_FindResource

_WinAPI_FindResourceEx

_WinAPI_FindTextDlg

_WinAPI_FlattenPath

_WinAPI_FloatToDWord

_WinAPI_FlushFRBuffer

_WinAPI_FlushViewOfFile

_WinAPI_FormatDriveDlg

_WinAPI_FrameRect

_WinAPI_FrameRgn

_WinAPI_FreeMemory

_WinAPI_FreeMRUList

_WinAPI_FreeResource

_WinAPI_GdiComment

_WinAPI_GetActiveWindow

_WinAPI_GetAllUsersProfileDirectory

_WinAPI_GetApplicationRestartSettings

_WinAPI_GetArcDirection

_WinAPI_GetAsyncKeyState

_WinAPI_GetBinaryType

_WinAPI_GetBitmapBits

_WinAPI_GetBitmapDimension

_WinAPI_GetBitmapDimensionEx

_WinAPI_GetBkColor

_WinAPI_GetBoundsRect

_WinAPI_GetBrushOrg

_WinAPI_GetBufferedPaintBits

_WinAPI_GetBufferedPaintDC

_WinAPI_GetBufferedPaintTargetDC

_WinAPI_GetBufferedPaintTargetRect

_WinAPI_GetBValue

_WinAPI_GetCaretBlinkTime

_WinAPI_GetCaretPos

_WinAPI_GetCDType

_WinAPI_GetClassInfoEx

_WinAPI_GetClassLongEx

_WinAPI_GetClipboardSequenceNumber

_WinAPI_GetClipBox

_WinAPI_GetClipCursor

_WinAPI_GetClipRgn

_WinAPI_GetColorAdjustment

_WinAPI_GetCompressedFileSize

_WinAPI_GetCompression

_WinAPI_GetConnectedDlg

_WinAPI_GetCurrentDirectory

_WinAPI_GetCurrentHwProfile

_WinAPI_GetCurrentObject

_WinAPI_GetCurrentPosition

_WinAPI_GetCurrentProcessExplicitAppUserModelID

_WinAPI_GetCurrentThemeName

_WinAPI_GetCursor

_WinAPI_GetDateFormat

_WinAPI_GetDCEx

_WinAPI_GetDefaultPrinter

_WinAPI_GetDefaultUserProfileDirectory

_WinAPI_GetDeviceDriverBaseName

_WinAPI_GetDeviceDriverFileName

_WinAPI_GetDeviceGammaRamp

_WinAPI_GetDIBColorTable

_WinAPI_GetDiskFreeSpaceEx

_WinAPI_GetDllDirectory

_WinAPI_GetDriveBusType

_WinAPI_GetDriveGeometryEx

_WinAPI_GetDriveNumber

_WinAPI_GetDriveType

_WinAPI_GetDurationFormat

_WinAPI_GetEffectiveClientRect

_WinAPI_GetEnhMetaFile

_WinAPI_GetEnhMetaFileBits

_WinAPI_GetEnhMetaFileDescription

_WinAPI_GetEnhMetaFileDimension

_WinAPI_GetEnhMetaFileHeader

_WinAPI_GetErrorMessage

_WinAPI_GetErrorMode

_WinAPI_GetExitCodeProcess

_WinAPI_GetExtended

_WinAPI_GetFileAttributes

_WinAPI_GetFileID

_WinAPI_GetFileInformationByHandle

_WinAPI_GetFileInformationByHandleEx

_WinAPI_GetFilePointerEx

_WinAPI_GetFileSizeOnDisk

_WinAPI_GetFileTitle

_WinAPI_GetFileType

_WinAPI_GetFileVersionInfo

_WinAPI_GetFinalPathNameByHandle

_WinAPI_GetFinalPathNameByHandleEx

_WinAPI_GetFontName

_WinAPI_GetFontResourceInfo

_WinAPI_GetForegroundWindow

_WinAPI_GetFRBuffer

_WinAPI_GetFullPathName

_WinAPI_GetGeoInfo

_WinAPI_GetGlyphOutline

_WinAPI_GetGraphicsMode

_WinAPI_GetGUIThreadInfo

_WinAPI_GetGValue

_WinAPI_GetHandleInformation

_WinAPI_GetHGlobalFromStream

_WinAPI_GetIconDimension

_WinAPI_GetIconInfoEx

_WinAPI_GetIdleTime

_WinAPI_GetKeyboardLayout

_WinAPI_GetKeyboardLayoutList

_WinAPI_GetKeyboardState

_WinAPI_GetKeyboardType

_WinAPI_GetKeyNameText

_WinAPI_GetKeyState

_WinAPI_GetLastActivePopup

_WinAPI_GetLayeredWindowAttributes

_WinAPI_GetLocaleInfo

_WinAPI_GetLogicalDrives

_WinAPI_GetMapMode

_WinAPI_GetMemorySize

_WinAPI_GetMessageExtraInfo

_WinAPI_GetModuleFileNameEx

_WinAPI_GetModuleHandleEx

_WinAPI_GetModuleInformation

_WinAPI_GetMonitorInfo

_WinAPI_GetMUILanguage

_WinAPI_GetNumberFormat

_WinAPI_GetObjectID

_WinAPI_GetObjectInfoByHandle

_WinAPI_GetObjectNameByHandle

_WinAPI_GetObjectType

_WinAPI_GetOutlineTextMetrics

_WinAPI_GetParentProcess

_WinAPI_GetPEType

_WinAPI_GetPerformanceInfo

_WinAPI_GetPhysicallyInstalledSystemMemory

_WinAPI_GetPixel

_WinAPI_GetPolyFillMode

_WinAPI_GetPosFromRect

_WinAPI_GetPriorityClass

_WinAPI_GetProcAddress

_WinAPI_GetProcessCommandLine

_WinAPI_GetProcessFileName

_WinAPI_GetProcessHandleCount

_WinAPI_GetProcessID

_WinAPI_GetProcessIoCounters

_WinAPI_GetProcessMemoryInfo

_WinAPI_GetProcessName

_WinAPI_GetProcessShutdownParameters

_WinAPI_GetProcessTimes

_WinAPI_GetProcessUser

_WinAPI_GetProcessWindowStation

_WinAPI_GetProcessWorkingDirectory

_WinAPI_GetProfilesDirectory

_WinAPI_GetPwrCapabilities

_WinAPI_GetRawInputBuffer

_WinAPI_GetRawInputBufferLength

_WinAPI_GetRawInputData

_WinAPI_GetRawInputDeviceInfo

_WinAPI_GetRegionData

_WinAPI_GetRegisteredRawInputDevices

_WinAPI_GetRegKeyNameByHandle

_WinAPI_GetRgnBox

_WinAPI_GetROP2

_WinAPI_GetRValue

_WinAPI_GetShellWindow

_WinAPI_GetStartupInfo

_WinAPI_GetStretchBltMode

_WinAPI_GetString

_WinAPI_GetSystemDefaultLangID

_WinAPI_GetSystemDefaultLCID

_WinAPI_GetSystemDefaultUILanguage

_WinAPI_GetSystemDEPPolicy

_WinAPI_GetSystemInfo

_WinAPI_GetSystemPowerStatus

_WinAPI_GetSystemTimes

_WinAPI_GetSystemWow64Directory

_WinAPI_GetTabbedTextExtent

_WinAPI_GetTempFileName

_WinAPI_GetTextAlign

_WinAPI_GetTextCharacterExtra

_WinAPI_GetTextColor

_WinAPI_GetTextFace

_WinAPI_GetTextMetrics

_WinAPI_GetThemeAppProperties

_WinAPI_GetThemeBackgroundContentRect

_WinAPI_GetThemeBackgroundExtent

_WinAPI_GetThemeBackgroundRegion

_WinAPI_GetThemeBitmap

_WinAPI_GetThemeBool

_WinAPI_GetThemeColor

_WinAPI_GetThemeDocumentationProperty

_WinAPI_GetThemeEnumValue

_WinAPI_GetThemeFilename

_WinAPI_GetThemeFont

_WinAPI_GetThemeInt

_WinAPI_GetThemeMargins

_WinAPI_GetThemeMetric

_WinAPI_GetThemePartSize

_WinAPI_GetThemePosition

_WinAPI_GetThemePropertyOrigin

_WinAPI_GetThemeRect

_WinAPI_GetThemeString

_WinAPI_GetThemeSysBool

_WinAPI_GetThemeSysColor

_WinAPI_GetThemeSysColorBrush

_WinAPI_GetThemeSysFont

_WinAPI_GetThemeSysInt

_WinAPI_GetThemeSysSize

_WinAPI_GetThemeSysString

_WinAPI_GetThemeTextExtent

_WinAPI_GetThemeTextMetrics

_WinAPI_GetThemeTransitionDuration

_WinAPI_GetThreadDesktop

_WinAPI_GetThreadErrorMode

_WinAPI_GetThreadLocale

_WinAPI_GetThreadUILanguage

_WinAPI_GetTickCount

_WinAPI_GetTickCount64

_WinAPI_GetTimeFormat

_WinAPI_GetTopWindow

_WinAPI_GetUDFColorMode

_WinAPI_GetUDFVersion

_WinAPI_GetUpdateRect

_WinAPI_GetUpdateRgn

_WinAPI_GetUserDefaultLangID

_WinAPI_GetUserDefaultLCID

_WinAPI_GetUserDefaultUILanguage

_WinAPI_GetUserGeoID

_WinAPI_GetUserObjectInformation

_WinAPI_GetVersion

_WinAPI_GetVersionEx

_WinAPI_GetVolumeInformation

_WinAPI_GetVolumeInformationByHandle

_WinAPI_GetVolumeNameForVolumeMountPoint

_WinAPI_GetWindowDisplayAffinity

_WinAPI_GetWindowExt

_WinAPI_GetWindowFileName

_WinAPI_GetWindowInfo

_WinAPI_GetWindowLongEx

_WinAPI_GetWindowOrg

_WinAPI_GetWindowRgnBox

_WinAPI_GetWindowSubclass

_WinAPI_GetWindowTheme

_WinAPI_GetWorkArea

_WinAPI_GetWorldTransform

_WinAPI_GradientFill

_WinAPI_HashData

_WinAPI_HashString

_WinAPI_Hex64

_WinAPI_HiByte

_WinAPI_HideCaret

_WinAPI_HiDWord

_WinAPI_InflateRect

_WinAPI_InitMUILanguage

_WinAPI_IntersectClipRect

_WinAPI_IntersectRect

_WinAPI_IntToDWord

_WinAPI_InvalidateRect

_WinAPI_InvalidateRgn

_WinAPI_InvertANDBitmap

_WinAPI_InvertColor

_WinAPI_InvertRect

_WinAPI_InvertRgn

_WinAPI_IOCTL

_WinAPI_IsAlphaBitmap

_WinAPI_IsBadCodePtr

_WinAPI_IsBadReadPtr

_WinAPI_IsBadStringPtr

_WinAPI_IsBadWritePtr

_WinAPI_IsChild

_WinAPI_IsDoorOpen

_WinAPI_IsElevated

_WinAPI_IsHungAppWindow

_WinAPI_IsIconic

_WinAPI_IsInternetConnected

_WinAPI_IsLoadKBLayout

_WinAPI_IsMemory

_WinAPI_IsNameInExpression

_WinAPI_IsNetworkAlive

_WinAPI_IsPathShared

_WinAPI_IsProcessInJob

_WinAPI_IsProcessorFeaturePresent

_WinAPI_IsRectEmpty

_WinAPI_IsThemeActive

_WinAPI_IsThemeBackgroundPartiallyTransparent

_WinAPI_IsThemePartDefined

_WinAPI_IsValidLocale

_WinAPI_IsWindowEnabled

_WinAPI_IsWindowUnicode

_WinAPI_IsWow64Process

_WinAPI_IsWritable

_WinAPI_IsZoomed

_WinAPI_Keybd_Event

_WinAPI_KillTimer

_WinAPI_LineDDA

_WinAPI_LoadCursor

_WinAPI_LoadCursorFromFile

_WinAPI_LoadIcon

_WinAPI_LoadIconMetric

_WinAPI_LoadIconWithScaleDown

_WinAPI_LoadIndirectString

_WinAPI_LoadKeyboardLayout

_WinAPI_LoadMedia

_WinAPI_LoadResource

_WinAPI_LoadStringEx

_WinAPI_LoByte

_WinAPI_LockDevice

_WinAPI_LockFile

_WinAPI_LockResource

_WinAPI_LockWindowUpdate

_WinAPI_LockWorkStation

_WinAPI_LoDWord

_WinAPI_LongMid

_WinAPI_LookupIconIdFromDirectoryEx

_WinAPI_LPtoDP

_WinAPI_MakeWord

_WinAPI_MapViewOfFile

_WinAPI_MapVirtualKey

_WinAPI_MaskBlt

_WinAPI_MessageBoxCheck

_WinAPI_MessageBoxIndirect

_WinAPI_MirrorIcon

_WinAPI_ModifyWorldTransform

_WinAPI_MonitorFromPoint

_WinAPI_MonitorFromRect

_WinAPI_MonitorFromWindow

_WinAPI_MoveFileEx

_WinAPI_MoveMemory

_WinAPI_MoveToEx

_WinAPI_NtStatusToDosError

_WinAPI_OemToChar

_WinAPI_OffsetClipRgn

_WinAPI_OffsetPoints

_WinAPI_OffsetRect

_WinAPI_OffsetRgn

_WinAPI_OffsetWindowOrg

_WinAPI_OpenDesktop

_WinAPI_OpenFileById

_WinAPI_OpenFileDlg

_WinAPI_OpenFileMapping

_WinAPI_OpenIcon

_WinAPI_OpenInputDesktop

_WinAPI_OpenJobObject

_WinAPI_OpenMutex

_WinAPI_OpenProcessToken

_WinAPI_OpenSemaphore

_WinAPI_OpenThemeData

_WinAPI_OpenWindowStation

_WinAPI_PageSetupDlg

_WinAPI_PaintDesktop

_WinAPI_PaintRgn

_WinAPI_ParseURL

_WinAPI_ParseUserName

_WinAPI_PatBlt

_WinAPI_PathAddBackslash

_WinAPI_PathAddExtension

_WinAPI_PathAppend

_WinAPI_PathBuildRoot

_WinAPI_PathCanonicalize

_WinAPI_PathCommonPrefix

_WinAPI_PathCompactPath

_WinAPI_PathCompactPathEx

_WinAPI_PathCreateFromUrl

_WinAPI_PathFindExtension

_WinAPI_PathFindFileName

_WinAPI_PathFindNextComponent

_WinAPI_PathFindOnPath

_WinAPI_PathGetArgs

_WinAPI_PathGetCharType

_WinAPI_PathGetDriveNumber

_WinAPI_PathIsContentType

_WinAPI_PathIsDirectory

_WinAPI_PathIsDirectoryEmpty

_WinAPI_PathIsExe

_WinAPI_PathIsFileSpec

_WinAPI_PathIsLFNFileSpec

_WinAPI_PathIsRelative

_WinAPI_PathIsRoot

_WinAPI_PathIsSameRoot

_WinAPI_PathIsSystemFolder

_WinAPI_PathIsUNC

_WinAPI_PathIsUNCServer

_WinAPI_PathIsUNCServerShare

_WinAPI_PathMakeSystemFolder

_WinAPI_PathMatchSpec

_WinAPI_PathParseIconLocation

_WinAPI_PathRelativePathTo

_WinAPI_PathRemoveArgs

_WinAPI_PathRemoveBackslash

_WinAPI_PathRemoveExtension

_WinAPI_PathRemoveFileSpec

_WinAPI_PathRenameExtension

_WinAPI_PathSearchAndQualify

_WinAPI_PathSkipRoot

_WinAPI_PathStripPath

_WinAPI_PathStripToRoot

_WinAPI_PathToRegion

_WinAPI_PathUndecorate

_WinAPI_PathUnExpandEnvStrings

_WinAPI_PathUnmakeSystemFolder

_WinAPI_PathUnquoteSpaces

_WinAPI_PathYetAnotherMakeUniqueName

_WinAPI_PickIconDlg

_WinAPI_PlayEnhMetaFile

_WinAPI_PlaySound

_WinAPI_PlgBlt

_WinAPI_PolyBezier

_WinAPI_PolyBezierTo

_WinAPI_PolyDraw

_WinAPI_Polygon

_WinAPI_PrintDlg

_WinAPI_PrintDlgEx

_WinAPI_PrintWindow

_WinAPI_ProgIDFromCLSID

_WinAPI_PtInRectEx

_WinAPI_PtInRegion

_WinAPI_PtVisible

_WinAPI_QueryDosDevice

_WinAPI_QueryInformationJobObject

_WinAPI_QueryPerformanceCounter

_WinAPI_QueryPerformanceFrequency

_WinAPI_RadialGradientFill

_WinAPI_ReadDirectoryChanges

_WinAPI_Rectangle

_WinAPI_RectInRegion

_WinAPI_RectVisible

_WinAPI_RegCloseKey

_WinAPI_RegConnectRegistry

_WinAPI_RegCopyTree

_WinAPI_RegCopyTreeEx

_WinAPI_RegCreateKey

_WinAPI_RegDeleteEmptyKey

_WinAPI_RegDeleteKey

_WinAPI_RegDeleteKeyValue

_WinAPI_RegDeleteTree

_WinAPI_RegDeleteTreeEx

_WinAPI_RegDeleteValue

_WinAPI_RegDisableReflectionKey

_WinAPI_RegDuplicateHKey

_WinAPI_RegEnableReflectionKey

_WinAPI_RegEnumKey

_WinAPI_RegEnumValue

_WinAPI_RegFlushKey

_WinAPI_RegisterApplicationRestart

_WinAPI_RegisterClassEx

_WinAPI_RegisterHotKey

_WinAPI_RegisterPowerSettingNotification

_WinAPI_RegisterRawInputDevices

_WinAPI_RegisterShellHookWindow

_WinAPI_RegLoadMUIString

_WinAPI_RegNotifyChangeKeyValue

_WinAPI_RegOpenKey

_WinAPI_RegQueryInfoKey

_WinAPI_RegQueryLastWriteTime

_WinAPI_RegQueryMultipleValues

_WinAPI_RegQueryReflectionKey

_WinAPI_RegQueryValue

_WinAPI_RegRestoreKey

_WinAPI_RegSaveKey

_WinAPI_RegSetValue

_WinAPI_ReleaseMutex

_WinAPI_ReleaseSemaphore

_WinAPI_ReleaseStream

_WinAPI_RemoveClipboardFormatListener

_WinAPI_RemoveDirectory

_WinAPI_RemoveFontMemResourceEx

_WinAPI_RemoveFontResourceEx

_WinAPI_RemoveWindowSubclass

_WinAPI_ReOpenFile

_WinAPI_ReplaceFile

_WinAPI_ReplaceTextDlg

_WinAPI_ResetEvent

_WinAPI_RestartDlg

_WinAPI_RestoreDC

_WinAPI_RGB

_WinAPI_RotatePoints

_WinAPI_RoundRect

_WinAPI_SaveDC

_WinAPI_SaveFileDlg

_WinAPI_SaveHBITMAPToFile

_WinAPI_SaveHICONToFile

_WinAPI_ScaleWindowExt

_WinAPI_SearchPath

_WinAPI_SelectClipPath

_WinAPI_SelectClipRgn

_WinAPI_SendMessageTimeout

_WinAPI_SetActiveWindow

_WinAPI_SetArcDirection

_WinAPI_SetBitmapBits

_WinAPI_SetBitmapDimensionEx

_WinAPI_SetBoundsRect

_WinAPI_SetBrushOrg

_WinAPI_SetClassLongEx

_WinAPI_SetColorAdjustment

_WinAPI_SetCompression

_WinAPI_SetCaretBlinkTime

_WinAPI_SetCaretPos

_WinAPI_SetCurrentDirectory

_WinAPI_SetCurrentProcessExplicitAppUserModelID

_WinAPI_SetDCBrushColor

_WinAPI_SetDCPenColor

_WinAPI_SetDefaultPrinter

_WinAPI_SetDeviceGammaRamp

_WinAPI_SetDIBColorTable

_WinAPI_SetDIBitsToDevice

_WinAPI_SetDllDirectory

_WinAPI_SetEnhMetaFileBits

_WinAPI_SetErrorMode

_WinAPI_SetFileAttributes

_WinAPI_SetFileInformationByHandleEx

_WinAPI_SetFilePointerEx

_WinAPI_SetFileShortName

_WinAPI_SetFileValidData

_WinAPI_SetForegroundWindow

_WinAPI_SetFRBuffer

_WinAPI_SetGraphicsMode

_WinAPI_SetHandleInformation

_WinAPI_SetInformationJobObject

_WinAPI_SetKeyboardLayout

_WinAPI_SetKeyboardState

_WinAPI_SetLayeredWindowAttributes

_WinAPI_SetLocaleInfo

_WinAPI_SetMapMode

_WinAPI_SetMessageExtraInfo

_WinAPI_SetParent

_WinAPI_SetPixel

_WinAPI_SetPolyFillMode

_WinAPI_SetPriorityClass

_WinAPI_SetProcessShutdownParameters

_WinAPI_SetProcessWindowStation

_WinAPI_SetRectRgn

_WinAPI_SetROP2

_WinAPI_SetSearchPathMode

_WinAPI_SetStretchBltMode

_WinAPI_SetSystemCursor

_WinAPI_SetTextAlign

_WinAPI_SetTextCharacterExtra

_WinAPI_SetTextJustification

_WinAPI_SetThemeAppProperties

_WinAPI_SetThreadDesktop

_WinAPI_SetThreadErrorMode

_WinAPI_SetThreadExecutionState

_WinAPI_SetThreadLocale

_WinAPI_SetThreadUILanguage

_WinAPI_SetTimer

_WinAPI_SetUDFColorMode

_WinAPI_SetUserGeoID

_WinAPI_SetUserObjectInformation

_WinAPI_SetVolumeMountPoint

_WinAPI_SetWindowDisplayAffinity

_WinAPI_SetWindowExt

_WinAPI_SetWindowLongEx

_WinAPI_SetWindowOrg

_WinAPI_SetWindowSubclass

_WinAPI_SetWindowTheme

_WinAPI_SetWinEventHook

_WinAPI_SetWorldTransform

_WinAPI_SfcIsFileProtected

_WinAPI_SfcIsKeyProtected

_WinAPI_ShellAddToRecentDocs

_WinAPI_ShellChangeNotify

_WinAPI_ShellChangeNotifyDeregister

_WinAPI_ShellChangeNotifyRegister

_WinAPI_ShellCreateDirectory

_WinAPI_ShellEmptyRecycleBin

_WinAPI_ShellExecute

_WinAPI_ShellExecuteEx

_WinAPI_ShellExtractAssociatedIcon

_WinAPI_ShellExtractIcon

_WinAPI_ShellFileOperation

_WinAPI_ShellFlushSFCache

_WinAPI_ShellGetFileInfo

_WinAPI_ShellGetIconOverlayIndex

_WinAPI_ShellGetImageList

_WinAPI_ShellGetKnownFolderIDList

_WinAPI_ShellGetKnownFolderPath

_WinAPI_ShellGetLocalizedName

_WinAPI_ShellGetPathFromIDList

_WinAPI_ShellGetSetFolderCustomSettings

_WinAPI_ShellGetSettings

_WinAPI_ShellGetSpecialFolderLocation

_WinAPI_ShellGetSpecialFolderPath

_WinAPI_ShellGetStockIconInfo

_WinAPI_ShellILCreateFromPath

_WinAPI_ShellNotifyIcon

_WinAPI_ShellNotifyIconGetRect

_WinAPI_ShellObjectProperties

_WinAPI_ShellOpenFolderAndSelectItems

_WinAPI_ShellOpenWithDlg

_WinAPI_ShellQueryRecycleBin

_WinAPI_ShellQueryUserNotificationState

_WinAPI_ShellRemoveLocalizedName

_WinAPI_ShellRestricted

_WinAPI_ShellSetKnownFolderPath

_WinAPI_ShellSetLocalizedName

_WinAPI_ShellSetSettings

_WinAPI_ShellStartNetConnectionDlg

_WinAPI_ShellUpdateImage

_WinAPI_ShellUserAuthenticationDlg

_WinAPI_ShellUserAuthenticationDlgEx

_WinAPI_ShortToWord

_WinAPI_ShowCaret

_WinAPI_ShowLastError

_WinAPI_ShowOwnedPopups

_WinAPI_ShutdownBlockReasonCreate

_WinAPI_ShutdownBlockReasonDestroy

_WinAPI_ShutdownBlockReasonQuery

_WinAPI_SizeOfResource

_WinAPI_StretchBlt

_WinAPI_StretchDIBits

_WinAPI_StrFormatByteSize

_WinAPI_StrFormatByteSizeEx

_WinAPI_StrFormatKBSize

_WinAPI_StrFromTimeInterval

_WinAPI_StrLen

_WinAPI_StrokeAndFillPath

_WinAPI_StrokePath

_WinAPI_StructToArray

_WinAPI_SubtractRect

_WinAPI_SwitchColor

_WinAPI_SwitchDesktop

_WinAPI_SwitchToThisWindow

_WinAPI_SwapDWord

_WinAPI_SwapQWord

_WinAPI_SwapWord

_WinAPI_TabbedTextOut

_WinAPI_TerminateJobObject

_WinAPI_TerminateProcess

_WinAPI_TextOut

_WinAPI_TileWindows

_WinAPI_TransparentBlt

_WinAPI_TrackMouseEvent

_WinAPI_UnhookWinEvent

_WinAPI_UnionRect

_WinAPI_UnionStruct

_WinAPI_UniqueHardwareID

_WinAPI_UnloadKeyboardLayout

_WinAPI_UnlockFile

_WinAPI_UnmapViewOfFile

_WinAPI_UnregisterApplicationRestart

_WinAPI_UnregisterClass

_WinAPI_UnregisterHotKey

_WinAPI_UnregisterPowerSettingNotification

_WinAPI_UpdateLayeredWindowEx

_WinAPI_UpdateLayeredWindowIndirect

_WinAPI_UpdateResource

_WinAPI_UrlApplyScheme

_WinAPI_UrlCanonicalize

_WinAPI_UrlCombine

_WinAPI_UrlCompare

_WinAPI_UrlCreateFromPath

_WinAPI_UrlFixup

_WinAPI_UrlGetPart

_WinAPI_UrlHash

_WinAPI_UrlIs

_WinAPI_UserHandleGrantAccess

_WinAPI_ValidateRect

_WinAPI_ValidateRgn

_WinAPI_VerQueryRoot

_WinAPI_VerQueryValue

_WinAPI_VerQueryValueEx

_WinAPI_WidenPath

_WinAPI_WindowFromDC

_WinAPI_WordToShort

_WinAPI_Wow64EnableWow64FsRedirection

_WinAPI_ZeroMemory

Files to download

WinAPIEx UDF v3.8 for AutoIt 3.3.6.1

Previous downloads: 22106

Installer

Redirection to WinAPIEx_3.8_3361.exe, 2.93 MB

attachicon.gifWinAPIEx_3.8_3361_setup.html

Zip

Redirection to WinAPIEx_3.8_3361.zip, 2.79 MB

attachicon.gifWinAPIEx_3.8_3361.html

WinAPIEx UDF v3.8 for AutoIt 3.3.8.x

Previous downloads: 4671

Installer

Redirection to WinAPIEx_3.8_3380.exe, 2.93 MB

attachicon.gifWinAPIEx_3.8_3380_setup.html

Zip

Redirection to WinAPIEx_3.8_3380.zip, 2.79 MB

attachicon.gifWinAPIEx_3.8_3380.html

 

links not working  :(

Edited by ActualAkshay
Link to comment
Share on other sites

If you download the beta version of AutoIt, available on the downloads page from the main site, not the download link above, you can get the latest version of WinAPIEx.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...