12 lines
178 B
C++
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;
|
|
}
|
|
|