updated folder scanning code

This commit is contained in:
jakani24
2023-12-25 22:50:30 +01:00
parent 89aab04cce
commit f069abeb7b
97 changed files with 4778 additions and 150 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#ifndef SETTINGS_H
#define SETTINGS_H
#include <iostream>
#include <Windows.h>
int get_setting(const char* setting_name);
int get_setting(const char* setting_name,char*out);
int load_settings();
bool is_folder_excluded(const char* path);
void print_exclusions();
#endif