The MASM Forum

General => The Workshop => Topic started by: jj2007 on February 23, 2024, 12:34:42 AM

Title: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 23, 2024, 12:34:42 AM
So I gave it a try:
- downloaded UAsm64 (https://www.terraspace.co.uk/uasm.html#p2) and WinInc (https://www.terraspace.co.uk/uasm.html#p9)
- installed WinInc to \WinInc
- opened \WinInc\Samples\WinGUI1\WinGUI1.ASM (in RichMasm, what else?)
- built the libraries using \WinInc\Def\MAKELIBS.BAT
- corrected the simple line include windows.inc as follows:
        include \WinInc\include\windows.inc
        includelib \WinInc\Lib\kernel32.Lib
        includelib \WinInc\Lib\user32.Lib
        includelib \WinInc\Lib\gdi32.Lib
- hit F6, and got an error message: Error A2143: Symbol redefinition: CStr

Since I am an optimist, I renamed the CStr MACRO to xCStr and tried again, and voilà, all is fine, it works :badgrin:

Questions:
a) Why is there an error? Redefining macros isn't a problem, so that means it's a different type of symbol.
b) Where is the other CStr?
Title: Re: UAsm WinInc and the CStr mystery
Post by: _japheth on February 23, 2024, 01:06:20 AM
Quote from: jj2007 on February 23, 2024, 12:34:42 AMQuestions:
a) Why is there an error? Redefining macros isn't a problem, so that means it's a different type of symbol.
b) Where is the other CStr?

Perhaps the listing file might give a clue?
Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 23, 2024, 01:19:57 AM
Right :thumbsup:

@CatStr  . . . . . . . . . . . .        Func
@Environ . . . . . . . . . . . .        Func
@InStr . . . . . . . . . . . . .        Func
@SizeStr . . . . . . . . . . . .        Func
@SubStr  . . . . . . . . . . . .        Func
ALIGNADDR  . . . . . . . . . . .        Proc
ASDOUBLE . . . . . . . . . . . .        Func
ASFLOAT  . . . . . . . . . . . .        Func
COMINTERFACE . . . . . . . . . .        Proc
CSTR . . . . . . . . . . . . . .        Func
CStr . . . . . . . . . . . . . .        Func
CVIRTUAL . . . . . . . . . . . .        Proc
ENDCOMINTERFACE  . . . . . . . .        Proc
ENDMETHODS . . . . . . . . . . .        Proc
EXPAND_PREFIX  . . . . . . . . .        Func
FP10 . . . . . . . . . . . . . .        Func
FP4  . . . . . . . . . . . . . .        Func
FP8  . . . . . . . . . . . . . .        Func

So it's some built-in function. But why are there plenty of sample.asm files with a CStr macro then? Doesn't make sense.
Title: Re: UAsm WinInc and the CStr mystery
Post by: HSE on February 23, 2024, 01:36:44 AM
UAsm have an internal macros library.

Not so useful if you have your own macros.

That can be disable with -nomlib in command line.
Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 23, 2024, 03:11:40 AM
Quote from: HSE on February 23, 2024, 01:36:44 AMUAsm have an internal macros library.

Not so useful if you have your own macros.

It's actually not my own macros, it's their own CStr macro - check the WinInc\Samples folder.
Title: Re: UAsm WinInc and the CStr mystery
Post by: _japheth on February 23, 2024, 04:02:43 AM
Quote from: jj2007 on February 23, 2024, 01:19:57 AMSo it's some built-in function. But why are there plenty of sample.asm files with a CStr macro then? Doesn't make sense.

