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,37 @@
#ifndef _SVCENUM_H
#define _SVCENUM_H
/*<?<autoheader/>*/
class waServiceFactory;
/*?>*/
// abstract base class
class NOVTABLE SvcEnum {
protected:
SvcEnum();
void *_getNext(int global_lock = TRUE);
void reset();
virtual int _testService(void *)=0;
public:
#ifdef ASSERTS_ENABLED
static int release(waServiceFactory *ptr) { ASSERTALWAYS("never ever call release() with a waServiceFactory * !!!"); return 0; }
#endif
static int release(void *ptr);
waServiceFactory *getLastFactory();
protected:
FOURCC type;
private:
int pos;
waServiceFactory * factory;
};
#endif // _SVCENUM_H