Author Topic: PROTOs  (Read 19666 times)

traphunter

  • Guest
Re: PROTOs
« Reply #15 on: December 06, 2013, 08:15:52 AM »
...
it's a plain text file - you can open it with NotePad
...

????

:(

dedndave

  • Member
  • *****
  • Posts: 8828
  • Still using Abacus 2.0
    • DednDave
Re: PROTOs
« Reply #16 on: December 06, 2013, 08:55:09 AM »
????

:(

that doesn't help us help you
what's the problem?
you don't have the file?
you can't open it?
you haven't installed the masm32 package?

dedndave

  • Member
  • *****
  • Posts: 8828
  • Still using Abacus 2.0
    • DednDave
Re: PROTOs
« Reply #17 on: December 06, 2013, 08:56:37 AM »
here are the pertinent lines of code in that file
Code: [Select]
      .486                                      ; create 32 bit code
      .model flat, stdcall                      ; 32 bit memory model
      option casemap :none                      ; case sensitive

;     include files
;     ~~~~~~~~~~~~~
      include \masm32\include\windows.inc       ; main windows include file
      include \masm32\include\masm32.inc        ; masm32 library include

    ; -------------------------
    ; Windows API include files
    ; -------------------------
      include \masm32\include\gdi32.inc
      include \masm32\include\user32.inc
      include \masm32\include\kernel32.inc
      include \masm32\include\Comctl32.inc
      include \masm32\include\comdlg32.inc
      include \masm32\include\shell32.inc
      include \masm32\include\oleaut32.inc
      include \masm32\include\ole32.inc
      include \masm32\include\msvcrt.inc

      include \masm32\include\dialogs.inc       ; macro file for dialogs
      include \masm32\macros\macros.asm         ; masm32 macro file

;     libraries
;     ~~~~~~~~~
      includelib \masm32\lib\masm32.lib         ; masm32 static library

    ; ------------------------------------------
    ; import libraries for Windows API functions
    ; ------------------------------------------
      includelib \masm32\lib\gdi32.lib
      includelib \masm32\lib\user32.lib
      includelib \masm32\lib\kernel32.lib
      includelib \masm32\lib\Comctl32.lib
      includelib \masm32\lib\comdlg32.lib
      includelib \masm32\lib\shell32.lib
      includelib \masm32\lib\oleaut32.lib
      includelib \masm32\lib\ole32.lib
      includelib \masm32\lib\msvcrt.lib

Vortex

  • Moderator
  • Member
  • *****
  • Posts: 2790
Re: PROTOs
« Reply #18 on: December 06, 2013, 08:58:19 AM »
traphunter,

Dave is right. You should be more specific to explain the issue.