It makes sense if you know the history of WinInc. It was supposed to work with Masm and JWasm - and the samples provided are mostly written by me ( forgot the details, so no offense meant if there's a sample from someone else )
Title: Re: UAsm WinInc and the CStr mystery
Post by: Vortex on February 23, 2024, 05:13:54 AM
Hello,

ml.exe supplied with the Masm32 package can assemble the example :

\masm32\bin\ml /c /coff /I\WinInc\Include WinGUI1.ASM
Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 23, 2024, 05:53:49 AM
Quote from: _japheth on February 23, 2024, 04:02:43 AMIt makes sense if you know the history of WinInc. It was supposed to work with Masm and JWasm - and the samples provided are mostly written by me

Thanks, that explains it. In hindsight, you would have probably created a macro.asm instead of including the CStr macro in the examples. Anyway, not a big deal; I am working on a n00b-proof installer.

I admit I don't like the -nomlib solution. Likewise for AsmC's /Znk or /Zne. An assembler should work with its default options in 99% of all cases, not the other way round.

Quote from: Vortex on February 23, 2024, 05:13:54 AMml.exe supplied with the Masm32 package can assemble the example

Which is not surprising, given that the UAsm/JWasm/AsmC family are perfect MASM clones. The trouble comes with the 64-bit version, where the Watcom clones offer the full functionality but ML.exe is seriously crippled :sad:
Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 23, 2024, 06:41:02 AM
P.S.: I am trying my luck with \WinInc\Sampl64\WinGUI1\WinGUI1.asm

*** Assemble using UAsm64  ***
\WinInc\Include\winnt.inc(5066) : Error A2091: Language type must be specified
 @DefProto(3)[winasm.inc]: Macro called from
  \WinInc\Include\winnt.inc(5066): Included by
   \WinInc\Include\windef.inc(149): Included by
    \WinInc\Include\windows.inc(111): Included by
     Tmp_File.asm(12): Main line code
\WinInc\Include\winnt.inc(5297) : Error A2091: Language type must be specified
 \WinInc\Include\winnt.inc(5297): Included by
  \WinInc\Include\windef.inc(149): Included by
   \WinInc\Include\windows.inc(111): Included by
    Tmp_File.asm(12): Main line code
\WinInc\Include\winnt.inc(5299) : Error A2091: Language type must be specified
 \WinInc\Include\winnt.inc(5299): Included by
  \WinInc\Include\windef.inc(149): Included by
   \WinInc\Include\windows.inc(111): Included by
    Tmp_File.asm(12): Main line code
\WinInc\Include\winnt.inc(5366) : Error A2091: Language type must be specified
 \WinInc\Include\winnt.inc(5366): Included by
  \WinInc\Include\windef.inc(149): Included by
   \WinInc\Include\windows.inc(111): Included by
    Tmp_File.asm(12): Main line code
\WinInc\Include\winnt.inc(5379) : Error A2091: Language type must be specified
 \WinInc\Include\winnt.inc(5379): Included by
  \WinInc\Include\windef.inc(149): Included by
   \WinInc\Include\windows.inc(111): Included by
    Tmp_File.asm(12): Main line code
\WinInc\Include\winnt.inc(5380) : Error A2091: Language type must be specified
 \WinInc\Include\winnt.inc(5380): Included by
  \WinInc\Include\windef.inc(149): Included by
   \WinInc\Include\windows.inc(111): Included by
    Tmp_File.asm(12): Main line code
Tmp_File.asm(36) : Error A2082: Must be in segment block
Tmp_File.asm(37) : Error A2082: Must be in segment block
Tmp_File.asm(43) : Error A2082: Must be in segment block
Tmp_File.asm(45) : Error A2082: Must be in segment block
Tmp_File.asm(46) : Error A2030: Instruction or register not accepted in current CPU mode
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(47) : Error A2082: Must be in segment block
Tmp_File.asm(48) : Error A2082: Must be in segment block
Tmp_File.asm(49) : Error A2082: Must be in segment block
Tmp_File.asm(50) : Error A2142: Unmatched block nesting: OnCommand
Tmp_File.asm(54) : Error A2082: Must be in segment block
Tmp_File.asm(56) : Error A2092: PROC, MACRO or macro loop directive must precede LOCAL
Tmp_File.asm(58) : Error A2082: Must be in segment block
Tmp_File.asm(59) : Error A2030: Instruction or register not accepted in current CPU mode
Tmp_File.asm(60) : Error A2160: INVOKE requires prototype for procedure
Tmp_File.asm(61) : Error A2030: Instruction or register not accepted in current CPU mode
Tmp_File.asm(61) : Error A2082: Must be in segment block
Tmp_File.asm(61) : Error A2082: Must be in segment block
Tmp_File.asm(62) : Error A2082: Must be in segment block
Tmp_File.asm(62) : Error A2082: Must be in segment block
Tmp_File.asm(62) : Error A2082: Must be in segment block
Tmp_File.asm(62) : Error A2082: Must be in segment block
Tmp_File.asm(62) : Error A2082: Must be in segment block
Tmp_File.asm(62) : Error A2082: Must be in segment block
Tmp_File.asm(62) : Error A2082: Must be in segment block
Tmp_File.asm(62) : Error A2082: Must be in segment block
Tmp_File.asm(62) : Error A2082: Must be in segment block
Tmp_File.asm(63) : Error A2030: Instruction or register not accepted in current CPU mode
Tmp_File.asm(63) : Error A2082: Must be in segment block
Tmp_File.asm(63) : Error A2082: Must be in segment block
Tmp_File.asm(64) : Error A2082: Must be in segment block
Tmp_File.asm(64) : Error A2082: Must be in segment block
Tmp_File.asm(64) : Error A2082: Must be in segment block
Tmp_File.asm(64) : Error A2082: Must be in segment block
Tmp_File.asm(64) : Fatal error A1113: Too many errors
*** Assembly error ***

Yep, that's a clear message: "Not for n00bs!"

Does anybody have a short & crispy 64-bit example that works with the current version of UAsm, without any cryptic commandline options?
Title: Re: UAsm WinInc and the CStr mystery
Post by: _japheth on February 23, 2024, 07:48:49 PM
Quote from: jj2007 on February 23, 2024, 06:41:02 AMP.S.: I am trying my luck with \WinInc\Sampl64\WinGUI1\WinGUI1.asm

*** Assemble using UAsm64  ***
\WinInc\Include\winnt.inc(5066) : Error A2091: Language type must be specified
 @DefProto(3)[winasm.inc]: Macro called from
  \WinInc\Include\winnt.inc(5066): Included by
   \WinInc\Include\windef.inc(149): Included by
    \WinInc\Include\windows.inc(111): Included by
     Tmp_File.asm(12): Main line code
[snip]
Tmp_File.asm(64) : Fatal error A1113: Too many errors
*** Assembly error ***

Yep, that's a clear message: "Not for n00bs!"

Does anybody have a short & crispy 64-bit example that works with the current version of UAsm, without any cryptic commandline options?

Well, I definitely don't feel responsible for UAsm, but since WinInc is my child:

Why don't you look into the MAKEFILE that is supplied with this sample? It's using JWasm as assembler, but nevertheless one may be able to see that the -win64 cmdline option is used there. Did you set the equivalent option for UAsm?




Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 23, 2024, 08:47:09 PM
Quote from: _japheth on February 23, 2024, 07:48:49 PMWhy don't you look into the MAKEFILE that is supplied with this sample? It's using JWasm as assembler, but nevertheless one may be able to see that the -win64 cmdline option is used there. Did you set the equivalent option for UAsm?

I'm a BASIC guy, never needed an extra makefile to get the job done. But thanks for the hint, anyway. Yes, the -win64 option was set, RichMasm autodetects the need to do so.

Now I got it built, but RegisterClassEx fails without last error being set.
Title: Re: UAsm WinInc and the CStr mystery
Post by: TimoVJL on February 24, 2024, 01:45:48 AM
Quote from: jj2007 on February 23, 2024, 08:47:09 PMI'm a BASIC guy, ...
surely, but many basic programmers use also many another languages too  :biggrin:
Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 24, 2024, 02:20:20 AM
Right. I, for example, have used 68k and x86 assembler, Python, JavaScript, Fortran, PHP and several C and BASIC dialects for almost 40 years, and never needed a "makefile". Btw if you haven't that behemoth of Visual Shit installed, your system won't even find nmake.
Title: Re: UAsm WinInc and the CStr mystery
Post by: _japheth on February 24, 2024, 03:24:32 AM
Quote from: jj2007 on February 24, 2024, 02:20:20 AM.... for almost 40 years, and never needed a "makefile".

Correct. You don't need it in your struggle for survival. But I guess that's also true for Basic ...

QuoteBtw if you haven't that behemoth of Visual Shit installed, your system won't even find nmake.

Also true. But Open Watcom's wmake - and even Borland's make - might do the job as well. But that's already a bit "advanced".

Have you got your RegisterClassEx problem solved? I just looked into the source - there's no such API call. Perhaps you meant RegisterClass instead? Using that API definitely requires the -Zp8 cmdline option - but you surely know that, of course...

Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 24, 2024, 06:42:34 AM
Quote from: _japheth on February 24, 2024, 03:24:32 AMHave you got your RegisterClassEx problem solved? I just looked into the source - there's no such API call. Perhaps you meant RegisterClass instead? Using that API definitely requires the -Zp8 cmdline option - but you surely know that, of course...

Yes, I know that, and RichMasm sets -Zp8. Thanks for reminding me.

In the meantime, I've advanced a bit, and there is a new problem:
WinMain proc hInstance:HINSTANCE, hPrevInstance:HINSTANCE, lpszCmdline:LPSTR, cmdshow:UINT
LOCAL msg:MSG
  wc equ [rbx.WNDCLASSEX]        ; we use an equate for better readability
  lea rbx, wcx
  mov wc.hInstance, rv(GetModuleHandle, 0)
  mov wc.hIcon, rv(LoadIcon, rax, IDI_APPLICATION)        ; click on the first Rsrc bookmark to change the icon
  mov wc.hIconSm, rax            ; the rv macro returns results in rax
  mov wc.hCursor, rv(LoadCursor, NULL, IDC_ARROW)     ; get a cursor
  invoke RegisterClassEx, rbx            ; the window class needs to be registered
  wsStyle=WS_OVERLAPPEDWINDOW or WS_VISIBLE or WS_CLIPCHILDREN
  invoke CreateWindowEx, 0, wc.lpszClassName, Chr$("Hello World"), wsStyle, 300+320*@64, 127, 300, 200, NULL, rv(LoadMenu, wc.hInstance, 100), wc.hInstance, NULL
  msgLoop:    inc eax
    shr eax, 1
    je @F                ; quit if GetMessage returned 0 (exit OK) or -1 (error), or if CwEx failed
      invoke TranslateMessage, addr msg    ; translates virtual-key messages into character messages
    invoke DispatchMessage, addr msg    ; dispatches a message to a window procedure
    invoke GetMessage, addr msg, 0, 0, 0    ; retrieve a message from the queue, and return a BOOL
      jmp msgLoop
@@:    invoke ExitProcess, 0 ;msg.wParam
WinMain endp

UAsm: Tmp_File.asm(39) : Error A2142: Unmatched block nesting: WinMain

Same with JWasm: Warning A4109: Invalid command-line option: -nomlib
Tmp_File.asm(39) : Error A2142: Unmatched block nesting: WinMain

I've stared a while at this proc, renamed it to test if there was a name conflict... no luck. Besides, it works perfectly in a 64-bit JBasic program.

Any idea?

I got the WinMain problem half solved: Error A2262: Missing .ENDPROLOG: WinMain
Yep, UAsm and JWasm can, apparently, not imagine that a proc can be left with ExitProcess instead of a ret.
But now the Error A2142 moved to WndProc :rolleyes:
Title: Re: UAsm WinInc and the CStr mystery
Post by: fearless on February 24, 2024, 07:12:45 AM
lea rbx, wcx - shouldnt that be lea rbx, wc
also the @64 complains in the CreateWindowEx line - Error A2102: Symbol not defined : @64

 
Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 24, 2024, 08:09:48 AM
Quote from: fearless on February 24, 2024, 07:12:45 AMlea rbx, wcx - shouldnt that be lea rbx, wc

No, wcx is a global variable, ws is the equate

Quotealso the @64 complains in the CreateWindowEx line - Error A2102: Symbol not defined : @64
Fixed, thanks.

Now it builds fine - new version attached.
Title: Re: UAsm WinInc and the CStr mystery
Post by: _japheth on February 24, 2024, 01:38:52 PM
Quote from: jj2007 on February 24, 2024, 06:42:34 AMI got the WinMain problem half solved: Error A2262: Missing .ENDPROLOG: WinMain
Yep, UAsm and JWasm can, apparently, not imagine that a proc can be left with ExitProcess instead of a ret.

Hm, .ENDPROLOG surely has nothing to do with ret, it's a prologue, not an epilogue problem.

QuoteBut now the Error A2142 moved to WndProc :rolleyes:

Those "unmatched block nesting" errors occur when the PROC and ENDP directives of a procedure aren't in the same segment.
Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 24, 2024, 07:46:13 PM
Quote from: _japheth on February 24, 2024, 01:38:52 PMThose "unmatched block nesting" errors occur when the PROC and ENDP directives of a procedure aren't in the same segment.

That was indeed the problem, thank you. More specifically:
Chr$ MACRO args:VARARG
Local NewString
  .DATA
  NewString db args, 0
  .CODE
  EXITM <offset NewString>
ENDM
WinMain proc ....
  ...
  invoke CreateWindowEx, 0, wc.lpszClassName, Chr$("Hello World"), ...
  ret
WinMain endp

Looks harmless, right? Except that the whole WinMain was erroneously in the .DATA section, so when Chr$() is being used, there is a switch from .DATA to .CODE :rolleyes:

IMHO some work on error detection/error messages would do no harm: a PROC in the .DATA section, really?
Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 24, 2024, 11:19:37 PM
Quote;--- include file created by h2incx v0.99.10, copyright 2005 japheth
;--- source file: c:\programme\devstudio\vc6\include\WINDOWS.H, last modified: 4/24/1998 0:0

Japheth,

Any chance to update the set of WinInc include files? Can h2incx handle recent *.h files, or have they become too complex? Gcc has the -E and -P options (https://gcc.gnu.org/onlinedocs/gcc/Preprocessor-Options.html), they might be helpful to reduce the complexity.
Title: Re: UAsm WinInc and the CStr mystery
Post by: sinsi on February 24, 2024, 11:57:22 PM
QuoteLooks harmless, right? Except that the whole WinMain was erroneously in the .DATA section, so when Chr$() is being used, there is a switch from .DATA to .CODE
Now jj, admit it, that's a coder error :biggrin:

Of course, if it was deliberate, you could use @CurSeg to restore the original segment
Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 25, 2024, 12:20:41 AM
Quote from: sinsi on February 24, 2024, 11:57:22 PMNow jj, admit it, that's a coder error

Obviously, that's why we all look so old - bugchasing nights :badgrin:
Re @CurSeg, I use that occasionally in macros that make sense in both .code and .data
Title: Re: UAsm WinInc and the CStr mystery
Post by: _japheth on February 25, 2024, 01:07:49 AM
Quote from: jj2007 on February 24, 2024, 07:46:13 PMIMHO some work on error detection/error messages would do no harm: a PROC in the .DATA section, really?

It's copied from Masm: if you define a code label (symbol with a trailing colon) in .data, you'll get an error, but to define a proc is ok ( so long as it contains no labels ).

Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 25, 2024, 01:52:25 AM
Quote from: _japheth on February 25, 2024, 01:07:49 AMto define a proc is ok
So for the sake of compatibility, we keep the odd behaviour, too? IMHO there should be at least a warning...


I'm having fun with gcc.exe -S -E -P -o out.h ~tmp4Gcc.cpp :cool:
  1  bfd.h                                #error config.h must be included before this header              4  ctf-api.h                            zlib.h: No such file or directory                                7  dis-asm.h                            #error config.h must be included before this header              8  plugin-api.h                          #error cannot find uint64_t type                                90  specfun.h                            #error include <cmath> and define __STDCPP_WANT_MATH_SPEC_FUNCS162  codecvt_specializations.h            iconv.h: No such file or directory                            165  enc_filebuf.h                        iconv.h: No such file or directory                            233  glue_execution_defs.h                #error "The parallel backend is neither serial nor TBB"        240  numeric_impl.h                        #error "The parallel backend is neither serial nor TBB"        243  parallel_backend_tbb.h                tbb/blocked_range.h: No such file or directory                246  pstl_config.h                        #error "The parallel backend is neither serial nor TBB"        261  special_function_util.h              #error do not include this header directly, use <cmath> or <tr1283  extc++.h                              iconv.h: No such file or directory                            306  extc++.h                              iconv.h: No such file or directory                            325  stdio.h                              ssp.h: No such file or directory                              326  string.h                              ssp.h: No such file or directory                              327  unistd.h                              ssp.h: No such file or directory                              329  adxintrin.h                          #error "Never use <adxintrin.h> directly; include <immintrin.h>331  avx2intrin.h                          #error "Never use <avx2intrin.h> directly; include <immintrin.h332  avx5124fmapsintrin.h                  #error "Never use <avx5124fmapsintrin.h> directly; include <x86333  avx5124vnniwintrin.h                  #error "Never use <avx5124vnniwintrin.h> directly; include <x86334  avx512bf16intrin.h                    #error "Never use <avx512bf16intrin.h> directly; include <immin335  avx512bf16vlintrin.h                  #error "Never use <avx512bf16vlintrin.h> directly; include <imm336  avx512bitalgintrin.h                  #error "Never use <avx512bitalgintrin.h> directly; include <x86337  avx512bwintrin.h                      #error "Never use <avx512bwintrin.h> directly; include <immintr338  avx512cdintrin.h                      #error "Never use <avx512cdintrin.h> directly; include <immintr339  avx512dqintrin.h                      #error "Never use <avx512dqintrin.h> directly; include <immintr340  avx512erintrin.h                      #error "Never use <avx512erintrin.h> directly; include <immintr341  avx512fintrin.h                      #error "Never use <avx512fintrin.h> directly; include <immintri895  dpapi.h                              missing binary operator before token "("             
Output as attached, perhaps a bit less complex than the original.
Title: Re: UAsm WinInc and the CStr mystery
Post by: TimoVJL on February 25, 2024, 02:12:00 AM
Bottle of red wine in saturday is always better than messing with gcc  :biggrin:

gcc == Global Chaos of Computing ?

Msvc and Pelles C have -e and -p options too.
Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 25, 2024, 02:13:28 AM
Quote from: TimoVJL on February 25, 2024, 02:12:00 AMBottle of red wine in saturday is always better than messing with gcc

Gcc's -E option is interesting, because you get rid of all the #if WINVER... etc stuff.
Title: Re: UAsm WinInc and the CStr mystery
Post by: HSE on February 25, 2024, 02:31:11 AM
:biggrin:

gcc -malbec stdio.asm
Title: Re: UAsm WinInc and the CStr mystery
Post by: Biterider on February 25, 2024, 02:37:09 AM
Quote from: HSE on February 25, 2024, 02:31:11 AMCode Select Expand
gcc -malbec stdio.asm
A better option is "-Zinfandel". Try it out  :wink2:

Biterider
Title: Re: UAsm WinInc and the CStr mystery
Post by: HSE on February 25, 2024, 03:09:05 AM
Quote from: Biterider on February 25, 2024, 02:37:09 AMZinfandel

Área : 0.7 ha  :biggrin:

Malbec : 43000 ha

Title: Re: UAsm WinInc and the CStr mystery
Post by: Biterider on February 25, 2024, 03:37:31 AM
You know... good things are small  :thumbsup:

Biterider

Title: Re: UAsm WinInc and the CStr mystery
Post by: HSE on February 25, 2024, 04:34:09 AM
And could be hard to find  :thumbsup:

HSE
Title: Re: UAsm WinInc and the CStr mystery
Post by: jj2007 on February 25, 2024, 06:07:33 AM
It seems you have absolutely no interest in the UAsm WinInc set of header files. May I ask what you are using instead (assuming you are still into coding)?
Title: Re: UAsm WinInc and the CStr mystery
Post by: HSE on February 25, 2024, 08:30:02 AM
UAsm work perfectly with ObjAsm includes.

WinInc apparently is not updated for UAsm, at least in recent years IIRC.