mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-01 22:30:42 -07:00
46e8c8a5a5
## Link to GitHub Issue, if one exists n/a ## Description of change When an exception is caught during ACIO hook init, print a special message to suggest the user to disable RTSS and MSI Afterburner, since they are known to cause issues. ## Testing Tried with RTSS enabled with High detection and with it disabled. Also tried to crash the game a different way and check that the message is not printed and the callstack is shown propeerly.
21 lines
329 B
C++
21 lines
329 B
C++
#pragma once
|
|
|
|
#include <atomic>
|
|
#include <vector>
|
|
|
|
#include <windows.h>
|
|
|
|
#include "module.h"
|
|
|
|
namespace acio {
|
|
|
|
// globals
|
|
extern HINSTANCE DLL_INSTANCE;
|
|
extern std::vector<acio::ACIOModule *> MODULES;
|
|
extern std::atomic<bool> IO_INIT_IN_PROGRESS;
|
|
|
|
void attach();
|
|
void attach_icca();
|
|
void detach();
|
|
}
|