AsphyreAsserts.pas
上传用户:ctlcnc
上传日期:2021-12-10
资源大小:4933k
文件大小:1k
源码类别:

2D图形编程

开发平台:

Delphi

  1. unit AsphyreAsserts;
  2. //---------------------------------------------------------------------------
  3. interface
  4. //---------------------------------------------------------------------------
  5. const
  6.  msgDeviceIndexFail    = 'The specified device number is out of bounds';
  7.  msgDriverCreateFail   = 'Failed to create Direct3D instance';
  8.  msgDisplayIndexFail   = 'The specified display number is out of bounds';
  9.  msgAlreadyInitialized = 'This component has already been initialized';
  10.  msgNoConfigEvent      = 'The configuration event has not been specified';
  11.  msgNoOwnerSpecified   = 'No owner has been specified';
  12.  msgNotInitialized     = 'The component has not been initialized';
  13.  msgNoDeviceOwner      = 'The specified owner is not a valid TAsphyreDevice';
  14.  msgIndexOutOfBounds   = 'The specified index is out of bounds';
  15.  msgInvalidOwner       = 'The component''s owner is incompatible';
  16.  msgInvalidTexture     = 'The specified texture is invalid';
  17.  msgNotRendereableTex  = 'The specified texture is not rendereable';
  18.  msgUnknownArchive     = 'The specified archive format is not supported';
  19.  msgArchiveNotOpened   = 'The specified archive has not yet been opened';
  20.  msgDeviceUnspecified  = 'A valid device must be specified as parameter';
  21.  msgNoOwnerInput       = 'The specified owner is not a valid TAsphyreInput';
  22. //---------------------------------------------------------------------------
  23. implementation
  24. //---------------------------------------------------------------------------
  25. end.