blob: 06530cace2db96286a166ebcf57e5b102734de63 (
plain)
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
|
//
// Tizen C++ SDK
// Copyright (c) 2012 Samsung Electronics Co., Ltd.
//
// Licensed under the Flora License, Version 1.0 (the License);
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://floralicense.org/license
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an AS IS BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#ifndef _APP_RESOURCE_ID_H_
#define _APP_RESOURCE_ID_H_
extern const wchar_t* IDF_FORM;
extern const wchar_t* IDC_BUTTON_GENERATE_URL;
extern const wchar_t* IDC_BUTTON_GENERATE_SMS;
extern const wchar_t* IDC_BUTTON_GENERATE_TEXT;
extern const wchar_t* IDC_BUTTON_GENERATE_CUSTOM;
extern const wchar_t* IDF_GENERATE_FORM;
extern const wchar_t* IDF_QR_FORM;
extern const wchar_t* IDC_MESSAGE_POPUP;
extern const wchar_t* IDC_LABEL_MASSEGE_TEXT;
extern const wchar_t* IDC_BUTTON_MESSAGE_CLOSE;
extern const wchar_t* IDL_PANEL_CUSTOM;
extern const wchar_t* IDC_EDITAREA_CUSTOM;
extern const wchar_t* IDC_PANEL1;
extern const wchar_t* IDC_LABEL_QR_MODE;
extern const wchar_t* IDC_CHECKBUTTON_MODE1;
extern const wchar_t* IDC_CHECKBUTTON_MODE2;
extern const wchar_t* IDC_CHECKBUTTON_MODE3;
extern const wchar_t* IDC_LABEL_ECL;
extern const wchar_t* IDC_PANEL2;
extern const wchar_t* IDC_CHECKBUTTON_L;
extern const wchar_t* IDC_CHECKBUTTON_M;
extern const wchar_t* IDC_CHECKBUTTON_Q;
extern const wchar_t* IDC_CHECKBUTTON_H;
extern const wchar_t* IDL_PANEL_SMS;
extern const wchar_t* IDC_LABEL_SMS_TO;
extern const wchar_t* IDC_EDITFIELD_RECIPIENT;
extern const wchar_t* IDC_LABEL_SMS_BODY;
extern const wchar_t* IDC_EDITAREA_SMS_BODY;
extern const wchar_t* IDL_PANEL_TEXT;
extern const wchar_t* IDC_EDITAREA_TEXT;
extern const wchar_t* IDL_PANEL_URL;
extern const wchar_t* IDC_EDITFIELD_URL;
#endif // _APP_RESOURCE_ID_H_
|