├── .gitignore ├── BitBlt ├── APPICON.ICO ├── BitBlt.RC ├── BitBlt.RES ├── BitBlt.lpr ├── CHIP.BMP ├── EARTH.BMP ├── Resource.pas └── _ToPost8.txt ├── ColorMixer ├── APPICON.ICO ├── ColorMixer.RES ├── ColorMixer.lpr ├── ColorMixer.png ├── ColorMixer.rc ├── Example of CallWindowProc.txt ├── Example of CreateRectRgnIndirect.txt ├── Example of ExtSelectClipRgn.txt ├── Example of ExtTextOut.txt ├── Example of FrameRect.txt ├── Example of InvalidateRect.txt ├── Example of MapWindowPoints with multiple points.txt ├── Example of MoveWindow.txt ├── Example of Rectangle.txt ├── Example of SelectClipRgn.txt ├── Example of SetFocus.txt ├── Example of SetScrollInfo.txt ├── Example of SetScrollPos.txt ├── Example of SetTextColor.txt ├── Example of WM_CTLCOLORSCROLLBAR.txt ├── Example of WM_GETMINMAXINFO.txt ├── Example of WM_VSCROLL.txt ├── Example of Window subclassing.txt ├── FPC_API_DEFINITIONS.inc ├── Manifest32.res ├── Manifest64.res ├── Resource.pas └── _ToPost8.txt ├── CreateCompatibleBitmap ├── APPICON.ICO ├── CreateCompatibleBitmap.RC ├── CreateCompatibleBitmap.RES ├── CreateCompatibleBitmap.lpr ├── Example of CreateCompatibleDC.txt ├── RESOURCE.pas └── _ToPost8.txt ├── DebugBreak ├── APPICON.ICO ├── DebugBreak.RES ├── DebugBreak.lpi ├── DebugBreak.lpr ├── DebugBreak.rc ├── DebugBreak.txt └── Resource.pas ├── EnumChildWindows ├── APPICON.ICO ├── EnumChildWindows.RES ├── EnumChildWindows.lpi ├── EnumChildWindows.lpr ├── EnumChildWindows.rc └── Resource.pas ├── EnumWindows ├── APPICON.ICO ├── EnumWindows.RES ├── EnumWindows.lpi ├── EnumWindows.lpr ├── EnumWindows.rc └── Resource.pas ├── ExpandEnvironmentStrings ├── APPICON.ICO ├── ExpandEnvironmentStrings.RES ├── ExpandEnvironmentStrings.lpi ├── ExpandEnvironmentStrings.lpr ├── ExpandEnvironmentStrings.rc ├── ExpandEnvironmentStrings.txt └── Resource.pas ├── ExtTextOut ├── Ex1 │ ├── APPICON.ICO │ ├── Example of WM_GETMINMAXINFO.txt │ ├── ExtTextOut.RES │ ├── ExtTextOut.lpi │ ├── ExtTextOut.lpr │ ├── ExtTextOut.rc │ ├── Resource.pas │ └── _ToPost8.txt └── Ex2 │ ├── APPICON.ICO │ ├── Example of InvalidateRect.txt │ ├── ExtTextOut.RES │ ├── ExtTextOut.lpi │ ├── ExtTextOut.lpr │ ├── ExtTextOut.rc │ ├── Resource.pas │ └── _ToPost8.txt ├── Flicker ├── FlickerMax │ ├── APPICON.ICO │ ├── FlickerMax.RES │ ├── FlickerMax.lpi │ ├── FlickerMax.lpr │ ├── FlickerMax.rc │ └── Resource.pas └── FlickerMin │ ├── APPICON.ICO │ ├── FlickerMin.RES │ ├── FlickerMin.lpi │ ├── FlickerMin.lpr │ ├── FlickerMin.rc │ └── Resource.pas ├── FreeEnvironmentStrings ├── APPICON.ICO ├── FreeEnvironmentStrings.RES ├── FreeEnvironmentStrings.lpi ├── FreeEnvironmentStrings.lpr ├── FreeEnvironmentStrings.rc ├── FreeEnvironmentStrings.txt └── Resource.pas ├── GetCharacterPlacement ├── Ex1 │ ├── APPICON.ICO │ ├── GetCharacterPlacement.RES │ ├── GetCharacterPlacement.lpi │ ├── GetCharacterPlacement.lpr │ ├── GetCharacterPlacement.rc │ ├── Resource.pas │ └── _ToPost8.txt └── Ex2 │ ├── APPICON.ICO │ ├── GetCharacterPlacement.RES │ ├── GetCharacterPlacement.lpi │ ├── GetCharacterPlacement.lpr │ ├── GetCharacterPlacement.rc │ ├── Proportional to Fixed font example.txt │ ├── Resource.pas │ └── _ToPost8.txt ├── GetClientRect ├── APPICON.ICO ├── GetClientRect.RES ├── GetClientRect.lpi ├── GetClientRect.lpr ├── GetClientRect.rc └── Resource.pas ├── GetClipBox ├── APPICON.ICO ├── GetClipBox.RES ├── GetClipBox.lpi ├── GetClipBox.lpr ├── GetClipBox.rc └── Resource.pas ├── GetDesktopWindow & GetWindowThreadProcessId ├── APPICON.ICO ├── Api.Example.GetWindowThreadProcessId.txt ├── GetDesktopWindow.RES ├── GetDesktopWindow.lpi ├── GetDesktopWindow.lpr ├── GetDesktopWindow.rc └── Resource.pas ├── GetEnvironmentStrings ├── APPICON.ICO ├── GetEnvironmentStrings.RES ├── GetEnvironmentStrings.lpi ├── GetEnvironmentStrings.lpr ├── GetEnvironmentStrings.rc ├── GetEnvironmentStrings.txt └── Resource.pas ├── GetFileSize ├── APPICON.ICO ├── GetFileSize.RES ├── GetFileSize.lpi ├── GetFileSize.lpr ├── GetFileSize.rc └── Resource.pas ├── GetFileSizeEx ├── APPICON.ICO ├── GetFileSizeEx.RES ├── GetFileSizeEx.lpi ├── GetFileSizeEx.lpr ├── GetFileSizeEx.rc └── Resource.pas ├── GetModuleHandle ├── APPICON.ICO ├── GetModuleHandle.RES ├── GetModuleHandle.lpi ├── GetModuleHandle.lpr ├── GetModuleHandle.rc ├── GetModuleHandle.txt └── Resource.pas ├── GetModuleHandleEx ├── APPICON.ICO ├── GetModuleHandleEx.RES ├── GetModuleHandleEx.lpi ├── GetModuleHandleEx.lpr ├── GetModuleHandleEx.rc ├── GetModuleHandleEx.txt ├── GetModuleHandleExDll.lpi ├── GetModuleHandleExDll.lpr └── Resource.pas ├── GetNativeSystemInfo ├── APPICON.ICO ├── GetNativeSystemInfo.RES ├── GetNativeSystemInfo.lpi ├── GetNativeSystemInfo.lpr ├── GetNativeSystemInfo.rc └── Resource.pas ├── GetParent & GetAncestor ├── APPICON.ICO ├── GetParent&GetAncestor.RC ├── GetParent&GetAncestor.RES ├── GetParent.lpi ├── GetParent.lpr └── resource.pas ├── GetShellWindow ├── APPICON.ICO ├── Api.Example.GetWindowThreadProcessId.txt ├── GetShellWindow.RES ├── GetShellWindow.lpi ├── GetShellWindow.lpr ├── GetShellWindow.rc └── Resource.pas ├── GetSystemInfo ├── APPICON.ICO ├── GetSystemInfo.RES ├── GetSystemInfo.lpi ├── GetSystemInfo.lpr ├── GetSystemInfo.rc └── Resource.pas ├── GetTaskmanWindow ├── APPICON.ICO ├── GetTaskmanWindow.RES ├── GetTaskmanWindow.lpi ├── GetTaskmanWindow.lpr ├── GetTaskmanWindow.rc └── Resource.pas ├── GetTextExtentPoint ├── APPICON.ICO ├── GetTextExtentPoint.RES ├── GetTextExtentPoint.lpi ├── GetTextExtentPoint.lpr ├── GetTextExtentPoint.rc └── Resource.pas ├── GetTextExtentPoint32 ├── APPICON.ICO ├── GetTextExtentPoint32.RES ├── GetTextExtentPoint32.lpi ├── GetTextExtentPoint32.lpr ├── GetTextExtentPoint32.rc └── Resource.pas ├── GetTopLevelWindow ├── APPICON.ICO ├── GetTopLevelWindow.RES ├── GetTopLevelWindow.lpi ├── GetTopLevelWindow.lpr ├── GetTopLevelWindow.rc └── Resource.pas ├── GetVersion ├── APPICON.ICO ├── GetVersion.RES ├── GetVersion.lpi ├── GetVersion.lpr ├── GetVersion.rc └── Resource.pas ├── GetVersionEx ├── APPICON.ICO ├── GetVersionEx.RES ├── GetVersionEx.lpi ├── GetVersionEx.lpr ├── GetVersionEx.rc └── Resource.pas ├── GetWindowTextLength ├── APPICON.ICO ├── GetWindowTextLength.RES ├── GetWindowTextLength.lpi ├── GetWindowTextLength.lpr ├── GetWindowTextLength.rc └── Resource.pas ├── Gradient ├── APPICON.ICO ├── Gradient.RES ├── Gradient.lpi ├── Gradient.lpr ├── Gradient.rc └── RESOURCE.PAS ├── HREDRAW & VREDRAW ├── APPICON.ICO ├── HREDRAW_VREDRAW.RES ├── HREDRAW_VREDRAW.lpi ├── HREDRAW_VREDRAW.lpr ├── HREDRAW_VREDRAW.rc └── Resource.pas ├── InvalidateRect ├── APPICON.ICO ├── Example of MapWindowPoints.txt ├── InvalidateRect.RES ├── InvalidateRect.lpi ├── InvalidateRect.lpr ├── InvalidateRect.rc ├── Resource.pas └── _ToPost8.txt ├── IsDebuggerPresent ├── APPICON.ICO ├── IsDebuggerPresent.RES ├── IsDebuggerPresent.lpi ├── IsDebuggerPresent.lpr ├── IsDebuggerPresent.rc ├── IsDebuggerPresent.txt └── Resource.pas ├── IsTopLevelWindow ├── APPICON.ICO ├── IsTopLevelWindow.RES ├── IsTopLevelWindow.lpi ├── IsTopLevelWindow.lpr ├── IsTopLevelWindow.rc └── Resource.pas ├── IsWindowFullyCovered ├── APPICON.ICO ├── IsWindowFullyCovered.RES ├── IsWindowFullyCovered.lpi ├── IsWindowFullyCovered.lpr ├── IsWindowFullyCovered.rc └── Resource.pas ├── QueryPerformanceCounter ├── APPICON.ICO ├── QueryPerformanceCounter.RES ├── QueryPerformanceCounter.lpi ├── QueryPerformanceCounter.lpr ├── QueryPerformanceCounter.rc ├── QueryPerformanceCounter.txt └── Resource.pas ├── QueryPerformanceFrequency ├── APPICON.ICO ├── QueryPerformanceFrequency.RES ├── QueryPerformanceFrequency.lpi ├── QueryPerformanceFrequency.lpr ├── QueryPerformanceFrequency.rc └── Resource.pas ├── Rectangle ├── APPICON.ICO ├── Rectangle.RES ├── Rectangle.lpi ├── Rectangle.lpr ├── Rectangle.png ├── Rectangle.rc ├── Resource.pas └── Thumbs.db ├── RtlGetNtVersionNumbers ├── Console │ ├── APPICON.ico │ ├── Console.inc │ ├── Resource.pas │ ├── RtlGetNtVersionNumbers.RES │ ├── RtlGetNtVersionNumbers.lpi │ ├── RtlGetNtVersionNumbers.lpr │ └── RtlGetNtVersionNumbers.rc └── Gui │ ├── APPICON.ICO │ ├── Resource.pas │ ├── RtlGetNtVersionNumbers.RES │ ├── RtlGetNtVersionNumbers.lpi │ ├── RtlGetNtVersionNumbers.lpr │ └── RtlGetNtVersionNumbers.rc ├── SelectClipRgn ├── APPICON.ICO ├── Example of Regions to eliminate Flicker.txt ├── Resource.pas ├── SelectClipRgn.RC ├── SelectClipRgn.RES ├── SelectClipRgn.lpi ├── SelectClipRgn.lpr └── _ToPost8.txt ├── SetBkMode ├── APPICON.ICO ├── Resource.pas ├── SetBkMode.RES ├── SetBkMode.lpi ├── SetBkMode.lpr └── SetBkMode.rc ├── SetLastError ├── APPICON.ICO ├── Resource.pas ├── SetLastError.RES ├── SetLastError.lpi ├── SetLastError.lpr ├── SetLastError.rc └── SetLastError.txt ├── SetTextAlign ├── APPICON.ICO ├── Resource.pas ├── SetTextAlign.RES ├── SetTextAlign.lpi ├── SetTextAlign.lpr └── SetTextAlign.rc ├── SetWindowLong & SetWindowLongPtr ├── APPICON.ICO ├── Resource.pas ├── SetWindowLong.RES ├── SetWindowLong.lpi ├── SetWindowLong.lpr └── SetWindowLong.rc ├── Sleep ├── APPICON.ICO ├── Resource.pas ├── Sleep.RES ├── Sleep.lpi ├── Sleep.lpr ├── Sleep.rc └── Sleep.txt ├── StatusBarQuirk ├── APPICON.ICO ├── Resource.pas ├── StatusBar.RC ├── StatusBar.RES ├── StatusBar.lpi ├── StatusBar.lpr └── StatusBar.txt ├── StretchBlt ├── APPICON.ICO ├── CHIP.BMP ├── EARTH.BMP ├── Resource.pas ├── StretchBlt.RC ├── StretchBlt.RES ├── StretchBlt.lpr └── _ToPost8.txt ├── TextOut ├── APPICON.ICO ├── Resource.pas ├── TextOut.RES ├── TextOut.lpi ├── TextOut.lpr └── TextOut.rc ├── WindowsBitness ├── APPICON.ICO ├── ImageHeaders.inc ├── Resource.pas ├── WindowsBitness.RES ├── WindowsBitness.lpi ├── WindowsBitness.lpr ├── WindowsBitness.rc └── WindowsBitness.txt └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /BitBlt/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/BitBlt/APPICON.ICO -------------------------------------------------------------------------------- /BitBlt/BitBlt.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/BitBlt/BitBlt.RC -------------------------------------------------------------------------------- /BitBlt/BitBlt.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/BitBlt/BitBlt.RES -------------------------------------------------------------------------------- /BitBlt/BitBlt.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/BitBlt/BitBlt.lpr -------------------------------------------------------------------------------- /BitBlt/CHIP.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/BitBlt/CHIP.BMP -------------------------------------------------------------------------------- /BitBlt/EARTH.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/BitBlt/EARTH.BMP -------------------------------------------------------------------------------- /BitBlt/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/BitBlt/Resource.pas -------------------------------------------------------------------------------- /BitBlt/_ToPost8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ColorMixer/APPICON.ICO -------------------------------------------------------------------------------- /ColorMixer/ColorMixer.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ColorMixer/ColorMixer.RES -------------------------------------------------------------------------------- /ColorMixer/ColorMixer.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ColorMixer/ColorMixer.lpr -------------------------------------------------------------------------------- /ColorMixer/ColorMixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ColorMixer/ColorMixer.png -------------------------------------------------------------------------------- /ColorMixer/ColorMixer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ColorMixer/ColorMixer.rc -------------------------------------------------------------------------------- /ColorMixer/Example of CallWindowProc.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of CreateRectRgnIndirect.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of ExtSelectClipRgn.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of ExtTextOut.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of FrameRect.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of InvalidateRect.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of MapWindowPoints with multiple points.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of MoveWindow.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of Rectangle.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of SelectClipRgn.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of SetFocus.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of SetScrollInfo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of SetScrollPos.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of SetTextColor.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of WM_CTLCOLORSCROLLBAR.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of WM_GETMINMAXINFO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of WM_VSCROLL.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/Example of Window subclassing.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMixer/FPC_API_DEFINITIONS.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ColorMixer/FPC_API_DEFINITIONS.inc -------------------------------------------------------------------------------- /ColorMixer/Manifest32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ColorMixer/Manifest32.res -------------------------------------------------------------------------------- /ColorMixer/Manifest64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ColorMixer/Manifest64.res -------------------------------------------------------------------------------- /ColorMixer/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ColorMixer/Resource.pas -------------------------------------------------------------------------------- /ColorMixer/_ToPost8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CreateCompatibleBitmap/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/CreateCompatibleBitmap/APPICON.ICO -------------------------------------------------------------------------------- /CreateCompatibleBitmap/CreateCompatibleBitmap.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/CreateCompatibleBitmap/CreateCompatibleBitmap.RC -------------------------------------------------------------------------------- /CreateCompatibleBitmap/CreateCompatibleBitmap.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/CreateCompatibleBitmap/CreateCompatibleBitmap.RES -------------------------------------------------------------------------------- /CreateCompatibleBitmap/CreateCompatibleBitmap.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/CreateCompatibleBitmap/CreateCompatibleBitmap.lpr -------------------------------------------------------------------------------- /CreateCompatibleBitmap/Example of CreateCompatibleDC.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CreateCompatibleBitmap/RESOURCE.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/CreateCompatibleBitmap/RESOURCE.pas -------------------------------------------------------------------------------- /CreateCompatibleBitmap/_ToPost8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DebugBreak/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/DebugBreak/APPICON.ICO -------------------------------------------------------------------------------- /DebugBreak/DebugBreak.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/DebugBreak/DebugBreak.RES -------------------------------------------------------------------------------- /DebugBreak/DebugBreak.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/DebugBreak/DebugBreak.lpi -------------------------------------------------------------------------------- /DebugBreak/DebugBreak.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/DebugBreak/DebugBreak.lpr -------------------------------------------------------------------------------- /DebugBreak/DebugBreak.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/DebugBreak/DebugBreak.rc -------------------------------------------------------------------------------- /DebugBreak/DebugBreak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/DebugBreak/DebugBreak.txt -------------------------------------------------------------------------------- /DebugBreak/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/DebugBreak/Resource.pas -------------------------------------------------------------------------------- /EnumChildWindows/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/EnumChildWindows/APPICON.ICO -------------------------------------------------------------------------------- /EnumChildWindows/EnumChildWindows.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/EnumChildWindows/EnumChildWindows.RES -------------------------------------------------------------------------------- /EnumChildWindows/EnumChildWindows.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/EnumChildWindows/EnumChildWindows.lpi -------------------------------------------------------------------------------- /EnumChildWindows/EnumChildWindows.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/EnumChildWindows/EnumChildWindows.lpr -------------------------------------------------------------------------------- /EnumChildWindows/EnumChildWindows.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/EnumChildWindows/EnumChildWindows.rc -------------------------------------------------------------------------------- /EnumChildWindows/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/EnumChildWindows/Resource.pas -------------------------------------------------------------------------------- /EnumWindows/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/EnumWindows/APPICON.ICO -------------------------------------------------------------------------------- /EnumWindows/EnumWindows.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/EnumWindows/EnumWindows.RES -------------------------------------------------------------------------------- /EnumWindows/EnumWindows.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/EnumWindows/EnumWindows.lpi -------------------------------------------------------------------------------- /EnumWindows/EnumWindows.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/EnumWindows/EnumWindows.lpr -------------------------------------------------------------------------------- /EnumWindows/EnumWindows.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/EnumWindows/EnumWindows.rc -------------------------------------------------------------------------------- /EnumWindows/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/EnumWindows/Resource.pas -------------------------------------------------------------------------------- /ExpandEnvironmentStrings/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExpandEnvironmentStrings/APPICON.ICO -------------------------------------------------------------------------------- /ExpandEnvironmentStrings/ExpandEnvironmentStrings.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExpandEnvironmentStrings/ExpandEnvironmentStrings.RES -------------------------------------------------------------------------------- /ExpandEnvironmentStrings/ExpandEnvironmentStrings.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExpandEnvironmentStrings/ExpandEnvironmentStrings.lpi -------------------------------------------------------------------------------- /ExpandEnvironmentStrings/ExpandEnvironmentStrings.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExpandEnvironmentStrings/ExpandEnvironmentStrings.lpr -------------------------------------------------------------------------------- /ExpandEnvironmentStrings/ExpandEnvironmentStrings.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExpandEnvironmentStrings/ExpandEnvironmentStrings.rc -------------------------------------------------------------------------------- /ExpandEnvironmentStrings/ExpandEnvironmentStrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExpandEnvironmentStrings/ExpandEnvironmentStrings.txt -------------------------------------------------------------------------------- /ExpandEnvironmentStrings/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExpandEnvironmentStrings/Resource.pas -------------------------------------------------------------------------------- /ExtTextOut/Ex1/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExtTextOut/Ex1/APPICON.ICO -------------------------------------------------------------------------------- /ExtTextOut/Ex1/Example of WM_GETMINMAXINFO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ExtTextOut/Ex1/ExtTextOut.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExtTextOut/Ex1/ExtTextOut.RES -------------------------------------------------------------------------------- /ExtTextOut/Ex1/ExtTextOut.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExtTextOut/Ex1/ExtTextOut.lpi -------------------------------------------------------------------------------- /ExtTextOut/Ex1/ExtTextOut.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExtTextOut/Ex1/ExtTextOut.lpr -------------------------------------------------------------------------------- /ExtTextOut/Ex1/ExtTextOut.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExtTextOut/Ex1/ExtTextOut.rc -------------------------------------------------------------------------------- /ExtTextOut/Ex1/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExtTextOut/Ex1/Resource.pas -------------------------------------------------------------------------------- /ExtTextOut/Ex1/_ToPost8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ExtTextOut/Ex2/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExtTextOut/Ex2/APPICON.ICO -------------------------------------------------------------------------------- /ExtTextOut/Ex2/Example of InvalidateRect.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ExtTextOut/Ex2/ExtTextOut.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExtTextOut/Ex2/ExtTextOut.RES -------------------------------------------------------------------------------- /ExtTextOut/Ex2/ExtTextOut.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExtTextOut/Ex2/ExtTextOut.lpi -------------------------------------------------------------------------------- /ExtTextOut/Ex2/ExtTextOut.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExtTextOut/Ex2/ExtTextOut.lpr -------------------------------------------------------------------------------- /ExtTextOut/Ex2/ExtTextOut.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExtTextOut/Ex2/ExtTextOut.rc -------------------------------------------------------------------------------- /ExtTextOut/Ex2/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/ExtTextOut/Ex2/Resource.pas -------------------------------------------------------------------------------- /ExtTextOut/Ex2/_ToPost8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flicker/FlickerMax/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Flicker/FlickerMax/APPICON.ICO -------------------------------------------------------------------------------- /Flicker/FlickerMax/FlickerMax.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Flicker/FlickerMax/FlickerMax.RES -------------------------------------------------------------------------------- /Flicker/FlickerMax/FlickerMax.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Flicker/FlickerMax/FlickerMax.lpi -------------------------------------------------------------------------------- /Flicker/FlickerMax/FlickerMax.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Flicker/FlickerMax/FlickerMax.lpr -------------------------------------------------------------------------------- /Flicker/FlickerMax/FlickerMax.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Flicker/FlickerMax/FlickerMax.rc -------------------------------------------------------------------------------- /Flicker/FlickerMax/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Flicker/FlickerMax/Resource.pas -------------------------------------------------------------------------------- /Flicker/FlickerMin/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Flicker/FlickerMin/APPICON.ICO -------------------------------------------------------------------------------- /Flicker/FlickerMin/FlickerMin.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Flicker/FlickerMin/FlickerMin.RES -------------------------------------------------------------------------------- /Flicker/FlickerMin/FlickerMin.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Flicker/FlickerMin/FlickerMin.lpi -------------------------------------------------------------------------------- /Flicker/FlickerMin/FlickerMin.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Flicker/FlickerMin/FlickerMin.lpr -------------------------------------------------------------------------------- /Flicker/FlickerMin/FlickerMin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Flicker/FlickerMin/FlickerMin.rc -------------------------------------------------------------------------------- /Flicker/FlickerMin/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Flicker/FlickerMin/Resource.pas -------------------------------------------------------------------------------- /FreeEnvironmentStrings/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/FreeEnvironmentStrings/APPICON.ICO -------------------------------------------------------------------------------- /FreeEnvironmentStrings/FreeEnvironmentStrings.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/FreeEnvironmentStrings/FreeEnvironmentStrings.RES -------------------------------------------------------------------------------- /FreeEnvironmentStrings/FreeEnvironmentStrings.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/FreeEnvironmentStrings/FreeEnvironmentStrings.lpi -------------------------------------------------------------------------------- /FreeEnvironmentStrings/FreeEnvironmentStrings.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/FreeEnvironmentStrings/FreeEnvironmentStrings.lpr -------------------------------------------------------------------------------- /FreeEnvironmentStrings/FreeEnvironmentStrings.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/FreeEnvironmentStrings/FreeEnvironmentStrings.rc -------------------------------------------------------------------------------- /FreeEnvironmentStrings/FreeEnvironmentStrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/FreeEnvironmentStrings/FreeEnvironmentStrings.txt -------------------------------------------------------------------------------- /FreeEnvironmentStrings/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/FreeEnvironmentStrings/Resource.pas -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex1/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetCharacterPlacement/Ex1/APPICON.ICO -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex1/GetCharacterPlacement.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetCharacterPlacement/Ex1/GetCharacterPlacement.RES -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex1/GetCharacterPlacement.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetCharacterPlacement/Ex1/GetCharacterPlacement.lpi -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex1/GetCharacterPlacement.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetCharacterPlacement/Ex1/GetCharacterPlacement.lpr -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex1/GetCharacterPlacement.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetCharacterPlacement/Ex1/GetCharacterPlacement.rc -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex1/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetCharacterPlacement/Ex1/Resource.pas -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex1/_ToPost8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex2/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetCharacterPlacement/Ex2/APPICON.ICO -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex2/GetCharacterPlacement.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetCharacterPlacement/Ex2/GetCharacterPlacement.RES -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex2/GetCharacterPlacement.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetCharacterPlacement/Ex2/GetCharacterPlacement.lpi -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex2/GetCharacterPlacement.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetCharacterPlacement/Ex2/GetCharacterPlacement.lpr -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex2/GetCharacterPlacement.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetCharacterPlacement/Ex2/GetCharacterPlacement.rc -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex2/Proportional to Fixed font example.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex2/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetCharacterPlacement/Ex2/Resource.pas -------------------------------------------------------------------------------- /GetCharacterPlacement/Ex2/_ToPost8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GetClientRect/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetClientRect/APPICON.ICO -------------------------------------------------------------------------------- /GetClientRect/GetClientRect.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetClientRect/GetClientRect.RES -------------------------------------------------------------------------------- /GetClientRect/GetClientRect.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetClientRect/GetClientRect.lpi -------------------------------------------------------------------------------- /GetClientRect/GetClientRect.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetClientRect/GetClientRect.lpr -------------------------------------------------------------------------------- /GetClientRect/GetClientRect.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetClientRect/GetClientRect.rc -------------------------------------------------------------------------------- /GetClientRect/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetClientRect/Resource.pas -------------------------------------------------------------------------------- /GetClipBox/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetClipBox/APPICON.ICO -------------------------------------------------------------------------------- /GetClipBox/GetClipBox.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetClipBox/GetClipBox.RES -------------------------------------------------------------------------------- /GetClipBox/GetClipBox.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetClipBox/GetClipBox.lpi -------------------------------------------------------------------------------- /GetClipBox/GetClipBox.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetClipBox/GetClipBox.lpr -------------------------------------------------------------------------------- /GetClipBox/GetClipBox.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetClipBox/GetClipBox.rc -------------------------------------------------------------------------------- /GetClipBox/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetClipBox/Resource.pas -------------------------------------------------------------------------------- /GetDesktopWindow & GetWindowThreadProcessId/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetDesktopWindow & GetWindowThreadProcessId/APPICON.ICO -------------------------------------------------------------------------------- /GetDesktopWindow & GetWindowThreadProcessId/Api.Example.GetWindowThreadProcessId.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GetDesktopWindow & GetWindowThreadProcessId/GetDesktopWindow.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetDesktopWindow & GetWindowThreadProcessId/GetDesktopWindow.RES -------------------------------------------------------------------------------- /GetDesktopWindow & GetWindowThreadProcessId/GetDesktopWindow.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetDesktopWindow & GetWindowThreadProcessId/GetDesktopWindow.lpi -------------------------------------------------------------------------------- /GetDesktopWindow & GetWindowThreadProcessId/GetDesktopWindow.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetDesktopWindow & GetWindowThreadProcessId/GetDesktopWindow.lpr -------------------------------------------------------------------------------- /GetDesktopWindow & GetWindowThreadProcessId/GetDesktopWindow.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetDesktopWindow & GetWindowThreadProcessId/GetDesktopWindow.rc -------------------------------------------------------------------------------- /GetDesktopWindow & GetWindowThreadProcessId/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetDesktopWindow & GetWindowThreadProcessId/Resource.pas -------------------------------------------------------------------------------- /GetEnvironmentStrings/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetEnvironmentStrings/APPICON.ICO -------------------------------------------------------------------------------- /GetEnvironmentStrings/GetEnvironmentStrings.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetEnvironmentStrings/GetEnvironmentStrings.RES -------------------------------------------------------------------------------- /GetEnvironmentStrings/GetEnvironmentStrings.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetEnvironmentStrings/GetEnvironmentStrings.lpi -------------------------------------------------------------------------------- /GetEnvironmentStrings/GetEnvironmentStrings.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetEnvironmentStrings/GetEnvironmentStrings.lpr -------------------------------------------------------------------------------- /GetEnvironmentStrings/GetEnvironmentStrings.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetEnvironmentStrings/GetEnvironmentStrings.rc -------------------------------------------------------------------------------- /GetEnvironmentStrings/GetEnvironmentStrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetEnvironmentStrings/GetEnvironmentStrings.txt -------------------------------------------------------------------------------- /GetEnvironmentStrings/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetEnvironmentStrings/Resource.pas -------------------------------------------------------------------------------- /GetFileSize/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetFileSize/APPICON.ICO -------------------------------------------------------------------------------- /GetFileSize/GetFileSize.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetFileSize/GetFileSize.RES -------------------------------------------------------------------------------- /GetFileSize/GetFileSize.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetFileSize/GetFileSize.lpi -------------------------------------------------------------------------------- /GetFileSize/GetFileSize.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetFileSize/GetFileSize.lpr -------------------------------------------------------------------------------- /GetFileSize/GetFileSize.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetFileSize/GetFileSize.rc -------------------------------------------------------------------------------- /GetFileSize/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetFileSize/Resource.pas -------------------------------------------------------------------------------- /GetFileSizeEx/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetFileSizeEx/APPICON.ICO -------------------------------------------------------------------------------- /GetFileSizeEx/GetFileSizeEx.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetFileSizeEx/GetFileSizeEx.RES -------------------------------------------------------------------------------- /GetFileSizeEx/GetFileSizeEx.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetFileSizeEx/GetFileSizeEx.lpi -------------------------------------------------------------------------------- /GetFileSizeEx/GetFileSizeEx.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetFileSizeEx/GetFileSizeEx.lpr -------------------------------------------------------------------------------- /GetFileSizeEx/GetFileSizeEx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetFileSizeEx/GetFileSizeEx.rc -------------------------------------------------------------------------------- /GetFileSizeEx/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetFileSizeEx/Resource.pas -------------------------------------------------------------------------------- /GetModuleHandle/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandle/APPICON.ICO -------------------------------------------------------------------------------- /GetModuleHandle/GetModuleHandle.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandle/GetModuleHandle.RES -------------------------------------------------------------------------------- /GetModuleHandle/GetModuleHandle.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandle/GetModuleHandle.lpi -------------------------------------------------------------------------------- /GetModuleHandle/GetModuleHandle.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandle/GetModuleHandle.lpr -------------------------------------------------------------------------------- /GetModuleHandle/GetModuleHandle.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandle/GetModuleHandle.rc -------------------------------------------------------------------------------- /GetModuleHandle/GetModuleHandle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandle/GetModuleHandle.txt -------------------------------------------------------------------------------- /GetModuleHandle/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandle/Resource.pas -------------------------------------------------------------------------------- /GetModuleHandleEx/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandleEx/APPICON.ICO -------------------------------------------------------------------------------- /GetModuleHandleEx/GetModuleHandleEx.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandleEx/GetModuleHandleEx.RES -------------------------------------------------------------------------------- /GetModuleHandleEx/GetModuleHandleEx.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandleEx/GetModuleHandleEx.lpi -------------------------------------------------------------------------------- /GetModuleHandleEx/GetModuleHandleEx.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandleEx/GetModuleHandleEx.lpr -------------------------------------------------------------------------------- /GetModuleHandleEx/GetModuleHandleEx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandleEx/GetModuleHandleEx.rc -------------------------------------------------------------------------------- /GetModuleHandleEx/GetModuleHandleEx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandleEx/GetModuleHandleEx.txt -------------------------------------------------------------------------------- /GetModuleHandleEx/GetModuleHandleExDll.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandleEx/GetModuleHandleExDll.lpi -------------------------------------------------------------------------------- /GetModuleHandleEx/GetModuleHandleExDll.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandleEx/GetModuleHandleExDll.lpr -------------------------------------------------------------------------------- /GetModuleHandleEx/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetModuleHandleEx/Resource.pas -------------------------------------------------------------------------------- /GetNativeSystemInfo/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetNativeSystemInfo/APPICON.ICO -------------------------------------------------------------------------------- /GetNativeSystemInfo/GetNativeSystemInfo.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetNativeSystemInfo/GetNativeSystemInfo.RES -------------------------------------------------------------------------------- /GetNativeSystemInfo/GetNativeSystemInfo.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetNativeSystemInfo/GetNativeSystemInfo.lpi -------------------------------------------------------------------------------- /GetNativeSystemInfo/GetNativeSystemInfo.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetNativeSystemInfo/GetNativeSystemInfo.lpr -------------------------------------------------------------------------------- /GetNativeSystemInfo/GetNativeSystemInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetNativeSystemInfo/GetNativeSystemInfo.rc -------------------------------------------------------------------------------- /GetNativeSystemInfo/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetNativeSystemInfo/Resource.pas -------------------------------------------------------------------------------- /GetParent & GetAncestor/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetParent & GetAncestor/APPICON.ICO -------------------------------------------------------------------------------- /GetParent & GetAncestor/GetParent&GetAncestor.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetParent & GetAncestor/GetParent&GetAncestor.RC -------------------------------------------------------------------------------- /GetParent & GetAncestor/GetParent&GetAncestor.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetParent & GetAncestor/GetParent&GetAncestor.RES -------------------------------------------------------------------------------- /GetParent & GetAncestor/GetParent.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetParent & GetAncestor/GetParent.lpi -------------------------------------------------------------------------------- /GetParent & GetAncestor/GetParent.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetParent & GetAncestor/GetParent.lpr -------------------------------------------------------------------------------- /GetParent & GetAncestor/resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetParent & GetAncestor/resource.pas -------------------------------------------------------------------------------- /GetShellWindow/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetShellWindow/APPICON.ICO -------------------------------------------------------------------------------- /GetShellWindow/Api.Example.GetWindowThreadProcessId.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GetShellWindow/GetShellWindow.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetShellWindow/GetShellWindow.RES -------------------------------------------------------------------------------- /GetShellWindow/GetShellWindow.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetShellWindow/GetShellWindow.lpi -------------------------------------------------------------------------------- /GetShellWindow/GetShellWindow.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetShellWindow/GetShellWindow.lpr -------------------------------------------------------------------------------- /GetShellWindow/GetShellWindow.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetShellWindow/GetShellWindow.rc -------------------------------------------------------------------------------- /GetShellWindow/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetShellWindow/Resource.pas -------------------------------------------------------------------------------- /GetSystemInfo/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetSystemInfo/APPICON.ICO -------------------------------------------------------------------------------- /GetSystemInfo/GetSystemInfo.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetSystemInfo/GetSystemInfo.RES -------------------------------------------------------------------------------- /GetSystemInfo/GetSystemInfo.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetSystemInfo/GetSystemInfo.lpi -------------------------------------------------------------------------------- /GetSystemInfo/GetSystemInfo.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetSystemInfo/GetSystemInfo.lpr -------------------------------------------------------------------------------- /GetSystemInfo/GetSystemInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetSystemInfo/GetSystemInfo.rc -------------------------------------------------------------------------------- /GetSystemInfo/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetSystemInfo/Resource.pas -------------------------------------------------------------------------------- /GetTaskmanWindow/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTaskmanWindow/APPICON.ICO -------------------------------------------------------------------------------- /GetTaskmanWindow/GetTaskmanWindow.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTaskmanWindow/GetTaskmanWindow.RES -------------------------------------------------------------------------------- /GetTaskmanWindow/GetTaskmanWindow.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTaskmanWindow/GetTaskmanWindow.lpi -------------------------------------------------------------------------------- /GetTaskmanWindow/GetTaskmanWindow.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTaskmanWindow/GetTaskmanWindow.lpr -------------------------------------------------------------------------------- /GetTaskmanWindow/GetTaskmanWindow.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTaskmanWindow/GetTaskmanWindow.rc -------------------------------------------------------------------------------- /GetTaskmanWindow/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTaskmanWindow/Resource.pas -------------------------------------------------------------------------------- /GetTextExtentPoint/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTextExtentPoint/APPICON.ICO -------------------------------------------------------------------------------- /GetTextExtentPoint/GetTextExtentPoint.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTextExtentPoint/GetTextExtentPoint.RES -------------------------------------------------------------------------------- /GetTextExtentPoint/GetTextExtentPoint.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTextExtentPoint/GetTextExtentPoint.lpi -------------------------------------------------------------------------------- /GetTextExtentPoint/GetTextExtentPoint.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTextExtentPoint/GetTextExtentPoint.lpr -------------------------------------------------------------------------------- /GetTextExtentPoint/GetTextExtentPoint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTextExtentPoint/GetTextExtentPoint.rc -------------------------------------------------------------------------------- /GetTextExtentPoint/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTextExtentPoint/Resource.pas -------------------------------------------------------------------------------- /GetTextExtentPoint32/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTextExtentPoint32/APPICON.ICO -------------------------------------------------------------------------------- /GetTextExtentPoint32/GetTextExtentPoint32.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTextExtentPoint32/GetTextExtentPoint32.RES -------------------------------------------------------------------------------- /GetTextExtentPoint32/GetTextExtentPoint32.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTextExtentPoint32/GetTextExtentPoint32.lpi -------------------------------------------------------------------------------- /GetTextExtentPoint32/GetTextExtentPoint32.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTextExtentPoint32/GetTextExtentPoint32.lpr -------------------------------------------------------------------------------- /GetTextExtentPoint32/GetTextExtentPoint32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTextExtentPoint32/GetTextExtentPoint32.rc -------------------------------------------------------------------------------- /GetTextExtentPoint32/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTextExtentPoint32/Resource.pas -------------------------------------------------------------------------------- /GetTopLevelWindow/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTopLevelWindow/APPICON.ICO -------------------------------------------------------------------------------- /GetTopLevelWindow/GetTopLevelWindow.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTopLevelWindow/GetTopLevelWindow.RES -------------------------------------------------------------------------------- /GetTopLevelWindow/GetTopLevelWindow.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTopLevelWindow/GetTopLevelWindow.lpi -------------------------------------------------------------------------------- /GetTopLevelWindow/GetTopLevelWindow.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTopLevelWindow/GetTopLevelWindow.lpr -------------------------------------------------------------------------------- /GetTopLevelWindow/GetTopLevelWindow.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTopLevelWindow/GetTopLevelWindow.rc -------------------------------------------------------------------------------- /GetTopLevelWindow/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetTopLevelWindow/Resource.pas -------------------------------------------------------------------------------- /GetVersion/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetVersion/APPICON.ICO -------------------------------------------------------------------------------- /GetVersion/GetVersion.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetVersion/GetVersion.RES -------------------------------------------------------------------------------- /GetVersion/GetVersion.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetVersion/GetVersion.lpi -------------------------------------------------------------------------------- /GetVersion/GetVersion.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetVersion/GetVersion.lpr -------------------------------------------------------------------------------- /GetVersion/GetVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetVersion/GetVersion.rc -------------------------------------------------------------------------------- /GetVersion/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetVersion/Resource.pas -------------------------------------------------------------------------------- /GetVersionEx/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetVersionEx/APPICON.ICO -------------------------------------------------------------------------------- /GetVersionEx/GetVersionEx.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetVersionEx/GetVersionEx.RES -------------------------------------------------------------------------------- /GetVersionEx/GetVersionEx.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetVersionEx/GetVersionEx.lpi -------------------------------------------------------------------------------- /GetVersionEx/GetVersionEx.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetVersionEx/GetVersionEx.lpr -------------------------------------------------------------------------------- /GetVersionEx/GetVersionEx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetVersionEx/GetVersionEx.rc -------------------------------------------------------------------------------- /GetVersionEx/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetVersionEx/Resource.pas -------------------------------------------------------------------------------- /GetWindowTextLength/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetWindowTextLength/APPICON.ICO -------------------------------------------------------------------------------- /GetWindowTextLength/GetWindowTextLength.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetWindowTextLength/GetWindowTextLength.RES -------------------------------------------------------------------------------- /GetWindowTextLength/GetWindowTextLength.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetWindowTextLength/GetWindowTextLength.lpi -------------------------------------------------------------------------------- /GetWindowTextLength/GetWindowTextLength.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetWindowTextLength/GetWindowTextLength.lpr -------------------------------------------------------------------------------- /GetWindowTextLength/GetWindowTextLength.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetWindowTextLength/GetWindowTextLength.rc -------------------------------------------------------------------------------- /GetWindowTextLength/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/GetWindowTextLength/Resource.pas -------------------------------------------------------------------------------- /Gradient/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Gradient/APPICON.ICO -------------------------------------------------------------------------------- /Gradient/Gradient.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Gradient/Gradient.RES -------------------------------------------------------------------------------- /Gradient/Gradient.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Gradient/Gradient.lpi -------------------------------------------------------------------------------- /Gradient/Gradient.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Gradient/Gradient.lpr -------------------------------------------------------------------------------- /Gradient/Gradient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Gradient/Gradient.rc -------------------------------------------------------------------------------- /Gradient/RESOURCE.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Gradient/RESOURCE.PAS -------------------------------------------------------------------------------- /HREDRAW & VREDRAW/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/HREDRAW & VREDRAW/APPICON.ICO -------------------------------------------------------------------------------- /HREDRAW & VREDRAW/HREDRAW_VREDRAW.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/HREDRAW & VREDRAW/HREDRAW_VREDRAW.RES -------------------------------------------------------------------------------- /HREDRAW & VREDRAW/HREDRAW_VREDRAW.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/HREDRAW & VREDRAW/HREDRAW_VREDRAW.lpi -------------------------------------------------------------------------------- /HREDRAW & VREDRAW/HREDRAW_VREDRAW.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/HREDRAW & VREDRAW/HREDRAW_VREDRAW.lpr -------------------------------------------------------------------------------- /HREDRAW & VREDRAW/HREDRAW_VREDRAW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/HREDRAW & VREDRAW/HREDRAW_VREDRAW.rc -------------------------------------------------------------------------------- /HREDRAW & VREDRAW/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/HREDRAW & VREDRAW/Resource.pas -------------------------------------------------------------------------------- /InvalidateRect/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/InvalidateRect/APPICON.ICO -------------------------------------------------------------------------------- /InvalidateRect/Example of MapWindowPoints.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InvalidateRect/InvalidateRect.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/InvalidateRect/InvalidateRect.RES -------------------------------------------------------------------------------- /InvalidateRect/InvalidateRect.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/InvalidateRect/InvalidateRect.lpi -------------------------------------------------------------------------------- /InvalidateRect/InvalidateRect.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/InvalidateRect/InvalidateRect.lpr -------------------------------------------------------------------------------- /InvalidateRect/InvalidateRect.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/InvalidateRect/InvalidateRect.rc -------------------------------------------------------------------------------- /InvalidateRect/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/InvalidateRect/Resource.pas -------------------------------------------------------------------------------- /InvalidateRect/_ToPost8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IsDebuggerPresent/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsDebuggerPresent/APPICON.ICO -------------------------------------------------------------------------------- /IsDebuggerPresent/IsDebuggerPresent.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsDebuggerPresent/IsDebuggerPresent.RES -------------------------------------------------------------------------------- /IsDebuggerPresent/IsDebuggerPresent.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsDebuggerPresent/IsDebuggerPresent.lpi -------------------------------------------------------------------------------- /IsDebuggerPresent/IsDebuggerPresent.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsDebuggerPresent/IsDebuggerPresent.lpr -------------------------------------------------------------------------------- /IsDebuggerPresent/IsDebuggerPresent.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsDebuggerPresent/IsDebuggerPresent.rc -------------------------------------------------------------------------------- /IsDebuggerPresent/IsDebuggerPresent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsDebuggerPresent/IsDebuggerPresent.txt -------------------------------------------------------------------------------- /IsDebuggerPresent/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsDebuggerPresent/Resource.pas -------------------------------------------------------------------------------- /IsTopLevelWindow/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsTopLevelWindow/APPICON.ICO -------------------------------------------------------------------------------- /IsTopLevelWindow/IsTopLevelWindow.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsTopLevelWindow/IsTopLevelWindow.RES -------------------------------------------------------------------------------- /IsTopLevelWindow/IsTopLevelWindow.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsTopLevelWindow/IsTopLevelWindow.lpi -------------------------------------------------------------------------------- /IsTopLevelWindow/IsTopLevelWindow.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsTopLevelWindow/IsTopLevelWindow.lpr -------------------------------------------------------------------------------- /IsTopLevelWindow/IsTopLevelWindow.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsTopLevelWindow/IsTopLevelWindow.rc -------------------------------------------------------------------------------- /IsTopLevelWindow/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsTopLevelWindow/Resource.pas -------------------------------------------------------------------------------- /IsWindowFullyCovered/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsWindowFullyCovered/APPICON.ICO -------------------------------------------------------------------------------- /IsWindowFullyCovered/IsWindowFullyCovered.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsWindowFullyCovered/IsWindowFullyCovered.RES -------------------------------------------------------------------------------- /IsWindowFullyCovered/IsWindowFullyCovered.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsWindowFullyCovered/IsWindowFullyCovered.lpi -------------------------------------------------------------------------------- /IsWindowFullyCovered/IsWindowFullyCovered.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsWindowFullyCovered/IsWindowFullyCovered.lpr -------------------------------------------------------------------------------- /IsWindowFullyCovered/IsWindowFullyCovered.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsWindowFullyCovered/IsWindowFullyCovered.rc -------------------------------------------------------------------------------- /IsWindowFullyCovered/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/IsWindowFullyCovered/Resource.pas -------------------------------------------------------------------------------- /QueryPerformanceCounter/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceCounter/APPICON.ICO -------------------------------------------------------------------------------- /QueryPerformanceCounter/QueryPerformanceCounter.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceCounter/QueryPerformanceCounter.RES -------------------------------------------------------------------------------- /QueryPerformanceCounter/QueryPerformanceCounter.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceCounter/QueryPerformanceCounter.lpi -------------------------------------------------------------------------------- /QueryPerformanceCounter/QueryPerformanceCounter.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceCounter/QueryPerformanceCounter.lpr -------------------------------------------------------------------------------- /QueryPerformanceCounter/QueryPerformanceCounter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceCounter/QueryPerformanceCounter.rc -------------------------------------------------------------------------------- /QueryPerformanceCounter/QueryPerformanceCounter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceCounter/QueryPerformanceCounter.txt -------------------------------------------------------------------------------- /QueryPerformanceCounter/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceCounter/Resource.pas -------------------------------------------------------------------------------- /QueryPerformanceFrequency/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceFrequency/APPICON.ICO -------------------------------------------------------------------------------- /QueryPerformanceFrequency/QueryPerformanceFrequency.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceFrequency/QueryPerformanceFrequency.RES -------------------------------------------------------------------------------- /QueryPerformanceFrequency/QueryPerformanceFrequency.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceFrequency/QueryPerformanceFrequency.lpi -------------------------------------------------------------------------------- /QueryPerformanceFrequency/QueryPerformanceFrequency.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceFrequency/QueryPerformanceFrequency.lpr -------------------------------------------------------------------------------- /QueryPerformanceFrequency/QueryPerformanceFrequency.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceFrequency/QueryPerformanceFrequency.rc -------------------------------------------------------------------------------- /QueryPerformanceFrequency/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/QueryPerformanceFrequency/Resource.pas -------------------------------------------------------------------------------- /Rectangle/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Rectangle/APPICON.ICO -------------------------------------------------------------------------------- /Rectangle/Rectangle.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Rectangle/Rectangle.RES -------------------------------------------------------------------------------- /Rectangle/Rectangle.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Rectangle/Rectangle.lpi -------------------------------------------------------------------------------- /Rectangle/Rectangle.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Rectangle/Rectangle.lpr -------------------------------------------------------------------------------- /Rectangle/Rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Rectangle/Rectangle.png -------------------------------------------------------------------------------- /Rectangle/Rectangle.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Rectangle/Rectangle.rc -------------------------------------------------------------------------------- /Rectangle/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Rectangle/Resource.pas -------------------------------------------------------------------------------- /Rectangle/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Rectangle/Thumbs.db -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Console/APPICON.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Console/APPICON.ico -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Console/Console.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Console/Console.inc -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Console/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Console/Resource.pas -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Console/RtlGetNtVersionNumbers.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Console/RtlGetNtVersionNumbers.RES -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Console/RtlGetNtVersionNumbers.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Console/RtlGetNtVersionNumbers.lpi -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Console/RtlGetNtVersionNumbers.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Console/RtlGetNtVersionNumbers.lpr -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Console/RtlGetNtVersionNumbers.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Console/RtlGetNtVersionNumbers.rc -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Gui/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Gui/APPICON.ICO -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Gui/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Gui/Resource.pas -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Gui/RtlGetNtVersionNumbers.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Gui/RtlGetNtVersionNumbers.RES -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Gui/RtlGetNtVersionNumbers.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Gui/RtlGetNtVersionNumbers.lpi -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Gui/RtlGetNtVersionNumbers.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Gui/RtlGetNtVersionNumbers.lpr -------------------------------------------------------------------------------- /RtlGetNtVersionNumbers/Gui/RtlGetNtVersionNumbers.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/RtlGetNtVersionNumbers/Gui/RtlGetNtVersionNumbers.rc -------------------------------------------------------------------------------- /SelectClipRgn/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SelectClipRgn/APPICON.ICO -------------------------------------------------------------------------------- /SelectClipRgn/Example of Regions to eliminate Flicker.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SelectClipRgn/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SelectClipRgn/Resource.pas -------------------------------------------------------------------------------- /SelectClipRgn/SelectClipRgn.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SelectClipRgn/SelectClipRgn.RC -------------------------------------------------------------------------------- /SelectClipRgn/SelectClipRgn.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SelectClipRgn/SelectClipRgn.RES -------------------------------------------------------------------------------- /SelectClipRgn/SelectClipRgn.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SelectClipRgn/SelectClipRgn.lpi -------------------------------------------------------------------------------- /SelectClipRgn/SelectClipRgn.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SelectClipRgn/SelectClipRgn.lpr -------------------------------------------------------------------------------- /SelectClipRgn/_ToPost8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SetBkMode/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetBkMode/APPICON.ICO -------------------------------------------------------------------------------- /SetBkMode/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetBkMode/Resource.pas -------------------------------------------------------------------------------- /SetBkMode/SetBkMode.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetBkMode/SetBkMode.RES -------------------------------------------------------------------------------- /SetBkMode/SetBkMode.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetBkMode/SetBkMode.lpi -------------------------------------------------------------------------------- /SetBkMode/SetBkMode.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetBkMode/SetBkMode.lpr -------------------------------------------------------------------------------- /SetBkMode/SetBkMode.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetBkMode/SetBkMode.rc -------------------------------------------------------------------------------- /SetLastError/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetLastError/APPICON.ICO -------------------------------------------------------------------------------- /SetLastError/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetLastError/Resource.pas -------------------------------------------------------------------------------- /SetLastError/SetLastError.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetLastError/SetLastError.RES -------------------------------------------------------------------------------- /SetLastError/SetLastError.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetLastError/SetLastError.lpi -------------------------------------------------------------------------------- /SetLastError/SetLastError.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetLastError/SetLastError.lpr -------------------------------------------------------------------------------- /SetLastError/SetLastError.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetLastError/SetLastError.rc -------------------------------------------------------------------------------- /SetLastError/SetLastError.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetLastError/SetLastError.txt -------------------------------------------------------------------------------- /SetTextAlign/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetTextAlign/APPICON.ICO -------------------------------------------------------------------------------- /SetTextAlign/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetTextAlign/Resource.pas -------------------------------------------------------------------------------- /SetTextAlign/SetTextAlign.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetTextAlign/SetTextAlign.RES -------------------------------------------------------------------------------- /SetTextAlign/SetTextAlign.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetTextAlign/SetTextAlign.lpi -------------------------------------------------------------------------------- /SetTextAlign/SetTextAlign.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetTextAlign/SetTextAlign.lpr -------------------------------------------------------------------------------- /SetTextAlign/SetTextAlign.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetTextAlign/SetTextAlign.rc -------------------------------------------------------------------------------- /SetWindowLong & SetWindowLongPtr/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetWindowLong & SetWindowLongPtr/APPICON.ICO -------------------------------------------------------------------------------- /SetWindowLong & SetWindowLongPtr/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetWindowLong & SetWindowLongPtr/Resource.pas -------------------------------------------------------------------------------- /SetWindowLong & SetWindowLongPtr/SetWindowLong.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetWindowLong & SetWindowLongPtr/SetWindowLong.RES -------------------------------------------------------------------------------- /SetWindowLong & SetWindowLongPtr/SetWindowLong.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetWindowLong & SetWindowLongPtr/SetWindowLong.lpi -------------------------------------------------------------------------------- /SetWindowLong & SetWindowLongPtr/SetWindowLong.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetWindowLong & SetWindowLongPtr/SetWindowLong.lpr -------------------------------------------------------------------------------- /SetWindowLong & SetWindowLongPtr/SetWindowLong.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/SetWindowLong & SetWindowLongPtr/SetWindowLong.rc -------------------------------------------------------------------------------- /Sleep/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Sleep/APPICON.ICO -------------------------------------------------------------------------------- /Sleep/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Sleep/Resource.pas -------------------------------------------------------------------------------- /Sleep/Sleep.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Sleep/Sleep.RES -------------------------------------------------------------------------------- /Sleep/Sleep.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Sleep/Sleep.lpi -------------------------------------------------------------------------------- /Sleep/Sleep.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Sleep/Sleep.lpr -------------------------------------------------------------------------------- /Sleep/Sleep.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Sleep/Sleep.rc -------------------------------------------------------------------------------- /Sleep/Sleep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/Sleep/Sleep.txt -------------------------------------------------------------------------------- /StatusBarQuirk/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StatusBarQuirk/APPICON.ICO -------------------------------------------------------------------------------- /StatusBarQuirk/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StatusBarQuirk/Resource.pas -------------------------------------------------------------------------------- /StatusBarQuirk/StatusBar.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StatusBarQuirk/StatusBar.RC -------------------------------------------------------------------------------- /StatusBarQuirk/StatusBar.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StatusBarQuirk/StatusBar.RES -------------------------------------------------------------------------------- /StatusBarQuirk/StatusBar.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StatusBarQuirk/StatusBar.lpi -------------------------------------------------------------------------------- /StatusBarQuirk/StatusBar.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StatusBarQuirk/StatusBar.lpr -------------------------------------------------------------------------------- /StatusBarQuirk/StatusBar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StatusBarQuirk/StatusBar.txt -------------------------------------------------------------------------------- /StretchBlt/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StretchBlt/APPICON.ICO -------------------------------------------------------------------------------- /StretchBlt/CHIP.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StretchBlt/CHIP.BMP -------------------------------------------------------------------------------- /StretchBlt/EARTH.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StretchBlt/EARTH.BMP -------------------------------------------------------------------------------- /StretchBlt/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StretchBlt/Resource.pas -------------------------------------------------------------------------------- /StretchBlt/StretchBlt.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StretchBlt/StretchBlt.RC -------------------------------------------------------------------------------- /StretchBlt/StretchBlt.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StretchBlt/StretchBlt.RES -------------------------------------------------------------------------------- /StretchBlt/StretchBlt.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/StretchBlt/StretchBlt.lpr -------------------------------------------------------------------------------- /StretchBlt/_ToPost8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextOut/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/TextOut/APPICON.ICO -------------------------------------------------------------------------------- /TextOut/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/TextOut/Resource.pas -------------------------------------------------------------------------------- /TextOut/TextOut.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/TextOut/TextOut.RES -------------------------------------------------------------------------------- /TextOut/TextOut.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/TextOut/TextOut.lpi -------------------------------------------------------------------------------- /TextOut/TextOut.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/TextOut/TextOut.lpr -------------------------------------------------------------------------------- /TextOut/TextOut.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/TextOut/TextOut.rc -------------------------------------------------------------------------------- /WindowsBitness/APPICON.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/WindowsBitness/APPICON.ICO -------------------------------------------------------------------------------- /WindowsBitness/ImageHeaders.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/WindowsBitness/ImageHeaders.inc -------------------------------------------------------------------------------- /WindowsBitness/Resource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/WindowsBitness/Resource.pas -------------------------------------------------------------------------------- /WindowsBitness/WindowsBitness.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/WindowsBitness/WindowsBitness.RES -------------------------------------------------------------------------------- /WindowsBitness/WindowsBitness.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/WindowsBitness/WindowsBitness.lpi -------------------------------------------------------------------------------- /WindowsBitness/WindowsBitness.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/WindowsBitness/WindowsBitness.lpr -------------------------------------------------------------------------------- /WindowsBitness/WindowsBitness.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/WindowsBitness/WindowsBitness.rc -------------------------------------------------------------------------------- /WindowsBitness/WindowsBitness.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/WindowsBitness/WindowsBitness.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/Lazarus-WinAPI-examples/HEAD/readme.txt --------------------------------------------------------------------------------