diff --git a/stepmania/src/crypto51/algebra.cpp b/stepmania/src/crypto51/algebra.cpp index 896472b975..8978ce5a0b 100644 --- a/stepmania/src/crypto51/algebra.cpp +++ b/stepmania/src/crypto51/algebra.cpp @@ -1,5 +1,6 @@ // algebra.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "algebra.h" #include "integer.h" diff --git a/stepmania/src/crypto51/algparam.cpp b/stepmania/src/crypto51/algparam.cpp index 2954eebaa1..8379a8ebb9 100644 --- a/stepmania/src/crypto51/algparam.cpp +++ b/stepmania/src/crypto51/algparam.cpp @@ -1,5 +1,6 @@ // algparam.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "algparam.h" diff --git a/stepmania/src/crypto51/asn.cpp b/stepmania/src/crypto51/asn.cpp index 51c39cb8a8..c80aadeeca 100644 --- a/stepmania/src/crypto51/asn.cpp +++ b/stepmania/src/crypto51/asn.cpp @@ -1,5 +1,6 @@ // asn.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "asn.h" diff --git a/stepmania/src/crypto51/cryptlib.cpp b/stepmania/src/crypto51/cryptlib.cpp index 7c61ef125e..06b7d6fac9 100644 --- a/stepmania/src/crypto51/cryptlib.cpp +++ b/stepmania/src/crypto51/cryptlib.cpp @@ -1,5 +1,6 @@ // cryptlib.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "cryptlib.h" #include "misc.h" diff --git a/stepmania/src/crypto51/files.cpp b/stepmania/src/crypto51/files.cpp index cb79bfbda4..0e733860e4 100644 --- a/stepmania/src/crypto51/files.cpp +++ b/stepmania/src/crypto51/files.cpp @@ -1,5 +1,6 @@ // files.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "files.h" diff --git a/stepmania/src/crypto51/filters.cpp b/stepmania/src/crypto51/filters.cpp index ad9f1492f1..650391778e 100644 --- a/stepmania/src/crypto51/filters.cpp +++ b/stepmania/src/crypto51/filters.cpp @@ -1,5 +1,6 @@ // filters.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "filters.h" #include "mqueue.h" diff --git a/stepmania/src/crypto51/integer.cpp b/stepmania/src/crypto51/integer.cpp index 5b93957ac6..e92ffadb12 100644 --- a/stepmania/src/crypto51/integer.cpp +++ b/stepmania/src/crypto51/integer.cpp @@ -1,6 +1,7 @@ // integer.cpp - written and placed in the public domain by Wei Dai // contains public domain code contributed by Alister Lee and Leonard Janke +#include "global.h" #include "pch.h" #include "integer.h" #include "modarith.h" diff --git a/stepmania/src/crypto51/iterhash.cpp b/stepmania/src/crypto51/iterhash.cpp index 0354e2f29c..04d2eef3f2 100644 --- a/stepmania/src/crypto51/iterhash.cpp +++ b/stepmania/src/crypto51/iterhash.cpp @@ -1,5 +1,6 @@ // iterhash.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "iterhash.h" #include "misc.h" diff --git a/stepmania/src/crypto51/misc.cpp b/stepmania/src/crypto51/misc.cpp index 90b529e120..aa9f13a6fd 100644 --- a/stepmania/src/crypto51/misc.cpp +++ b/stepmania/src/crypto51/misc.cpp @@ -1,5 +1,6 @@ // misc.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "misc.h" #include "words.h" diff --git a/stepmania/src/crypto51/mqueue.cpp b/stepmania/src/crypto51/mqueue.cpp index beb365fbf7..86041b0efc 100644 --- a/stepmania/src/crypto51/mqueue.cpp +++ b/stepmania/src/crypto51/mqueue.cpp @@ -1,5 +1,6 @@ // mqueue.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "mqueue.h" diff --git a/stepmania/src/crypto51/nbtheory.cpp b/stepmania/src/crypto51/nbtheory.cpp index 5b194ff40e..73e39fdb0d 100644 --- a/stepmania/src/crypto51/nbtheory.cpp +++ b/stepmania/src/crypto51/nbtheory.cpp @@ -1,5 +1,6 @@ // nbtheory.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "nbtheory.h" #include "modarith.h" diff --git a/stepmania/src/crypto51/osrng.cpp b/stepmania/src/crypto51/osrng.cpp index e6a66925b1..c6fa2b203e 100644 --- a/stepmania/src/crypto51/osrng.cpp +++ b/stepmania/src/crypto51/osrng.cpp @@ -2,6 +2,7 @@ // Thanks to Leonard Janke for the suggestion for AutoSeededRandomPool. +#include "global.h" #include "pch.h" #include "osrng.h" diff --git a/stepmania/src/crypto51/pkcspad.cpp b/stepmania/src/crypto51/pkcspad.cpp index 945cd1d578..a982edad61 100644 --- a/stepmania/src/crypto51/pkcspad.cpp +++ b/stepmania/src/crypto51/pkcspad.cpp @@ -1,5 +1,6 @@ // pkcspad.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "pkcspad.h" #include diff --git a/stepmania/src/crypto51/pubkey.cpp b/stepmania/src/crypto51/pubkey.cpp index 6844b33194..4a0665bf49 100644 --- a/stepmania/src/crypto51/pubkey.cpp +++ b/stepmania/src/crypto51/pubkey.cpp @@ -1,5 +1,6 @@ // pubkey.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "pubkey.h" diff --git a/stepmania/src/crypto51/queue.cpp b/stepmania/src/crypto51/queue.cpp index 824020805b..0d36494dbf 100644 --- a/stepmania/src/crypto51/queue.cpp +++ b/stepmania/src/crypto51/queue.cpp @@ -1,5 +1,6 @@ // queue.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "queue.h" #include "filters.h" diff --git a/stepmania/src/crypto51/rsa.cpp b/stepmania/src/crypto51/rsa.cpp index 1b669fe0de..f55936c202 100644 --- a/stepmania/src/crypto51/rsa.cpp +++ b/stepmania/src/crypto51/rsa.cpp @@ -1,5 +1,6 @@ // rsa.cpp - written and placed in the public domain by Wei Dai +#include "global.h" #include "pch.h" #include "rsa.h" #include "asn.h" diff --git a/stepmania/src/crypto51/sha.cpp b/stepmania/src/crypto51/sha.cpp index e55103de14..1af13bcee2 100644 --- a/stepmania/src/crypto51/sha.cpp +++ b/stepmania/src/crypto51/sha.cpp @@ -3,6 +3,7 @@ // Steve Reid implemented SHA-1. Wei Dai implemented SHA-2. // Both are in the public domain. +#include "global.h" #include "pch.h" #include "sha.h" #include "misc.h"