| 26 |  | char buffer[80]; | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 27 |  | time(&rawtime); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 28 |  | timeinfo = localtime(&rawtime); | 
 
 
 
 
 
 
 
 
 
 
 | 29 | < | strftime(buffer, 80, "Daodan: %Y-%m-%d %H:%M:%S", timeinfo); | 
 
 
 
 
 
 
 
 
 | 29 | > | strftime(buffer, 80, "%Y-%m-%d %H:%M:%S", timeinfo); | 
 
 
 
 
 
 
 
 
 
 
 | 30 |  |  | 
 
 
 
 
 
 
 
 
 
 
 | 31 | < | DDrStartupMessage("Daodan: Daodan v."DAODAN_VERSION_STRING" attached!"); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 32 | < | DDrStartupMessage(buffer); | 
 
 
 
 
 
 
 
 
 | 31 | > | STARTUPMESSAGE("Daodan v."DAODAN_VERSION_STRING" attached!", 0); | 
 
 
 
 
 | 32 | > | STARTUPMESSAGE("%s", buffer); | 
 
 
 
 
 
 
 
 
 
 
 | 33 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 34 |  | DDrConfig(argc, argv); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 35 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 36 |  | if(GetKeyState(VK_SHIFT) & 0x8000) { | 
 
 
 
 
 
 
 
 
 
 
 | 37 | < | DDrStartupMessage("Daodan: Shift"); | 
 
 
 
 
 
 
 
 
 | 37 | > | STARTUPMESSAGE("Shift", 0); | 
 
 
 
 
 
 
 
 
 
 
 | 38 |  | guitest(DDrONiModule); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 39 |  | } | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 40 |  |  |