Created an installer which can create secure folders, create a background process and downloa the main applications files.
17 lines
351 B
C++
17 lines
351 B
C++
#pragma once
|
|
#include <windows.h>
|
|
#include <sddl.h>
|
|
#include <iostream>
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <io.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <windows.h>
|
|
#include <sddl.h>
|
|
#include <stdio.h>
|
|
int protect_file(char* path);
|
|
int unprotect_file(char* path); |