/* ------------------------------------------------------------------------------------------------------------ */ /* * * LimitWhite V1.0 Peripherel Functions * */ /* ------------------------------------------------------------------------------------------------------------ */ void DoEasyReq(const char *message); /* ------------------------------------------------------------------------------------------------------------ */ void DoEasyReq(const char *message) { /* EasyRequest() with the message 'message' */ struct EasyStruct req = { sizeof(struct EasyStruct), 0, "LimitWhite V1.0", (UBYTE *)message, "OK!" }; EasyRequest(NULL, &req, NULL, NULL); } /* DoEasyReq() */ /* ------------------------------------------------------------------------------------------------------------ */ /* End Of Text */