إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
Variable cannot be held at the time function is called
The program is holding a resource that shouldn't be held when it's calling this function. Typically, it indicates that the resource was unintentionally acquired twice. The Code Analysis tool reports this warning when resources are acquired and released in the same function.
Example
The following code example generates this warning:
ExAcquireResourceLite(resource, true);
//...
ExAcquireResourceLite(resource, true);
The following code example avoids this warning:
ExAcquireResourceLite(resource, true);