testit.h 812 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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);