Full-node GUI wallet for DragonX cryptocurrency. Built with Dear ImGui, SDL3, and OpenGL3/DX11. Features: - Send/receive shielded and transparent transactions - Autoshield with merged transaction display - Built-in CPU mining (xmrig) - Peer management and network monitoring - Wallet encryption with PIN lock - QR code generation for receive addresses - Transaction history with pagination - Console for direct RPC commands - Cross-platform (Linux, Windows)
10 lines
252 B
C
10 lines
252 B
C
#pragma once
|
|
// Stub for miniz_export.h — normally generated by CMake.
|
|
// We build miniz as a static source file, so no export macros are needed.
|
|
#ifndef MINIZ_EXPORT
|
|
#define MINIZ_EXPORT
|
|
#endif
|
|
#ifndef MINIZ_NO_EXPORT
|
|
#define MINIZ_NO_EXPORT
|
|
#endif
|