mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
f2361a27c3
Various other changes to the plugin as well.
24 lines
792 B
C++
24 lines
792 B
C++
// ------------------------------------------------------------------------------------------------
|
|
#include "Library/Crypt.hpp"
|
|
#include "Base/Shared.hpp"
|
|
#include "Base/Stack.hpp"
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
namespace SqMod {
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
extern void Register_Hash(HSQUIRRELVM vm);
|
|
extern void Register_AES(HSQUIRRELVM vm);
|
|
|
|
// ================================================================================================
|
|
void Register_Crypt(HSQUIRRELVM vm)
|
|
{
|
|
|
|
}
|
|
|
|
} // Namespace:: SqMod
|