mirror of
https://github.com/NohamR/Reclass.git
synced 2026-05-10 19:59:21 +00:00
Initial commit: ReclassX structured binary editor
This commit is contained in:
22
third_party/qscintilla/Python/config-tests/cfgtest_Qsci.cpp
vendored
Normal file
22
third_party/qscintilla/Python/config-tests/cfgtest_Qsci.cpp
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
#include <QCoreApplication>
|
||||
#include <QFile>
|
||||
#include <QTextStream>
|
||||
|
||||
#include <Qsci/qsciglobal.h>
|
||||
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QCoreApplication app(argc, argv);
|
||||
QFile outf(argv[1]);
|
||||
|
||||
if (!outf.open(QIODevice::WriteOnly|QIODevice::Truncate|QIODevice::Text))
|
||||
return 1;
|
||||
|
||||
QTextStream out(&outf);
|
||||
|
||||
out << QSCINTILLA_VERSION << '\n';
|
||||
out << QSCINTILLA_VERSION_STR << '\n';
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user