Nigel
e6901f0526
The uri has to contain 8.3 filenames for now as I have not yet figured out how to convert from that to regular filenaming for the name comparison. reading files is still limited to 1 sector
13 lines
111 B
C++
13 lines
111 B
C++
//
|
|
// Created by nigel on 25/02/23.
|
|
//
|
|
#pragma once
|
|
|
|
|
|
class List {
|
|
public:
|
|
List* next;
|
|
void* data;
|
|
};
|
|
|