This commit is contained in:
2025-05-19 15:33:25 -04:00
commit 09a83f8587
40 changed files with 1297 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#include <amscppimglib4/amscppimglib4.hpp>
namespace ams
{
void amscpptemplate_testfn2()
{
printf("Test function 2.\n");
return;
}
};

View File

@ -0,0 +1,12 @@
#include <amscppimglib4/amscppimglib4.hpp>
namespace ams
{
void amscpptemplate_testfn()
{
printf("Test function.\n");
return;
}
};

9
src/main.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <amscppimglib4/amscppimglib4.hpp>
int main(int argc, char* argv[])
{
int ret = 0;
printf("ams c++ image library tests.\n");
ams::amscpptemplate_testfn();
return ret;
}