2023-02-20 17:59:08 -05:00
|
|
|
// converters.h
|
|
|
|
// Copyright (C) 2023 Richard Geldreich, Jr.
|
|
|
|
#pragma once
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
void converters_init();
|
|
|
|
|
2023-10-05 14:07:39 -04:00
|
|
|
bool convert_magonia(const char* pSrc_filename, const char* pDst_filename, const char* pSource_override = nullptr, const char* pRef_override = nullptr, uint32_t TOTAL_COLS = 15, const char *pType_override = nullptr, bool parens_flag = true, uint32_t first_rec_index = 1);
|
|
|
|
bool convert_dolan(const char* pSrc_filename, const char* pDst_filename, const char* pSource, const char* pType, const char* pRef);
|
2023-02-20 17:59:08 -05:00
|
|
|
bool convert_bluebook_unknowns();
|
|
|
|
bool convert_hall();
|
|
|
|
bool convert_eberhart(unordered_string_set& unique_urls);
|
|
|
|
bool convert_johnson();
|
2023-02-24 14:23:55 -05:00
|
|
|
bool convert_nicap(unordered_string_set& unique_urls);
|
2023-08-07 19:28:52 -04:00
|
|
|
bool convert_nuk();
|
2023-10-05 14:07:39 -04:00
|
|
|
bool convert_anon();
|
|
|
|
bool convert_rr0();
|
|
|
|
bool convert_overmeire();
|