/*//////////////////////////////// CMikeCF ////////////////////////////////

Contains information about the CMike Class Factory that we'd like to export

Back to the "COM Inproc Server in C" tutorial.

*/

#ifndef CMikeCF_H
#define CMikeCF_H


#include "IMike.h"

typedef struct _CMikeCF
{
IClassFactory icf;
int cRef;
} CMikeCF;

/*IMVT (IMike VTable) is defined in CMike.c */
extern struct IMikeVtbl IMVT ;

#endif /* CMikeCF_H */

/*//////////////////////////////// CMikeCF ////////////////////////////////*/