Regarding the use of request() in OBSLUA

jer9963

New Member
Regarding the use of request() in OBSLUA, which calls a DLL I wrote myself, it can be called and displayed normally in Lua5.1, but it cannot run properly in OBS. May I know where to go to solve this problem? I don't want to compile the OBS source code.Thank you very much for your answer
 

Attachments

  • 1111.JPG
    1111.JPG
    51 KB · Views: 11
  • 22222.JPG
    22222.JPG
    22.3 KB · Views: 11

Suslik V

Active Member
only: base, bit, debug, ffi, io, jit, math, os, package, string, string.buffer and table are shipped with OBS version of luajit.
With ffi you can import some C code from external dlls. You may try it instead.
Better to ask such questions in the corresponding section of the forum.

Example (usage of the "ffi"):
 
Last edited:
Top