Changeset 136 for trunk/include/helpers
- Timestamp:
- Feb 3, 2002, 11:46:54 AM (24 years ago)
- Location:
- trunk/include/helpers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/dialog.h
r132 r136 62 62 63 63 #define SZL_AUTOSIZE (-1) 64 #define SZL_LARGEST_ROW_WIDTH (-2) 64 65 65 66 #define CTL_COMMON_FONT ((PCSZ)-1) … … 106 107 // proposed size; a number of special flags are 107 108 // available (per cx, cy field): 108 // -- SZL_AUTOSIZE : determine size automatically.109 // -- SZL_AUTOSIZE (-1): determine size automatically. 109 110 // Works only for statics with SS_TEXT and 110 111 // SS_BITMAP. 112 // -- Any other _negative_ value is considered a 113 // percentage of the largest row width in the 114 // table. For example, -50 would mean 50% of 115 // the largest row in the table. This is valid 116 // for the CX field only. 111 117 // This field is IGNORED if the CONTROLDEF appears 112 118 // with a START_NEW_TABLE type in _DLGHITEM. … … 190 196 #define COMMON_SPACING 3 191 197 192 #define CONTROLDEF_GROUP(pcsz, id ) { WC_STATIC, pcsz, \198 #define CONTROLDEF_GROUP(pcsz, id, cx, cy) { WC_STATIC, pcsz, \ 193 199 WS_VISIBLE | SS_GROUPBOX | DT_MNEMONIC, \ 194 id, CTL_COMMON_FONT, 0, { -1, -1}, 0 }200 id, CTL_COMMON_FONT, 0, { cx, cy }, 0 } 195 201 196 202 #define CONTROLDEF_TEXT(pcsz, id, cx, cy) { WC_STATIC, pcsz, \ -
trunk/include/helpers/exeh.h
r131 r136 1165 1165 // returned by exehOpen): 1166 1166 ULONG ulExeFormat; 1167 #endif 1167 1168 #define EXEFORMAT_OLDDOS 1 1168 1169 #define EXEFORMAT_NE 2 … … 1173 1174 #define EXEFORMAT_COM 7 // added V0.9.16 (2002-01-04) [umoeller] 1174 1175 1176 #ifndef __STRIP_DOWN_EXECUTABLE__ 1175 1177 BOOL fLibrary, // TRUE if this is a DLL 1176 1178 // (works for NE, LX, PE) … … 1179 1181 1180 1182 ULONG ulOS; 1183 #endif 1181 1184 // target operating system as flagged in one of 1182 1185 // the EXE headers; one of: … … 1198 1201 // if PE optional header was successfully read 1199 1202 1203 #ifndef __STRIP_DOWN_EXECUTABLE__ 1200 1204 // The following fields are only set after 1201 1205 // an extra call to exehQueryBldLevel (NE and LX only):
Note:
See TracChangeset
for help on using the changeset viewer.