Completed exception handling
Added synchronous and C-Throw to VS projects.
This commit is contained in:
parent
0ee416a37c
commit
270cbc0365
@ -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
|
||||
|
||||
|
@ -408,7 +408,8 @@
|
||||
"Default",
|
||||
"On",
|
||||
"Off",
|
||||
"SEH"
|
||||
"SEH",
|
||||
"CThrow",
|
||||
},
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user