Source file: /~heha/mb-iwp/Antriebe/Schrittmotorsteuerung/smc.zip/TabDlg.h

#include <windows.h>

struct CRECT:RECT{
 int width() const {return right-left;}
 int height() const {return bottom-top;}
};

struct DLGPAGE{
 LPTSTR szTemplate;
 DLGTEMPLATE *pRes;
 HICON hIcon;
 DLGPROC dlgProc;
 HWND hWnd;
};

struct DLGHDR{
 HWND hwndDlg;		// umgebender Dialog
 HWND hwndTab;		// tab control 
 HWND hwndDisplay;	// current child dialog box 
 int nPages;
 DLGPAGE page[1]; 
 void OnSelChange();
 void OnInit();
};
Detected encoding: ASCII (7 bit)2