12345678910111213141516 |
- #ifndef TransactionQueue_H
- #define TransactionQueue_H
- //==========================================
- // HandleError routine
- //==========================================
- void createq();
- int showfront(char *uuid, char *data);
- int addq(char *uuid, char *data);
- int delq();
- int showqueue();
- #endif
|