Return the correct STDCALL function for certain OSR routines on Win32 platforms.
(func)
| 83 | |
| 84 | |
| 85 | def std_call(func): |
| 86 | """ |
| 87 | Return the correct STDCALL function for certain OSR routines on Win32 |
| 88 | platforms. |
| 89 | """ |
| 90 | if os.name == "nt": |
| 91 | return lwingdal[func] |
| 92 | else: |
| 93 | return lgdal[func] |
| 94 | |
| 95 | |
| 96 | # #### Version-information functions. #### |
no outgoing calls
no test coverage detected