comparison: application/main.c
application/main.c
- changeset 510
- 9f562a7de4a2
- parent 503
- fefdfe7b2fc5
- child 512
- 3cb2587f8891
- child 516
- 4b31c74666d7
equal
deleted
inserted
replaced
35 #include <cx/utils.h> |
35 #include <cx/utils.h> |
36 |
36 |
37 #include "cx/string.h" |
37 #include "cx/string.h" |
38 #include "cx/list.h" |
38 #include "cx/list.h" |
39 |
39 |
40 #if !defined(UI_COCOA) && !defined(UI_MOTIF) |
40 #if !defined(UI_COCOA) && !defined(UI_MOTIF) && !defined(UI_WIN32) |
41 |
41 |
42 typedef struct { |
42 typedef struct { |
43 UiString *str1; |
43 UiString *str1; |
44 UiString *str2; |
44 UiString *str2; |
45 UiString *path; |
45 UiString *path; |
768 ui_main(); |
768 ui_main(); |
769 return (EXIT_SUCCESS); |
769 return (EXIT_SUCCESS); |
770 } |
770 } |
771 |
771 |
772 #endif |
772 #endif |
|
773 |
|
774 #ifdef UI_WIN32 |
|
775 |
|
776 int main(int argc, char **argv) { |
|
777 return 0; |
|
778 } |
|
779 |
|
780 #endif |