| 113 | // ������������ �� BYTE ������� ��� ������������� � �������� ���� LanMon 1 |
| 114 | #pragma pack(push,1) |
| 115 | class TMyFont |
| 116 | { |
| 117 | public: |
| 118 | TColor Color; |
| 119 | int Height; |
| 120 | char Name[32]; |
| 121 | TFontPitch Pitch; |
| 122 | int PixelsPerInch; |
| 123 | int Size; |
| 124 | BYTE Style; // ���� 1 2 4 8 {fsBold,fsItalic,fsUnderline,fsStrikeOut}; |
| 125 | |
| 126 | public: |
| 127 | void Get(TFont *); |
| 128 | void Set(TFont *); |
| 129 | bool Load(TMYIniFile * f, char * Section); |
| 130 | bool Save(TMYIniFile * f, char * Section); |
| 131 | }; |
| 132 | #pragma pack(pop) |
| 133 | //----------------------------------------------------------------- |
| 134 | // �������� ������ ���� �� "�������� ����". ������: TWaitCursor wait; |
nothing calls this directly
no outgoing calls
no test coverage detected