mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
23 lines
618 B
C
23 lines
618 B
C
#ifdef _MSC_VER
|
|
#pragma once // for MSVS
|
|
#endif // #ifdef _MSC_VER
|
|
|
|
#ifndef _ASCUTILSDEFINES_H_ // For Borland compiler
|
|
#define _ASCUTILSDEFINES_H_
|
|
|
|
#define ACCURATE_SEEKMODE 0
|
|
#define LEFTNEAREST_SEEKMODE 1
|
|
#define RIGHTNEAREST_SEEKMODE 2
|
|
|
|
#define NULLMODE 0
|
|
#define READMODE 1
|
|
#define WRITEMODE 2
|
|
#define ENCODERMODE 1
|
|
#define DECODERMODE 2
|
|
|
|
#define PROGRESSVIDEOFILE_PARSING_FILE 1
|
|
#define PROGRESSVIDEOFILE_INTERNRTBROADCASTING 2
|
|
#define PROGRESSVIDEOFILE_INDEXING 3
|
|
#define PROGRESSVIDEOFILE_PARSING_VBRAUDIO 4
|
|
|
|
#endif // #ifndef _ASCUTILSDEFINES_H_ // For Borland compiler
|