Subversion Repositories spacemission

Rev

Rev 1 | Blame | Compare with Previous | Last modification | View Log | RSS feed

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