Some code to implement the char device that will communicate with the daemon.
[vdi_driver.git] / src / RTErrConvertFromErrno.h
blob7a6e96e7aea4f83f01183fe806bcf725ecd0c5b0
1 #ifndef RTErrConvertFromErrno_H
2 #define RTErrConvertFromErrno_H
4 /**
5 * Converts errno to iprt status code.
7 * @returns iprt status code.
8 * @param uNativeCode errno code.
9 */
10 int RTErrConvertFromErrno(unsigned uNativeCode);
12 #endif