the vulkan widget now has a generic function for all its getters. also expanded the error system to use strings, making it better for the vulkan side.
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@113 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
parent
a94e4ec277
commit
296a7d4e25
7 changed files with 227 additions and 84 deletions
|
|
@ -11,11 +11,20 @@
|
|||
/*!
|
||||
* %brief Error code enumeration
|
||||
*/
|
||||
enum MwErrorEnum {
|
||||
typedef enum MwErrorEnum_T {
|
||||
/*!
|
||||
* %brief No error
|
||||
*/
|
||||
MwEsuccess = 0
|
||||
};
|
||||
MwEsuccess = 0,
|
||||
/*!
|
||||
* %brief There was an error
|
||||
*/
|
||||
MwEerror,
|
||||
} MwErrorEnum;
|
||||
|
||||
/*!
|
||||
* %brief Get the last error
|
||||
*/
|
||||
MWDECL const char* MwGetLastError();
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue