UTypes.pas
上传用户:lyghuaxia
上传日期:2022-06-27
资源大小:659k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit UTypes;
  2. //=========================================================================
  3. //
  4. // I N T E R F A C E
  5. //
  6. //=========================================================================
  7. interface
  8. type
  9.   {: Format para el nombre de fichero
  10.     @enum ffDateTimeFormat      Formato de fichero con fecha y hora.
  11.     @enum ffAppNameFormat       Nombre de fichero igual a la aplicaci髇.
  12.     @enum ffDateFormat          Formato de fichero con la fecha.
  13.     @enum ffAccumulative        Ficheros acumulativos, no por cada ejecuci髇.
  14.   }
  15.   TFileNameFormat = (ffDateTimeFormat, ffAppNameFormat, ffDateFormat, ffAccumulative);
  16. //=========================================================================
  17. //
  18. // I M P L E M E N T A T I O N
  19. //
  20. //=========================================================================
  21. implementation
  22. end.