| 229 | } |
| 230 | |
| 231 | static void NPCPS_freeMsg(NPCMsg* inmsg) |
| 232 | { |
| 233 | NPCPSData* post_office = NPCPS_postOffice(); |
| 234 | inmsg->next = post_office->msgfree; |
| 235 | post_office->msgfree = inmsg; |
| 236 | } |
| 237 | |
| 238 | static NPCMsg g_msgdata; |
| 239 |
no test coverage detected