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.
30 lines
487 B
30 lines
487 B
#ifndef _WINSWRITER_HPP
|
|
#define _WINSWRITER_HPP
|
|
|
|
#ifdef CPLUSPLUS
|
|
extern "C" {
|
|
#endif //CPLUSPLUS
|
|
|
|
#define WINSWRITER_NAME TEXT("WINS Jet Writer")
|
|
|
|
DWORD _cdecl WinsWriterInit();
|
|
DWORD _cdecl WinsWriterTerm();
|
|
|
|
|
|
#ifdef CPLUSPLUS
|
|
}
|
|
#endif //CPLUSPLUS
|
|
|
|
// this class could be refrerenced only from C++ code
|
|
#ifdef CPLUSPLUS
|
|
|
|
class CWinsVssJetWriter : public CVssJetWriter
|
|
{
|
|
public:
|
|
HRESULT Initialize();
|
|
HRESULT Terminate();
|
|
};
|
|
|
|
#endif //CPLUSPLUS
|
|
|
|
#endif
|