Changeset 14504
- Timestamp:
- Apr 21, 2015, 11:40:15 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/utils.h
r14503 r14504 202 202 203 203 #define tr_main(...) \ 204 static tr_main_win32_impl (__VA_ARGS__); \204 main_impl (__VA_ARGS__); \ 205 205 int \ 206 206 main (int argc, \ 207 207 char * argv[]) \ 208 208 { \ 209 return tr_main_win32 (argc, argv, & tr_main_win32_impl); \209 return tr_main_win32 (argc, argv, &main_impl); \ 210 210 } \ 211 staticint \212 tr_main_win32_impl (__VA_ARGS__)211 int \ 212 main_impl (__VA_ARGS__) 213 213 214 214 #else
Note: See TracChangeset
for help on using the changeset viewer.