cdrapi.h 530 B

12345678910111213141516171819202122232425
  1. #ifndef CDRAPI_H_INCLUDED
  2. #define CDRAPI_H_INCLUDED
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <string.h>
  5. #import "VGCoreAuto.tlb" \
  6. rename("GetCommandLine", "VGGetCommandLine") \
  7. rename("CopyFile", "VGCore") \
  8. rename("FindWindow", "VGFindWindow")
  9. #define corel VGCore::IVGApplication
  10. using namespace VGCore;
  11. void BeginOpt(corel *cdr);
  12. void EndOpt(corel *cdr);
  13. void Active_CorelWindows(HWND hDlg);
  14. double GetTextValue(HWND hDlg, int IDITEM);
  15. void PutTextValue(HWND hDlg, int IDITEM, char *buf);
  16. #endif // CDRAPI_H_INCLUDED