comparison src/UniversalIndentGUI_NPP/UniversalIndentGUI_NPP.h @ 714:3363b7bb0d41

Once more let Uncrustify reformat my code. git-svn-id: svn://svn.code.sf.net/p/universalindent/code/trunk@985 59b1889a-e5ac-428c-b0c7-476e01d41282
author thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
date Mon, 27 Jul 2009 15:17:08 +0000
parents cd73fb26dfb0
children f3631db17328
comparison
equal deleted inserted replaced
713:56a36f633431 714:3363b7bb0d41
29 29
30 #include "IndentHandler.h" 30 #include "IndentHandler.h"
31 #include "SettingsPaths.h" 31 #include "SettingsPaths.h"
32 32
33 /* menu position in funcItem */ 33 /* menu position in funcItem */
34 #define TOGGLE_SHOW_UIGUI_INDEX 0 34 #define TOGGLE_SHOW_UIGUI_INDEX 0
35 #define EXECUTE_TEXT_INDENT_INDEX 1 35 #define EXECUTE_TEXT_INDENT_INDEX 1
36 #define TOGGLE_AUTO_UPDATE_INDEX 2 36 #define TOGGLE_AUTO_UPDATE_INDEX 2
37 37
38 38
39 /* ini file name */ 39 /* ini file name */
40 CONST TCHAR PLUGINTEMP_INI[] = _T("\\UniversalIndentGUI.ini"); 40 CONST TCHAR PLUGINTEMP_INI[] = _T("\\UniversalIndentGUI.ini");
41 41
42 /* param names of ini file */ 42 /* param names of ini file */
43 /* section */ 43 /* section */
44 CONST TCHAR dlgTemp[] = _T("UniversalIndentGUI"); 44 CONST TCHAR dlgTemp[] = _T("UniversalIndentGUI");
45 /* keys of section */ 45 /* keys of section */
46 CONST TCHAR Value1[] = _T("Value1"); 46 CONST TCHAR Value1[] = _T("Value1");
47 CONST TCHAR Value2[] = _T("Value2"); 47 CONST TCHAR Value2[] = _T("Value2");
48 48
49 49
50 /* define here your plugin properties (stored in an ini file) */ 50 /* define here your plugin properties (stored in an ini file) */
51 typedef struct tPluginProp { 51 typedef struct tPluginProp {
52 INT iValue1; 52 INT iValue1;
53 INT iValue2; 53 INT iValue2;
54 } tPluginProp; 54 } tPluginProp;
55 55
56 56
57 /* load and save properties from/into ini file */ 57 /* load and save properties from/into ini file */
58 void loadSettings(void); 58 void loadSettings(void);
63 void toggleAutoUpdate(void); 63 void toggleAutoUpdate(void);
64 void indentText(void); 64 void indentText(void);
65 65
66 66
67 67
68 #endif // UNIVERSALINDENTGUI_NPP_H 68 #endif // UNIVERSALINDENTGUI_NPP_H
69 69