Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
19
Src/Wasabi/api/wndmgr/gc.h
Normal file
19
Src/Wasabi/api/wndmgr/gc.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
#ifndef __GARBAGECOLLECT_H
|
||||
#define __GARBAGECOLLECT_H
|
||||
|
||||
#include <api/syscb/callbacks/gccb.h>
|
||||
|
||||
class GarbageCollector : public GarbageCollectCallbackI {
|
||||
public:
|
||||
GarbageCollector();
|
||||
virtual ~GarbageCollector();
|
||||
|
||||
virtual int gccb_onGarbageCollect();
|
||||
|
||||
private:
|
||||
uint32_t last;
|
||||
};
|
||||
|
||||
extern GarbageCollector *garbageCollector;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue