File: format.h

package info (click to toggle)
ctn 3.2.0~dfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 16,924 kB
  • sloc: ansic: 179,652; makefile: 7,006; java: 1,863; csh: 1,067; yacc: 523; sh: 424; cpp: 394; sql: 389; lex: 170
file content (7 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
#ifdef _MSC_VER
void formatPatient(void *patient, int index, char *buf);
void formatStudy(void *study, int index, char *buf);
#else
void formatPatient(PATIENT_QUERY_MODULE * patient, int index, char *buf);
void formatStudy(STUDY_QUERY_MODULE * study, int index, char *buf);
#endif