Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(812)

Side by Side Diff: fpdfsdk/include/fsdk_common.h

Issue 1160443004: Fix ALL the include guards. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Full style-guide compliance. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fpdfsdk/include/fsdk_baseform.h ('k') | fpdfsdk/include/fsdk_define.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef _FSDK_COMMON_H_ 7 #ifndef FPDFSDK_INCLUDE_FSDK_COMMON_H_
8 #define _FSDK_COMMON_H_ 8 #define FPDFSDK_INCLUDE_FSDK_COMMON_H_
9 9
10 #define BFFT_SIGNATURE "Signature" 10 #define BFFT_SIGNATURE "Signature"
11 11
12 //for all fields 12 //for all fields
13 #define FIELDFLAG_READONLY 1 13 #define FIELDFLAG_READONLY 1
14 #define FIELDFLAG_REQUIRED 2 14 #define FIELDFLAG_REQUIRED 2
15 #define FIELDFLAG_NOEXPORT 4 15 #define FIELDFLAG_NOEXPORT 4
16 //for text fields 16 //for text fields
17 #define FIELDFLAG_MULTILINE (1<<12) 17 #define FIELDFLAG_MULTILINE (1<<12)
18 #define FIELDFLAG_PASSWORD (1<<13) 18 #define FIELDFLAG_PASSWORD (1<<13)
(...skipping 16 matching lines...) Expand all
35 #define FIELDFLAG_DONOTSPELLCHECK (1<<22) 35 #define FIELDFLAG_DONOTSPELLCHECK (1<<22)
36 #endif 36 #endif
37 #define FIELDFLAG_COMMITONSELCHANGE (1<<26) 37 #define FIELDFLAG_COMMITONSELCHANGE (1<<26)
38 38
39 #define BBS_SOLID 0 39 #define BBS_SOLID 0
40 #define BBS_DASH 1 40 #define BBS_DASH 1
41 #define BBS_BEVELED 2 41 #define BBS_BEVELED 2
42 #define BBS_INSET 3 42 #define BBS_INSET 3
43 #define BBS_UNDERLINE 4 43 #define BBS_UNDERLINE 4
44 44
45 45 #endif // FPDFSDK_INCLUDE_FSDK_COMMON_H_
46 #endif
OLDNEW
« no previous file with comments | « fpdfsdk/include/fsdk_baseform.h ('k') | fpdfsdk/include/fsdk_define.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698