1
0
forked from cheng/wallet
wallet/samples/config/stdafx.h
Cheng d59729f396
Never really figured out why my code was breaking
fixed it by looking for funny things that deviated from
the sameples,  and doing various recommended safe things,
and found a few sql errors, and one by one the crashes
went away.

The new wxWidgets just seems less tolerant of little careless
stuff that is not right.
2023-10-18 20:23:56 +10:00

23 lines
434 B
C

#pragma once
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
#include "wx/wxprec.h"
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif //precompiled headers
#include "wx/log.h"
#include "wx/config.h"
#ifndef wxHAS_IMAGES_IN_RESOURCES
#include "../../src/rho.xpm"
#endif
#include "frame.h"
#include "app.h"