OSDN Git Service

008c7740e804125ad60b694f4bb3edee4e40ff1a
[coroid/inqubus.git] / vhook / process.c
1 #include "mydef.h"\r
2 #include "process.h"\r
3 #include "chat/process_chat.h"\r
4 #include "chat/chat.h"\r
5 #include "chat/chat_slot.h"\r
6 \r
7 //\83v\83\8d\83Z\83X\r
8 int process(DATA* data,SDL_Surface* surf,const int now_vpos){\r
9         //\83\86\81[\83U\83R\83\81\83\93\83g\r
10         if(data->enable_user_comment){\r
11                 if(!chat_process(data,surf,now_vpos)){\r
12                         fputs("[process/process]failed to process comment.\n",data->log);\r
13                         return FALSE;\r
14                 }\r
15         }\r
16         //\83I\81[\83i\83R\83\81\83\93\83g\r
17         if(data->enable_owner_comment){\r
18         }\r
19         return TRUE;\r
20 }\r
21 \r