You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
626 B
24 lines
626 B
EnableExplicit
|
|
|
|
Global PBEx_Math
|
|
|
|
CompilerIf #PB_Compiler_Processor = #PB_Processor_x86
|
|
PBEx_Math = OpenLibrary(#PB_Any, "PB.Ex_Math_x86.dll")
|
|
CompilerElseIf #PB_Compiler_Processor = #PB_Processor_x64
|
|
PBEx_Math = OpenLibrary(#PB_Any, "PB.Ex_Math_x64.dll")
|
|
CompilerEndIf
|
|
|
|
If PBEx_Math
|
|
Prototype.d Calculate(Calculation.p-Unicode, ErrorOutput)
|
|
Global Calculate.Calculate = GetFunction(PBEx_Math, "Calculate")
|
|
|
|
EndIf
|
|
|
|
; IDE Options = PureBasic 5.60 (Windows - x64)
|
|
; CursorPosition = 15
|
|
; EnableXP
|
|
; EnableUser
|
|
; Executable = PB.Ex_MSSQL_x86.exe
|
|
; CompileSourceDirectory
|
|
; EnableCompileCount = 50
|
|
; EnableBuildCount = 6
|