Changeset 216
- Timestamp:
- Aug 29, 2002, 5:46:24 PM (23 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/prfh.h
r157 r216 100 100 DECLARE_PRFH_STRING(PMINIKEY_MENUSFONT, "Menus"); 101 101 102 // installed fonts sec sion102 // installed fonts section 103 103 DECLARE_PRFH_STRING(PMINIAPP_FONTS, "PM_Fonts"); 104 104 … … 109 109 DECLARE_PRFH_STRING(WPINIKEY_SHORTMENUS, "FolderMenus"); 110 110 // V0.9.19 (2002-04-17) [umoeller] 111 112 // class replacements list V0.9.21 (2002-08-26) [umoeller] 113 DECLARE_PRFH_STRING(WPINIAPP_REPLACEMENTS, "PM_Workplace:ReplaceList"); 111 114 112 115 // abstract objects per folder handle … … 126 129 DECLARE_PRFH_STRING(WPINIAPP_PALETTEPOS, "PM_Workplace:PalettePos"); 127 130 // ??? 128 DECLARE_PRFH_STRING(WPINIAPP_STATUSPOS, "PM_Workplace:StatusPos");131 DECLARE_PRFH_STRING(WPINIAPP_STATUSPOS, "PM_Workplace:StatusPos"); 129 132 // startup folders 130 DECLARE_PRFH_STRING(WPINIAPP_STARTUP, "PM_Workplace:Startup");133 DECLARE_PRFH_STRING(WPINIAPP_STARTUP, "PM_Workplace:Startup"); 131 134 // all the defined templates on the system 132 DECLARE_PRFH_STRING(WPINIAPP_TEMPLATES, "PM_Workplace:Templates");135 DECLARE_PRFH_STRING(WPINIAPP_TEMPLATES, "PM_Workplace:Templates"); 133 136 134 137 // all work area folders 135 138 DECLARE_PRFH_STRING(WPINIAPP_WORKAREARUNNING, "FolderWorkareaRunningObjects"); 136 139 // spooler windows ?!? 137 DECLARE_PRFH_STRING(WPINIAPP_JOBCNRPOS, "PM_PrintObject:JobCnrPos");140 DECLARE_PRFH_STRING(WPINIAPP_JOBCNRPOS, "PM_PrintObject:JobCnrPos"); 138 141 139 142 // associations by type ("Plain Text") -
trunk/include/helpers/winh.h
r215 r216 854 854 PVOID pvCreateParam); 855 855 856 HWND XWPENTRY winhCreateControl(HWND hwndParentAndOwner, 856 HWND XWPENTRY winhCreateControl(HWND hwndParent, 857 HWND hwndOwner, 857 858 const char *pcszClass, 858 859 const char *pcszText, -
trunk/src/helpers/winh.c
r215 r216 4008 4008 * 4009 4009 *@@added V0.9.9 (2001-03-13) [umoeller] 4010 */ 4011 4012 HWND winhCreateControl(HWND hwndParentAndOwner, // in: owner and parent window 4010 *@@changed V0.9.21 (2002-08-26) [umoeller]: added separate hwndOwner 4011 */ 4012 4013 HWND winhCreateControl(HWND hwndParent, // in: parent window 4014 HWND hwndOwner, // in: owner window 4013 4015 const char *pcszClass, // in: window class (e.g. WC_BUTTON) 4014 4016 const char *pcszText, // in: window title … … 4016 4018 ULONG ulID) // in: control ID 4017 4019 { 4018 return (WinCreateWindow(hwndParentAndOwner,4019 4020 4021 4022 4023 hwndParentAndOwner,4024 4025 4026 4027 NULL));4020 return WinCreateWindow(hwndParent, 4021 (PSZ)pcszClass, 4022 (PSZ)pcszText, 4023 ulStyle, 4024 0, 0, 0, 0, 4025 hwndOwner, 4026 HWND_TOP, 4027 ulID, 4028 NULL, 4029 NULL); 4028 4030 } 4029 4031
Note:
See TracChangeset
for help on using the changeset viewer.