NO

Author Topic: Tiny Lousy HexViewer  (Read 2874 times)

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
Tiny Lousy HexViewer
« on: August 08, 2011, 09:22:31 PM »
Here is small Tiny Lousy HexViewer that uses memory buffer (not memory mapped).
EDIT: 20110808 even smaller without RTL
EDIT: 20111015 fixed typo (TLHexView_WS_2.zip)
PS:
bcc 5.51 users can compile this with commands:
Code: [Select]
bcc32.exe -c -W TLHexView.c
ilink32.exe -M -aa -Tpe -c -V4.0 -Llib\PSDK NoCrt WinCRT1 TLHexView user32.lib, TLHexView.exe
Code: [Select]
; NoCrt startup code
; use WinMainCRTStartup as new starting point like MS linker do
; compile this with JWAsm.exe NorCrt.asm

.386p
.model flat, stdcall

extern   WinMainCRTStartup : proc
public _start
.code
_start:
jmp     WinMainCRTStartup
end _start
« Last Edit: October 15, 2011, 06:51:46 PM by timovjl »
May the source be with you

Offline Stefan Pendl

  • Global Moderator
  • Member
  • *****
  • Posts: 582
    • Homepage
Re: Tiny Lousy HexViewer
« Reply #1 on: October 15, 2011, 06:12:27 PM »
There is an error in the column header, since it displays "10" after "09" and "0F" is missing ;)

Seems like a mix with decimal system ...
---
Stefan

Proud member of the UltraDefrag Development Team