📄 authint.h
字号:
#ifndef INC_AUTHINT_H
#define INC_AUTHINT_H
#include <windows.h>
#define DLLIMPORT __declspec(dllimport)
//***typedefs
typedef int dvdIntDrive;
typedef int dvdIntTitle;
typedef unsigned char Byte;
typedef unsigned char *PByte;
extern DLLIMPORT dvdIntDrive _stdcall dvdIntOpenDrive(void);
extern DLLIMPORT _stdcall dvdIntCloseDrive( dvdIntDrive drive );
extern DLLIMPORT int _stdcall dvdIntPutDrvChallenge( dvdIntDrive drive, Byte challenge[10] );
extern DLLIMPORT int _stdcall dvdIntGetDrvResponse( dvdIntDrive drive, Byte response[5] );
extern DLLIMPORT int _stdcall dvdIntGetDecChallenge( dvdIntDrive drive, Byte challenge[10] );
extern DLLIMPORT int _stdcall dvdIntPutDecResponse( dvdIntDrive drive, Byte response[5] );
extern DLLIMPORT int _stdcall dvdIntGetEncDiscKey( dvdIntDrive drive, Byte bedk[2045] );
extern DLLIMPORT int _stdcall dvdIntGetEncTitleKey( dvdIntDrive drive,Byte betk[5] );
#endif INC_AUTHINT_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -