Completed exception handling

Added synchronous and C-Throw to VS projects.
This commit is contained in:
Guy Davidson 2017-10-17 12:27:09 +01:00
parent 0ee416a37c
commit 270cbc0365
2 changed files with 8 additions and 1 deletions

View File

@ -1475,6 +1475,12 @@
m.element("ExceptionHandling", condition, "false")
elseif cfg.exceptionhandling == "SEH" then
m.element("ExceptionHandling", condition, "Async")
elseif cfg.exceptionhandling == "On" then
m.element("ExceptionHandling", condition, "Sync")
elseif cfg.exceptionhandling == "Default" then
m.element("ExceptionHandling", condition, "Sync")
elseif cfg.exceptionhandling == "CThrow" then
m.element("ExceptionHandling", condition, "SyncCThrow")
end
end

View File

@ -408,7 +408,8 @@
"Default",
"On",
"Off",
"SEH"
"SEH",
"CThrow",
},
}