|
From: <ha...@us...> - 2003-03-30 07:51:27
|
Update of /cvsroot/decaldev/source/DecalFilters
In directory sc8-pr-cvs1:/tmp/cvs-serv9314
Modified Files:
DecalFilters.cpp DecalFilters.idl DecalFilters.rc resource.h
Log Message:
ID Filter! yay! (probably tons of bugs still, but it made 6s work again reliably in my testing)
Index: DecalFilters.cpp
===================================================================
RCS file: /cvsroot/decaldev/source/DecalFilters/DecalFilters.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** DecalFilters.cpp 3 Jan 2002 04:12:11 -0000 1.7
--- DecalFilters.cpp 30 Mar 2003 07:51:21 -0000 1.8
***************
*** 23,26 ****
--- 23,28 ----
#include "WorldIterator.h"
+ #include "IdentifyQueue.h"
+
CComModule _Module;
***************
*** 33,36 ****
--- 35,39 ----
OBJECT_ENTRY(CLSID_WorldObject, cWorldObject)
OBJECT_ENTRY(CLSID_WorldIterator, cWorldIterator)
+ OBJECT_ENTRY(CLSID_IdentifyQueue, CIdentifyQueue)
END_OBJECT_MAP()
Index: DecalFilters.idl
===================================================================
RCS file: /cvsroot/decaldev/source/DecalFilters/DecalFilters.idl,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** DecalFilters.idl 18 Nov 2002 05:36:05 -0000 1.29
--- DecalFilters.idl 30 Mar 2003 07:51:21 -0000 1.30
***************
*** 326,329 ****
--- 326,339 ----
[
+ object,
+ uuid(6FD2E07C-7E9C-451B-8968-2FCB0226D0E8),
+ dual,
+ nonextensible,
+ helpstring("IIdentifyQueue Interface"),
+ pointer_default(unique)
+ ]
+ interface IIdentifyQueue : IDispatch{
+ };
+ [
uuid(DA16DAA9-7F16-45D9-A59F-8C45A7F2ACB1),
version(1.0),
***************
*** 606,608 ****
--- 616,626 ----
};
+ [
+ uuid(B0C05A9A-273D-4BC4-B7BA-E27CF94C8EF4),
+ helpstring("IdentifyQueue Class")
+ ]
+ coclass IdentifyQueue
+ {
+ [default] interface IIdentifyQueue;
+ };
};
Index: DecalFilters.rc
===================================================================
RCS file: /cvsroot/decaldev/source/DecalFilters/DecalFilters.rc,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** DecalFilters.rc 28 Mar 2003 02:58:13 -0000 1.53
--- DecalFilters.rc 30 Mar 2003 07:51:21 -0000 1.54
***************
*** 95,98 ****
--- 95,99 ----
IDR_WORLDOBJECT REGISTRY "WorldObject.rgs"
IDR_WORLDITERATOR REGISTRY "WorldIterator.rgs"
+ IDR_IDENTIFYQUEUE REGISTRY "IdentifyQueue.rgs"
/////////////////////////////////////////////////////////////////////////////
Index: resource.h
===================================================================
RCS file: /cvsroot/decaldev/source/DecalFilters/resource.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** resource.h 29 Nov 2001 12:03:57 -0000 1.6
--- resource.h 30 Mar 2003 07:51:21 -0000 1.7
***************
*** 1,4 ****
//{{NO_DEPENDENCIES}}
! // Microsoft Developer Studio generated include file.
// Used by DecalFilters.rc
//
--- 1,4 ----
//{{NO_DEPENDENCIES}}
! // Microsoft Visual C++ generated include file.
// Used by DecalFilters.rc
//
***************
*** 11,14 ****
--- 11,15 ----
#define IDR_LOCATION 108
#define IDR_WORLDITERATOR 109
+ #define IDR_IDENTIFYQUEUE 110
#define IDR_ECHOFILTER 202
#define IDR_CHARACTERSTATS 204
***************
*** 23,27 ****
#define _APS_NEXT_COMMAND_VALUE 32768
#define _APS_NEXT_CONTROL_VALUE 201
! #define _APS_NEXT_SYMED_VALUE 110
#endif
#endif
--- 24,28 ----
#define _APS_NEXT_COMMAND_VALUE 32768
#define _APS_NEXT_CONTROL_VALUE 201
! #define _APS_NEXT_SYMED_VALUE 111
#endif
#endif
|