mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
437 B
24 lines
437 B
/*
|
|
* clsfact.h - IClassFactory implementation.
|
|
*/
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" { /* Assume C declarations for C++. */
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
/* Prototypes
|
|
*************/
|
|
|
|
/* clsfact.cpp */
|
|
|
|
extern ULONG DLLAddRef(void);
|
|
extern ULONG DLLRelease(void);
|
|
extern PULONG GetDLLRefCountPtr(void);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* End of extern "C" {. */
|
|
#endif /* __cplusplus */
|
|
|