source: trunk/MFCtooling/replay/WindowData.h @ 32

Last change on this file since 32 was 32, checked in by sherbold, 13 years ago
File size: 351 bytes
Line 
1#pragma once
2
3#include <string>
4
5typedef struct WindowDataStruct {
6        std::wstring name;
7        std::wstring className;
8        int resourceId;
9        bool isModal;
10        WindowDataStruct * child;
11
12        /*void deleteChildren() {
13                if( child!=NULL ) {
14                        child.deleteChilren();
15                        delete child;
16                }
17        }*/
18} WindowData;
19
20void deleteWindowData(WindowData * winData);
Note: See TracBrowser for help on using the repository browser.