Search found 17 matches

by htm_hx
Jul 31, 2018 12:30
Forum: Beginners
Topic: cannot find -lcurl
Replies: 1
Views: 809

cannot find -lcurl

Win64 bit -lcurl library file. Who can upload a copy? Thank you very much.
by htm_hx
Jul 25, 2018 0:18
Forum: Beginners
Topic: x64 lua.a problem has never been solved: ask the great god for help
Replies: 0
Views: 1532

x64 lua.a problem has never been solved: ask the great god for help

test.lua -------------------------------------------------------------------------------------------------------- function Main() local var1 = 123 end -------------------------------------------------------------------------------------------------------- Main() Script execution Under FB debugging o...
by htm_hx
Jul 13, 2018 18:54
Forum: Beginners
Topic: X64 lua.a problem has never been solved: ask the great god for help
Replies: 0
Views: 1403

X64 lua.a problem has never been solved: ask the great god for help

test.lua -------------------------------------------------------------------------------------------------------- function Main() local var1 = 123 end -------------------------------------------------------------------------------------------------------- Script execution Under FB debugging or after...
by htm_hx
Jul 07, 2017 12:38
Forum: Windows
Topic: Find a 64 bit Lua static library liblua.a
Replies: 4
Views: 1937

Re: Find a 64 bit Lua static library liblua.a

MrSwiss wrote:Lua provides compiled binaries for different OS's (for WIN64, static, see below)
64 bit static Lib (for Windows), download
There is no need, to build it oneself, from source ...
Current name: liblua53.a (version: 5.3.4)
Thank you very much for your help. Thanks again for the big brother
by htm_hx
Jul 06, 2017 14:44
Forum: Windows
Topic: Find a 64 bit Lua static library liblua.a
Replies: 4
Views: 1937

Find a 64 bit Lua static library liblua.a

Ask God friend to help younger brother to generate a 64 bit Lua static library liblua.a
Yes, it's 64
Thanks a million!
Little brother can't make 64 liblua.a
by htm_hx
May 28, 2017 21:08
Forum: Beginners
Topic: Is there any difference between dim shared and common shared?
Replies: 2
Views: 1425

Re: Is there any difference between dim shared and common shared?

Thank you very much for your detailed explanation ~ let me know more about FB
by htm_hx
May 28, 2017 21:04
Forum: Beginners
Topic: Generate a DLL injection process in the WINDOWS system, running does not support the VEH; seek God to help solve
Replies: 5
Views: 1683

Re: Generate a DLL injection process in the WINDOWS system, running does not support the VEH; seek God to help solve

srvaldez wrote:hello htm_hx
please tell me why your first post is about DLL injection, I am very suspicious about questions that could be related to malware.
I just want to use FB to write a DLL to inject into a game process to implement some functions, but I don't see a good code for exception handling
by htm_hx
May 27, 2017 22:53
Forum: Beginners
Topic: Generate a DLL injection process in the WINDOWS system, running does not support the VEH; seek God to help solve
Replies: 5
Views: 1683

Re: Generate a DLL injection process in the WINDOWS system, running does not support the VEH; seek God to help solve

After a few days of learning, FB some writing... Finally made a relatively perfect exception handling _try macro, I put the code posted; I wrote the exception is handled directly, the exception is dealt with, restore to __catch below the code English is translated entirely, because I'm a novice prog...
by htm_hx
May 27, 2017 19:28
Forum: Beginners
Topic: Is there any difference between dim shared and common shared?
Replies: 2
Views: 1425

Is there any difference between dim shared and common shared?

Is there any difference between dim shared and common shared?
by htm_hx
May 26, 2017 23:45
Forum: Sources, Examples, Tips and Tricks
Topic: [Win32] Exception handling using Try/Catch/Finally
Replies: 21
Views: 12874

Re: [Win32] Exception handling using Try/Catch/Finally

FB can produce a stable try like VC exception mechanism; the landlord's code, I tested the DLL injection into the process to throw an exception, the process disappeared directly
by htm_hx
May 26, 2017 22:17
Forum: Beginners
Topic: Generate a DLL injection process in the WINDOWS system, running does not support the VEH; seek God to help solve
Replies: 5
Views: 1683

Re: Generate a DLL injection process in the WINDOWS system, running does not support the VEH; seek God to help solve

I generated a DLL; the following VEH code is used in DLL; runs on some computers; if the code is executed to an exception, the process disappears directly; VEH is not triggered As I seem to be first to answer you ( welcome here by the way, as apparently you are new among us ;) ). It seems quite int...
by htm_hx
May 26, 2017 22:13
Forum: Beginners
Topic: The latest FB production of a DLL project, the use of multi-threaded, found some of the following problems:
Replies: 9
Views: 1332

Re: The latest FB production of a DLL project, the use of multi-threaded, found some of the following problems:

Not injected into the VB program. It was injected directly into a program; I tried to write a DLL with VC; used it Try{} catch (..... (main)) {} is injected to continue the success of implementation; and no with the program and I used to write their own collapse; write FB DLL plus try on this compu...
by htm_hx
May 25, 2017 13:11
Forum: Beginners
Topic: The latest FB production of a DLL project, the use of multi-threaded, found some of the following problems:
Replies: 9
Views: 1332

Re: The latest FB production of a DLL project, the use of multi-threaded, found some of the following problems:

Function try_begin Naked ()As BOOL Function try_end Naked () As BOOL Does this emulate a TRY/CATCH block, for example as it exists in VB? With this piece of code generating DLL injection into the process, some computers crash directly; my computer runs normally; it jumps t[/code]o where the excepti...
by htm_hx
May 25, 2017 9:04
Forum: Beginners
Topic: The latest FB production of a DLL project, the use of multi-threaded, found some of the following problems:
Replies: 9
Views: 1332

Re: The latest FB production of a DLL project, the use of multi-threaded, found some of the following problems:

Function try_begin Naked ()As BOOL Asm push ebp mov ebp,esp call t1 push ebp mov ebp,esp add esp,-0x14 push edx mov edx,dword ptr ss:[ebp+0xC] mov eax,dword ptr ss:[ebp+0x10] push dword ptr ds:[edx+0x8] pop dword ptr ds:[eax+0xB8] push dword ptr ds:[edx+0xC] pop dword ptr ds:[eax+0xC4] push dword p...
by htm_hx
May 25, 2017 8:57
Forum: Beginners
Topic: The latest FB production of a DLL project, the use of multi-threaded, found some of the following problems:
Replies: 9
Views: 1332

Re: The latest FB production of a DLL project, the use of multi-threaded, found some of the following problems:

4. VAL functions cannot be used in multiple threads; ValInt should be used Problem: error in access process It's interesting, even if I don't see what it is about exactly. For point 4 about VAL, I'm not sure what you exactly mean. If you use VAL for it returns a DOUBLE. So VALINT wouldn't be exactl...