blob: 168e7a2f58804f645ea65a5dba2d100d24cc0321 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <precomp.h>
#include "svc_wndcreate.h"
#define CBCLASS svc_windowCreateI
START_DISPATCH;
CB(TESTGUID, testGuid);
CB(CREATEWINDOWBYGUID, createWindowByGuid);
CB(TESTTYPE, testType);
CB(CREATEWINDOWOFTYPE, createWindowOfType);
CB(DESTROYWINDOW, destroyWindow);
CB(REFCOUNT, refcount);
END_DISPATCH;
#undef CBCLASS
|