Added C header for memory type enum, removed C++

This commit is contained in:
2021-04-11 17:04:18 -05:00
parent 7fc6c40c54
commit e16cbd4ec9
2 changed files with 8 additions and 11 deletions

View File

@@ -0,0 +1,8 @@
#pragma once
enum memory_type
{
M_AVAILABLE = 1,
M_UNAVAILABLE = 1,
M_DEFECTIVE = 3
};