123456789101112131415161718192021222324 |
- typedef unsigned int uint32;
- typedef unsigned long long int uint64;
- #ifdef _64BIT
- typedef uint64 uintptr;
- #else
- typedef uint32 uintptr;
- #endif
- void ·servicemain(void);
- void
- ·getServiceMain(uintptr *r)
- {
- *r = (uintptr)·servicemain;
- }
|