mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-08 01:45:32 +00:00
35 lines
708 B
ObjectPascal
35 lines
708 B
ObjectPascal
(*
|
|
Name: resource
|
|
Copyright: Copyright (C) SIL International.
|
|
Documentation:
|
|
Description:
|
|
Create Date: 19 Jun 2007
|
|
|
|
Modified Date: 23 Aug 2007
|
|
Authors: mcdurdin
|
|
Related Files:
|
|
Dependencies:
|
|
|
|
Bugs:
|
|
Todo:
|
|
Notes:
|
|
History: 19 Jun 2007 - mcdurdin - I817 - Remove Forms dependence
|
|
23 Aug 2007 - mcdurdin - Initial version from Desktop
|
|
*)
|
|
unit resource;
|
|
|
|
interface
|
|
|
|
const
|
|
IDC_PROGRESS1 = 1000;
|
|
IDC_CHECK1 = 1001;
|
|
IDC_TITLE = 1003;
|
|
IDC_MESSAGE = 1004;
|
|
IDC_IMAGE = 1005;
|
|
IDC_STATUS = 1006;
|
|
IDC_LOGO = 1007;
|
|
IDC_LOGOMESSAGE = 1008;
|
|
|
|
implementation
|
|
|
|
end.
|