BuildTools
Qt
Src
Agave
Components
Elevator
Mastering
Plugins
ReplayGainAnalysis
WAT
Wasabi
Wasabi2
Winamp
aacPlus
aacdec
aacdec-mft
adpcm
alac
albumart
apev2
auth
bmp
burnlib
codesign
config
devices
external_dependencies
f263
filereader
freetypewac
gif
gracenote
h264
h264dec
id3v2
ie_plugin
installer
jpeg
libvp6
libvpShared
mp3-mpg123
mp4v
mpeg4dec
nde
android
nde.xcodeproj
osx
Binary32Field.cpp
Binary32Field.h
BinaryField.cpp
BinaryField.h
ColumnField.cpp
ColumnField.h
FilenameField.cpp
FilenameField.h
IndexField.cpp
IndexField.h
IndexRecord.cpp
IndexRecord.h
IntegerField.cpp
IntegerField.h
Query.cpp
Query.h
Record.cpp
Record.h
Scanner.cpp
Scanner.h
StringField.cpp
StringField.h
Table.cpp
Table.h
Vfs.cpp
Vfs.h
nde_c.cpp
nde_c.h
win
Android.mk
Binary32Field.h
BinaryField.h
CRC.H
ColumnField.h
Crc.cpp
DBUtils.cpp
DBUtils.h
Database.cpp
Database.h
Field.cpp
Field.h
FilenameField.h
Filter.cpp
Filter.h
Index.cpp
Index.h
IndexField.h
IndexRecord.h
Int128Field.cpp
Int128Field.h
Int64Field.cpp
Int64Field.h
IntegerField.h
LinkedList.cpp
LinkedList.h
NDEString.cpp
NDEString.h
Query.h
Record.h
Scanner.h
StringField.h
Table.h
Vfs.h
nde.def
nde.h
nde.rc
nde.sln
nde.vcxproj
nde.vcxproj.filters
nde_c.h
nde_defines.h
resource.h
version.rc2
nprt_plugin
ns-eel
ns-eel2
nsavi
nsmkv
nsutil
nsv
nsvdec_vp3
nsvdec_vp5
nsvdec_vp6
nswasabi
nu
omBrowser
pcm
pfc
playlist
plist
png
replicant
resources
tagz
tataki
theora
timer
vlb
vp32
vp6
vp8x
wbm
winampAll
winampa
xml
xspf
vcpkg-ports
.gitignore
LICENSE.md
README.md
automate-git.py
cef_x86.bat
install-packages.cmd
vcpkg_version_finder.py
winampAll_2019.sln
28 lines
1.2 KiB
C
28 lines
1.2 KiB
C
#pragma once
|
|
|
|
#define TOKEN_UNKNOWN -1 // BLAAAAA!!!!!!!!
|
|
#define TOKEN_EOQ 0 // End of Query
|
|
#define TOKEN_IDENTIFIER 1 // Column name or data to match against
|
|
#define TOKEN_EQUAL 2 // =, ==, IS
|
|
#define TOKEN_NOTEQUAL 3 // !=, =!, <>, ><
|
|
#define TOKEN_BELOW 4 // <
|
|
#define TOKEN_ABOVE 5 // >
|
|
#define TOKEN_BOREQUAL 6 // <=, =<
|
|
#define TOKEN_AOREQUAL 7 // >=, =>
|
|
#define TOKEN_NOT 8 // !, NOT
|
|
#define TOKEN_AND 9 // &, &&, AND
|
|
#define TOKEN_OR 10 // |, ||, OR
|
|
#define TOKEN_PAROPEN 11 // (
|
|
#define TOKEN_PARCLOSE 12 // )
|
|
#define TOKEN_CONTAINS 13 // HAS
|
|
#define TOKEN_BEGINS 14 // string starts with...
|
|
#define TOKEN_ENDS 15 // string ends with...
|
|
#define TOKEN_LIKE 16 // string is nearly (excluding "the " and whitespace etc)
|
|
#define TOKEN_ISEMPTY 17 // field does not exists
|
|
#define TOKEN_SQBRACKETOPEN 18 // [
|
|
#define TOKEN_SQBRACKETCLOSE 19 // ]
|
|
#define TOKEN_COMMA 20 // ,
|
|
#define TOKEN_NOTCONTAINS 21 // NOTHAS
|
|
#define TOKEN_ISNOTEMPTY 22 // field does not exists
|
|
#define TOKEN_BEGINSLIKE 23 // string is nearly starts with (excluding "the " and whitespace etc)
|