mirror of https://github.com/lianthony/NT4.0
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.
33 lines
575 B
33 lines
575 B
/*
|
|
* dataobj.hpp - IDataObject implementation description.
|
|
*/
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" { /* Assume C declarations for C++. */
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
/* Prototypes
|
|
*************/
|
|
|
|
// dataobj.cpp
|
|
|
|
extern BOOL InitDataObjectModule(void);
|
|
extern void ExitDataObjectModule(void);
|
|
|
|
|
|
/* Global Variables
|
|
*******************/
|
|
|
|
// dataobj.cpp
|
|
|
|
extern UINT g_cfURL;
|
|
extern UINT g_cfFileGroupDescriptor;
|
|
extern UINT g_cfFileContents;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* End of extern "C" {. */
|
|
#endif /* __cplusplus */
|
|
|