source:
trunk/MFCtooling/replay/WindowData.h
@
646
| Last change on this file since 646 was 32, checked in by sherbold, 14 years ago | |
|---|---|
| File size: 351 bytes | |
| Rev | Line | |
|---|---|---|
| [32] | 1 | #pragma once |
| 2 | ||
| 3 | #include <string> | |
| 4 | ||
| 5 | typedef 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 | ||
| 20 | void deleteWindowData(WindowData * winData); |
Note: See TracBrowser
for help on using the repository browser.
