123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #ifndef _NEROCOPYAPI_
- #define _NEROCOPYAPI_
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #include "NeroAPI.h"
- #if defined(__BORLANDC__)
- #pragma pack(push, 8)
- #pragma option push -b
- #endif
- #define NERO_CD_COPY_TYPE ((NERO_CD_FORMAT)1000)
- typedef struct
- {
- NERO_DEVICEHANDLE sourceDrive;
- BOOL onTheFly;
- const char *imageFilePath;
- BOOL deleteImage;
-
- int readSpeed;
-
- UINT tryNr;
- BOOL readErrOption;
-
-
- BOOL readRawMode1;
- int rawMode1Option;
- BOOL readRawMode2;
- int rawMode2Option;
- BOOL readSub;
- BOOL checkDA;
- int slowDown;
- BOOL ignoreDAErr;
- BOOL readIsrcAndMediaCatalogNo;
- BOOL ignoreBadTOCType;
- NERO_MEDIA_TYPE mediaType;
- } NERO_CD_COPY;
- #ifdef __cplusplus
- }
- #endif
- #if defined(__BORLANDC__)
- #pragma pack(pop)
- #pragma option pop
- #endif
- #endif
|