Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
XPToken.pas
Package: EMailMasterbysuperroyor.rar [view]
Upload User: yjb1804
Upload Date: 2021-01-30
Package Size: 3105k
Code Size: 1k
Category:
Email Server
Development Platform:
Delphi
- unit XPToken;
- {
- $Source: /cvsroot/dunit/dunit/Contrib/DUnitWizard/Source/DelphiExperts/Common/XPToken.pas,v $
- $Revision: 1.2 $
- $Date: 2004/05/03 15:07:15 $
- Last amended by $Author: pvspain $
- $State: Exp $
- XPToken:
- Copyright (c) 2001 by The Excellent Programming Company Pty Ltd
- (ABN 27 005 394 918). All rights reserved. This source code is not to be
- redistributed without prior permission from the copyright holder.
- Contact Paul Spain via email: paul@xpro.com.au
- }
- interface
- uses XPKeyWords;
- const
- tkNull = #0; { special token types }
- tkIdentifier = #1;
- tkString = #2;
- tkInteger = #3;
- tkFloat = #4;
- tkLE = #5; { <= }
- tkGE = #6; { >= }
- tkNE = #7; { <> }
- tkDotDot = #8; { .. }
- tkAssign = #9; { := }
- tkKeyWord = #10;
- type
- TXPTokenKind = char;
- PXPToken = ^TXPToken;
- TXPToken = record
- Position: LongInt;
- NewLine: Boolean;
- Lexeme: string;
- Kind: TXPTokenKind;
- KeyWord: TXPKeyWord;
- LookAhead: PXPToken; { = nil for LookAhead instance of TXPToken }
- end;
- TXPTokenEvent = procedure(const Token: TXPToken) of object;
- implementation
- const CVSID: string = '$Header: /cvsroot/dunit/dunit/Contrib/DUnitWizard/Source/DelphiExperts/Common/XPToken.pas,v 1.2 2004/05/03 15:07:15 pvspain Exp $';
- end.