int openResult = open(); if (openResult == FILE_NOT_FOUND) { // handle error } else if (openResult == INSUFFICIENT_PERMISSIONS) { // handle error } else {// SUCCESS int readResult = read(); if (readResult == DISK_ERROR) { // handle error } else { // SUCCESS ... } }