- Telegram: @HoShiMin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit SpliceProtection; | |
| interface | |
| implementation | |
| uses | |
| Windows, HookAPI; | |
| type |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit CPUIDInfo; | |
| interface | |
| type | |
| TSSESupport = record | |
| SSE1 : Boolean; | |
| SSE2 : Boolean; | |
| SSE3 : Boolean; | |
| SSSE3 : Boolean; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit FilesNotifier; | |
| interface | |
| uses | |
| Windows, SysUtils, Classes, ShlwAPI; | |
| const | |
| FULL_NOTIFY_FILTER = FILE_NOTIFY_CHANGE_FILE_NAME or | |
| FILE_NOTIFY_CHANGE_DIR_NAME or |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit BeeWave; | |
| interface | |
| uses | |
| Windows, Classes, WAVParser, BeeperWrapper, TimeManagement; | |
| type | |
| TBeeWavePlayer = class | |
| private |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit WAVParser; | |
| interface | |
| uses | |
| Classes; | |
| type | |
| TWAVHeader = packed record | |
| ChunkId : LongWord; // "RIFF" в ASCII |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit IndependentSynthesizer; | |
| interface | |
| uses | |
| SysUtils, Math, Generics.Collections, | |
| NotesInfo, NotesSerializer, BeeperWrapper, TimeManagement; | |
| //HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH | |
| // Плеер с независимыми каналами |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit PowerUP; | |
| interface | |
| uses | |
| Windows, Classes; | |
| function SetPowerValue(MinPowerValue, MaxPowerValue: Byte; out OldMinThrottle, OldMaxThrottle: Byte): Boolean; | |
| function SetPowerPercentage(PowerPercentage: Byte): Boolean; | |
| function SetMaximumPower: Boolean; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit TimeManagement; | |
| interface | |
| uses | |
| Windows; | |
| function NtQueryPerformanceCounter(Counter, Frequency: PInt64): LongWord; stdcall; external 'ntdll.dll'; | |
| function NtDelayExecution(Alertable: Boolean; Delay: PInt64): LongWord; stdcall; external 'ntdll.dll'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use16 | |
| org 100h | |
| ; Успешно загрузились: | |
| mov ax, SuccessfulStartup | |
| call WriteLn | |
| ; Настраиваем пищалку: | |
| call SetBeeperRegime | |
| call StartBeeper |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit FastestMove; | |
| interface | |
| procedure MoveMMX(Src, Dest: Pointer; {$IFDEF CPUX64}Size: UInt64{$ELSE}Size: LongWord{$ENDIF}); stdcall; | |
| implementation |