#if !defined _RSBID_H_ #define _RSBID_H_ #define INIT_STRING(s) { wcscpy(s, L"\0"); } #define INIT_VALUE(v) { v = 0; } #define READ_STRING(s, str) { fgetws(s, 64, str); s[wcslen(s)-1] = L'\0'; } #define READ_STRING128(s, str) { fgetws(s, 128, str); s[wcslen(s)-1] = L'\0'; } class RSBid { public: int m_iOrderID; TCHAR m_szPosterID[64]; RSBid(); //void PostNewRequest(RSUser* user); //int GetLowestBid(); }; #endif