-
Notifications
You must be signed in to change notification settings - Fork 0
/
DXConsts.pas
103 lines (88 loc) · 3.56 KB
/
DXConsts.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
unit DXConsts;
interface
resourcestring
SNone = '(None)';
SUnknownError = 'Unknown Error (%d)';
SDirectDraw = 'DirectDraw';
SDirect3DRM = 'Direct3D RetainedMode';
SDirectSound = 'DirectSound';
SDirectSoundCapture = 'DirectSoundCapture';
SDirectDrawClipper = 'Clipper';
SDirectDrawPalette = 'Palette';
SDirectDrawSurface = 'Surface';
SDirectDrawPrimarySurface = 'Primary Surface';
SDirectSoundBuffer = 'Sound Buffer';
SDirectSoundPrimaryBuffer = 'Primary Buffer';
SDirectSoundCaptureBuffer = 'Sound Capture Buffer';
STexture = 'Texture';
SDirectPlay = 'DirectPlay';
SSession = 'Session';
SNotMade = '%s not made';
SStreamNotOpend = 'Stream not opend';
SWaveStreamNotSet = 'WaveStream not set';
SCannotMade = '%s cannot be made';
SCannotInitialized = '%s cannot be initialized';
SCannotChanged = '%s cannot be changed';
SCannotLock = '%s cannot be locked';
SCannotOpened = '%s cannot be opened';
SDLLNotLoaded = '%s not loaded';
SImageNotFound = 'Image ''%s'' not found';
SWaveNotFound = 'Wave ''%s'' not found';
SEffectNotFound = 'Effect ''%s'' not found';
SListIndexError = 'Index of the list exceeds the range. (%d)';
SScanline = 'Index of the scanning line exceeded the range. (%d)';
SNoForm = 'Form not found';
SSinceDirectX5 = 'Necessary since DirectX 5';
SSinceDirectX6 = 'Necessary since DirectX 6';
SSinceDirectX7 = 'Necessary since DirectX 7';
S3DDeviceNotFound = '3D device not found';
SDisplayModeChange = 'Display mode cannot be changed (%dx%d %dbit)';
SDisplayModeCannotAcquired = 'A present display mode cannot be acquired';
SInvalidDIB = 'DIB is invalid';
SInvalidDIBBitCount = 'Bitcount in invalid (%d)';
SInvalidDIBPixelFormat = 'PixelFormat in invalid';
SInvalidWave = 'Wave is invalid';
SInvalidDisplayBitCount = 'It should be either of 8 or 16 or 24 or 32';
SInvalidWaveFormat = 'Format is invalid';
SNotSupported = '%s not supported';
SStreamOpend = 'Stream has already been opened';
SNecessaryDirectInputUseMouse = 'DirectInput is necessary to use the mouse';
{ DirectPlay }
SDXPlayNotConnectedNow = 'TDXPlay component is not connected now.';
SDXPlayProviderNotFound = 'Provider ''%s'' not found';
SDXPlayProviderSpecifiedGUIDNotFound = 'Provider of specified GUID is not found';
SDXPlayModemListCannotBeAcquired = 'Modem list cannot be acquired';
SDXPlaySessionListCannotBeAcquired = 'Session list cannot be acquired';
SDXPlaySessionNotFound = 'Session ''%s'' not found';
SDXPlaySessionCannotOpened = 'Session %s cannot be opened';
SDXPlayPlayerNotFound = 'The player of specified ID is not found';
SDXPlayMessageIllegal = 'The message form is illegal';
SDXPlayPlayerNameIsNotSpecified = 'Player name is not specified';
SDXPlaySessionNameIsNotSpecified = 'Session name is not specified';
DXPlayFormNext = 'Next >';
DXPlayFormComplete = 'Complete';
SNotSupportGraphicFile = 'This format graphic not suported';
SInvalidDXTFile = 'This DXT file is invalid';
SCannotLoadGraphic = 'Can''t Load this Graphic';
SOverlay = 'Not posible Overlay Surface';
const
SDIBSize = '(%dx%d)';
SDIBColor = '%d color';
SDIBBitSize = '%d bytes';
SDIBBitSize_K = '%d Kbytes';
const
SWaveLength = '%.4g sec';
SWaveFrequency = '%dHz';
SWaveBitCount = '%dbit';
SWaveMono = 'Mono';
SWaveStereo = 'Stereo';
SWaveSize = '%d bytes';
const
SKeyLeft = 'Left';
SKeyUp = 'Up';
SKeyRight = 'Right';
SKeyDown = 'Down';
const
SFFBEffectEditor = '%s Effect Editor';
implementation
end.