testit.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. Test header file to test conversion program.
  3. */
  4. typedef struct {
  5. int x;
  6. int y;
  7. } a;
  8. typedef union fpk {
  9. int X;
  10. int y;
  11. int z;
  12. } b;
  13. typedef _test test;
  14. struct _test
  15. {
  16. int x;
  17. int y;
  18. };
  19. void proc(int *,int);
  20. void proc(int *p,int i);
  21. typedef enum { First, second, third } C;
  22. typedef enum { DFirst = 1, DSecond = 2, DThird = 3 } D;
  23. typedef enum { EFirst = 100, ESecond, EThird } D;
  24. void someproc(char *Firstarg,...);
  25. mytype* somefunc (char *firstarg);
  26. #define test 0x012345UL
  27. extern long long i641;
  28. extern unsigned long long q641;
  29. extern long long int i642;
  30. extern unsigned long long int q642;
  31. typedef DWORD (WINAPI *LPTHREAD_START_ROUTINE)(LPVOID);
  32. typedef DWORD(WINAPI *LPPROGRESS_ROUTINE)(LARGE_INTEGER,LARGE_INTEGER,LARGE_INTEGER,LARGE_INTEGER,DWORD,DWORD,HANDLE,HANDLE,LPVOID);
  33. typedef Status (*XcmsConversionProc)();
  34. typedef XrmHashTable XrmSearchList[];
  35. #define XrmStringToRepresentation(string) XrmStringToQuark(string)
  36. #define XrmRepresentationToString(type) XrmQuarkToString(type)
  37. typedef struct _XRenderPictureAttributes {
  38. Bool repeat;
  39. Picture alpha_map;
  40. int alpha_x_origin;
  41. int alpha_y_origin;
  42. int clip_x_origin;
  43. int clip_y_origin;
  44. Pixmap clip_mask;
  45. Bool graphics_exposures;
  46. int subwindow_mode;
  47. int poly_edge;
  48. int poly_mode;
  49. Atom dither;
  50. } XRenderPictureAttributes;
  51. void gdk_gc_set_dashes (GdkGC *gc,
  52. gint dash_offset,
  53. gint8 dash_list[],
  54. gint n);