Initial community commit

This commit is contained in:
Jef 2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit fc06254474
16440 changed files with 4239995 additions and 2 deletions

View file

@ -0,0 +1,29 @@
#include "precomp.h"
#include "imggen.h"
#include "solid.h"
#include "grad.h"
#include "osedge.h"
#include "poly.h"
#include "shadowwnd.h"
#include "../studio/services/servicei.h"
static WACNAME wac;
WAComponentClient *the = &wac;
// {9C9CB15E-2904-4df2-B8CE-FFBC6CD230DC}
static const GUID guid =
{ 0x9c9cb15e, 0x2904, 0x4df2, { 0xb8, 0xce, 0xff, 0xbc, 0x6c, 0xd2, 0x30, 0xdc } };
WACNAME::WACNAME() {
registerService(new waServiceFactoryTSingle<svc_imageGenerator, SolidImage>);
registerService(new waServiceFactoryTSingle<svc_imageGenerator, GradientImage>);
registerService(new waServiceFactoryTSingle<svc_imageGenerator, OsEdgeImage>);
registerService(new waServiceFactoryTSingle<svc_imageGenerator, PolyImage>);
registerService(new XuiObjectCreator<XuiShadowWndSvc>);
}
GUID WACNAME::getGUID() {
return guid;
}