-
Notifications
You must be signed in to change notification settings - Fork 0
/
dd.h
28 lines (22 loc) · 998 Bytes
/
dd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
@file dd.h
PUNY-80
TRS-80 disk image tool for Linux and other *nix operating systems
Copyright (c) 2024 Stefan Vogt and Shawn Sijnstra
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
See file LICENSE for details.
Based on TRS-80 Virtual Disk Kit by Miguel Dutra and Mike Gore.
*/
//---------------------------------------------------------------------------------
// Operating System Interface for DBLDOS
//---------------------------------------------------------------------------------
class CDD: public CND
{
public:
DWORD Load(CVDI* pVDI, DWORD dwFlags); // Validate DOS version and define operating parameters
protected:
DWORD CheckDir(void); // Check the directory structure
};