| 3913 | } |
| 3914 | |
| 3915 | BF_EXPORT void BF_CALLTYPE BlContext_SetStack(BlContext* blContext, int reserve, int commit) |
| 3916 | { |
| 3917 | if (reserve > 0) |
| 3918 | blContext->mStackReserve = BF_ALIGN(reserve, 4); |
| 3919 | if (commit > 0) |
| 3920 | blContext->mStackCommit = BF_ALIGN(commit, 4); |
| 3921 | } |
| 3922 | |
| 3923 | BF_EXPORT void BF_CALLTYPE BlContext_SetHeap(BlContext* blContext, int reserve, int commit) |
| 3924 | { |