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
BODY, | |
INPUT, | |
TD { | |
font-family: "PT Sans", sans-serif; | |
line-height: 1.12; | |
} | |
.G-atb{ | |
height:32px; | |
} | |
.Wg { |
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 SendSMS; | |
interface | |
procedure DoSendSMS(const ToNr,Msg:string); | |
implementation | |
uses Windows, SysUtils, Classes, Registry, SmartPort; |
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 SmartPort; | |
interface | |
uses Windows, SysUtils, Classes; | |
{$D-} | |
type | |
TSmartPortParity=(ppParityEven,ppParityMark,ppParityNone,ppParityOdd,ppParitySpace); |
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 Ping2; | |
interface | |
function PingHost(const HostName:string;TimeoutMS:cardinal=500):boolean; | |
implementation | |
uses Windows, SysUtils, WinSock, Sockets; |
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
program pxsvg; | |
{$APPTYPE CONSOLE} | |
{$R *.res} | |
uses | |
System.SysUtils, | |
pxsvg1 in 'pxsvg1.pas'; |
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 WinHttpWS; | |
interface | |
uses Windows; | |
const | |
// flags for WinHttpOpen | |
WINHTTP_FLAG_ASYNC = $10000000; // this session is asynchronous (where supported) | |
WINHTTP_FLAG_SECURE_DEFAULTS = $30000000; // note that this flag also forces async |
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
program fixdpb; | |
{$APPTYPE CONSOLE} | |
uses | |
Windows, | |
SysUtils, | |
Classes; | |
var |
OlderNewer