mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-01 12:31:59 +00:00
17 lines
531 B
C
17 lines
531 B
C
#pragma once
|
|
|
|
#include "Common.h"
|
|
|
|
// Must be in the same order as in PageAdvanced.cpp
|
|
enum DONGLETYPE { DT_EMPTY, DT_SDSSPEEDSTAR };
|
|
|
|
void SetCopyProtectionDongleType(DONGLETYPE type);
|
|
DONGLETYPE GetCopyProtectionDongleType(void);
|
|
int CopyProtectionDonglePB0(void);
|
|
int CopyProtectionDonglePB1(void);
|
|
int CopyProtectionDonglePB2(void);
|
|
bool SdsSpeedStar(void);
|
|
|
|
void CopyProtectionDongleSaveSnapshot(class YamlSaveHelper& yamlSaveHelper);
|
|
void CopyProtectionDongleLoadSnapshot(class YamlLoadHelper& yamlLoadHelper, UINT version);
|