Files
Work/test/Main.cpp
2024-08-07 09:16:27 -04:00

12 lines
178 B
C++

#include <common/windows.hpp>
int main(int argc,char **argv)
{
for(int index=0;index<argc;index++)
{
::MessageBox(0,(LPSTR)argv[0],(LPSTR)"Args",MB_OK);
}
return 0;
}