Changes between Version 65 and Version 66 of FAQ
- Timestamp:
- Jan 22, 2009 8:02:51 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ
v65 v66 16 16 17 17 It is common in all projects to have source distribution that is larger than the resulting build. This is because source distribution contains other things such as documentations and scripts. The source tarball of PJSIP v0.7 is significantly larger than v0.5 because in v0.7 we include third party libraries in their original form of distribution, so that they get proper attribution and for easier update, unlike in v.0.5 where we just picked the source files that we like and included them in PJSIP. 18 19 === How can I use PJSIP in my own C program? === #usec 20 21 First start with this: 22 23 {{{ 24 #include <stdio.h> 25 26 int main() 27 { 28 puts("Hello world!"); 29 return; 30 } 31 }}} 32 33 Then read on to the next topic below. 18 34 19 35 === I have downloaded PJSIP source codes, now what next? === #do … … 1029 1045 102400 .rdata 1030 1046 24576 .reloc 1047 1031 1048 1032 1049