Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112
  1. #ifndef OLC_PGE_COMMON
  2. #define OLC_PGE_COMMON
  3. namespace olc {
  4. enum rcode {
  5. FAIL = 0,
  6. OK = 1,
  7. NO_FILE = -1,
  8. };
  9. }
  10. #endif