hi all,
i searched the internet and can not find regular expression lib for masm :(
can someone help me?
thanks.
What did you want to do ????????????????????
Create a lib ?
; #########################################################################
include sdk32.inc
;samples of EXTERNDEF
; EXTERNDEF Copier :PROTO :DWORD,:DWORD
; EXTERNDEF EtatMemoirePile :MEMORY_BASIC_INFORMATION
; EXTERNDEF PoriginePile:DWORD
.data
.code
; #########################################################################
;---------- proc here
; #########################################################################
end ;<<<<
Quote from: asmcoder on July 04, 2013, 01:29:28 PMi searched the internet and can not find regular expression lib for masm :(
you can use any C library as long as the compiled binaries are compatible with Microsoft's tool chain.
http://www.masmforum.com/board/index.php?topic=15846.0
Hi
Here is an older translation to MASM from the PCRE project http://www.pcre.org (http://www.pcre.org). The OA32 package contain them too as well as an object to perform all operations of the library.
Biterider
seems there is further libraries in c++ who can be useful.
Make a choice and adapt it to masm .This need translation of headers and/or creation of a c++ lib with functions calling class functions,like regex::truc.
http://www.tropicsoft.com/Components/RegularExpression/Download.htm (http://www.tropicsoft.com/Components/RegularExpression/Download.htm)
Quote from: qWord on July 04, 2013, 06:35:40 PM
Quote from: asmcoder on July 04, 2013, 01:29:28 PMi searched the internet and can not find regular expression lib for masm :(
you can use any C library as long as the compiled binaries are compatible with Microsoft's tool chain.
http://www.masmforum.com/board/index.php?topic=15846.0
Thanks. i will study it.