亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? immplugin.pas

?? This source code. simple tools for huawei CDMA platform function : read code write code read sp
?? PAS
?? 第 1 頁 / 共 5 頁
字號:
  NCOLORS           = 20;               // Total number of defined colours

  BKTRANSP          = $00;              // Background colours in syntax hiliting
  BKBLACK           = $10;
  BKGRAY            = $20;
  BKWHITE           = $30;
  BKCYAN            = $40;
  BKGREEN           = $50;
  BKRED             = $60;
  BKYELLOW          = $70;

  BLACKWHITE        = 0;                // Colour schemes used by IMMDBG
  BLUEGOLD          = 1;
  SKYWIND           = 2;
  NIGHTSTARS        = 3;
  SCHEME4           = 4;
  SCHEME5           = 5;
  SCHEME6           = 6;
  SCHEME7           = 7;

  FIXEDFONT         = 0;                // Fonts used by IMMDBG. Variable-pitch
  TERMINAL6         = 1;                // fonts are placed at the end of this
  FIXEDSYS          = 2;                // table.
  COURIERFONT       = 3;
  LUCIDACONS        = 4;
  FONT5             = 5;
  FONT6             = 6;
  FONT7             = 7;
  MAINFONT          = 8;
  SYSFONT           = 9;
  INFOFONT          = 10;


////////////////////////////////////////////////////////////////////////////////
///////////////////////////// INFORMATION FUNCTIONS ////////////////////////////


Var
  Addtolist        : procedure (addr: LongInt; highlight: Integer; format: PChar); cdecl varargs;
  Updatelist       : procedure; cdecl;
  Createlistwindow : function  : HWND; cdecl;
  Error            : procedure (format: PChar); cdecl varargs;
  Message          : procedure (addr: ULONG; format: PChar); cdecl varargs;
  Infoline         : procedure (format: PChar); cdecl varargs;
  Progress         : procedure (promille: Integer; format: PChar); cdecl varargs;
  Flash            : procedure (format: PChar); cdecl varargs;


////////////////////////////////////////////////////////////////////////////////
/////////////////////////// DATA FORMATTING FUNCTIONS //////////////////////////

// Bits used in Decodeaddress(), Decoderelativeoffset() and Decodethreadname()
// to specify decoding mode:

const
  ADC_DEFAULT       = $0000;          // Default decoding mode
  ADC_DIFFMOD       = $0001;          // Show module only if different
  ADC_NOMODNAME     = $0002;          // Never show module name
  ADC_VALID         = $0004;          // Only decode if allocated memory
  ADC_INMODULE      = $0008;          // Only decode if in some module
  ADC_SAMEMOD       = $0010;          // Decode only address in same module
  ADC_SYMBOL        = $0020;          // Only decode if symbolic name
  ADC_JUMP          = $0040;          // Check if points to JMP/CALL command
  ADC_OFFSET        = $0080;          // Check if symbol for data
  ADC_STRING        = $0100;          // Check if pointer to ASCII or UNICODE
  ADC_ENTRY         = $0200;          // Check if entry to subroutine
  ADC_UPPERCASE     = $0400;          // First letter in uppercase if possible
  ADC_WIDEFORM      = $0800;          // Extended form of decoded name
  ADC_NONTRIVIAL    = $1000;          // Name + non-zero offset
  ADC_DYNAMIC       = $2000;          // JMP/CALL to dynamically loaded name

  PLAINASCII        = $01;            // Plain ASCII character
  DIACRITICAL       = $02;            // Diacritical character
  RAREASCII         = $10;            // Rare ASCII character


Var
  Decodeaddress        : function  (addr: ULONG; base: ULONG; addrmode: Integer; symb: PChar; nsymb: Integer; comment: PChar): Integer; cdecl;
  Decoderelativeoffset : function  (addr: ULONG; addrmode: Integer; symb: PChar; nsymb: Integer): Integer; cdecl;
  Decodecharacter      : function  (s: PChar; c: UINT): Integer; cdecl;
  Printfloat4          : function  (s: PChar; f: Single): Integer; cdecl;
  Printfloat8          : function  (s: PChar; d: Double): Integer; cdecl;
  Printfloat10         : function  (s: PChar; ext: Extended): Integer; cdecl;
  Print3dnow           : function  (s: PChar; f: PChar): Integer; cdecl;
  Printsse             : function  (s: PChar; f: PChar): Integer; cdecl;
  Followcall           : function  (addr: ULONG): ULONG; cdecl;
  IstextA              : function  (c: Char): Integer; cdecl;
  IstextW              : function  (w: WCHAR): Integer; cdecl;
  Stringtotext         : function  (data: PChar; ndata: Integer; text: PChar; ntext: Integer): Integer; cdecl;


////////////////////////////////////////////////////////////////////////////////
////////////////////////////// DATA INPUT FUNCTIONS ////////////////////////////

const
  MAXCMDSIZE        = 16;             // Maximal length of 80x86 command
  NSEQ              = 8;              // Max length of command sequence
  NMODELS           = 8;              // Number of assembler search models

  // Note that each of dialog functions decodes only subset of listed flags.
  DIA_ASKGLOBAL     = $0001;          // Display checkbox 'Global search'
  DIA_HEXONLY       = $0002;          // Hexadecimal format only
  DIA_ALIGNED       = $0004;          // Display checkbox 'Aligned search'
  DIA_DEFHEX        = $0000;          // On startup, cursor in hex control
  DIA_DEFASCII      = $0010;          // On startup, cursor in ASCII control
  DIA_DEFUNICODE    = $0020;          // On startup, cursor in UNICODE control
  DIA_SEARCH        = $0040;          // Is a search dialog
  DIA_HISTORY       = $0100;          // Allows previous hex strings

  // Status of animation or trace.
  ANIMATE_OFF       = 0;              // No animation
  ANIMATE_IN        = 1;              // Animate into
  ANIMATE_OVER      = 2;              // Animate over
  ANIMATE_RET       = 3;              // Execute till RET
  ANIMATE_SKPRET    = 4;              // Skip RET instruction
  ANIMATE_USER      = 5;              // Execute till user code
  ANIMATE_TRIN      = 6;              // Run trace in
  ANIMATE_TROVER    = 7;              // Run trace over
  ANIMATE_STOP      = 8;              // Gracefully stop animation

type
  p_hexstr = ^t_hexstr;
  t_hexstr = packed record                  // String used for hex/text search
    n: Integer;                             // String length
    data: array[0..TEXTLEN-1] of Char;      // Data
    mask: array[0..TEXTLEN-1] of Char;      // Mask, 0 bits are masked
  end;

  p_asmmodel = ^t_asmmodel;
  t_asmmodel = packed record                // Model to search for assembler command
    code: array[0..MAXCMDSIZE-1] of Char;   // Binary code
    mask: array[0..MAXCMDSIZE-1] of Char;   // Mask for binary code (0: bit ignored)
    length: Integer;                        // Length of code, bytes (0: empty)
    jmpsize: Integer;                       // Offset size if relative jump
    jmpoffset: Integer;                     // Offset relative to IP
    jmppos: Integer;                        // Position of jump offset in command
  end;

  p_asmmodels = ^t_asmmodels;
  t_asmmodels = array[0..NMODELS - 1] of t_asmmodel;

  t_extmodel = packed record                // Model for extended command search
    code: array[0..MAXCMDSIZE-1] of Char;   // Binary code
    mask: array[0..MAXCMDSIZE-1] of Char;   // Mask for binary code (0: bit ignored)
    length: Integer;                        // Length of code, bytes (0: empty)
    jmpsize: Integer;                       // Offset size if relative jump
    jmpoffset: Integer;                     // Offset relative to IP
    jmppos: Integer;                        // Position of jump offset in command
    isany: Integer;                         // Count for ANY's argument
    cmdoffset: Integer;                     // Offset of command in the source
    ramask: array[0..MAXCMDSIZE-1] of Char; // Mask for pseudoregister RA
    rbmask: array[0..MAXCMDSIZE-1] of Char; // Mask for pseudoregister RB
  end;

  p_extmodels = ^t_extmodels;
  t_extmodels = array[0..NSEQ - 1, 0..NMODELS - 1] of t_extmodel;


Var
  Getlong               : function  (title: PChar; data: PULONG; datasize: Integer; letter: Char; mode: Integer): Integer; cdecl;
  Getlongxy             : function  (title: PChar; data: PULONG; datasize: Integer; letter: Char; mode: Integer; x: Integer; y: Integer): Integer; cdecl;
  Getregxy              : function  (title: PChar; data: PULONG; letter: Char; x: Integer; y: Integer): Integer; cdecl;
  Getline               : function  (title: PChar; data: PULONG): Integer; cdecl;
  Getlinexy             : function  (title: PChar; data: PULONG; x: Integer; y: Integer): Integer; cdecl;
  Getfloat10            : function  (title: PChar; fdata: PExtended; tag: PChar; letter: Char; mode: Integer): Integer; cdecl;
  Getfloat10xy          : function  (title: PChar; fdata: PExtended; tag: PChar; letter: Char; mode: Integer; x: Integer; y: Integer): Integer; cdecl;
  Getfloat              : function  (title: PChar; fdata: Pointer; size: Integer; letter: Char; mode: Integer): Integer; cdecl;
  Getfloatxy            : function  (title: PChar; fdata: Pointer; size: Integer; letter: Char; mode: Integer; x: Integer; y: Integer): Integer; cdecl;
  Getasmfindmodel       : procedure (models: p_asmmodels; letter: Char; searchall: Integer); cdecl;
  Getasmfindmodelxy     : procedure (models: p_asmmodels; letter: Char; searchall: Integer; x: Integer; y: Integer); cdecl;
  Gettext               : function  (title: PChar; text: PChar; letter: Char; type_i: Integer; fontindex: Integer): Integer; cdecl;
  Gettextxy             : function  (title: PChar; text: PChar; letter: Char; type_i: Integer; fontindex: Integer; x: Integer; y: Integer): Integer; cdecl;
  Gethexstring          : function  (title: PChar; phs: p_hexstr; mode: Integer; fontindex: Integer; letter: Char): Integer; cdecl;
  Gethexstringxy        : function  (title: PChar; phs: p_hexstr; mode: Integer; fontindex: Integer; letter: Char; x: Integer; y: Integer): Integer; cdecl;
  Getmmx                : function  (title: PChar; data: PChar; mode: Integer): Integer; cdecl;
  Getmmxxy              : function  (title: PChar; data: PChar; mode: Integer; x: Integer; y: Integer): Integer; cdecl;
  Get3dnow              : function  (title: PChar; data: PChar; mode: Integer): Integer; cdecl;
  Get3dnowxy            : function  (title: PChar; data: PChar; mode: Integer; x: Integer; y: Integer): Integer; cdecl;
  Browsefilename        : function  (title: PChar; name: PChar; defext: PChar; getarguments: Integer): Integer; cdecl;
  OpenEXEfile           : function  (path: PChar; dropped: Integer): Integer; cdecl;
  Attachtoactiveprocess : function  (newprocessid: Integer): Integer; cdecl;
  Animate               : procedure (animation: Integer); cdecl;


/////////////////////////////////////////////////////////////////////////////////
///////////////////////////// SORTED DATA FUNCTIONS /////////////////////////////

const
  NBAR              = 17;             // Max allowed number of segments in bar

  BAR_PRESSED       = $01;            // Bar segment pressed, used internally
  BAR_DISABLED      = $02;            // Bar segment disabled
  BAR_NOSORT        = $04;            // Flat bar column, supports no sorting
  BAR_NORESIZE      = $08;            // Bar column cannot be resized
  BAR_BUTTON        = $10;            // Segment sends WM_USER_BAR
  BAR_SHIFTSEL      = $20;            // Selection shifted 1/2 char to left

  CAPT_FREE         = 0;              // Bar and data are not captured

  TABLE_DIR         = $0001;          // Bottom-to-top table
  TABLE_COPYMENU    = $0002;          // Attach copy item
  TABLE_SORTMENU    = $0004;          // Attach sort menu
  TABLE_APPMENU     = $0010;          // Attach appearance menu
  TABLE_WIDECOL     = $0020;          // Attach wide columns menu item
  TABLE_USERAPP     = $0040;          // Attach user-processed appearance menu
  TABLE_USERDEF     = $0080;          // User-drawn table
  TABLE_NOHSCR      = $0100;          // Table contains no horizontal scroll
  TABLE_SAVEPOS     = $0200;          // Save position & appearance to .ini
  TABLE_CPU         = $0400;          // Table belongs to CPU window
  TABLE_FASTSEL     = $0800;          // Update when selection changes
  TABLE_COLSEL      = $1000;          // Column-wide selection
  TABLE_SAVEAPP     = $2000;          // Save multiinstance appearance to .ini
  TABLE_HILMENU     = $4000;          // Attach Syntax highlighting menu

  DRAW_NORMAL       = $0000;          // Normal plain text
  DRAW_GRAY         = $0001;          // Grayed text
  DRAW_HILITE       = $0002;          // Highlighted text
  DRAW_UL           = $0004;          // Underlined text
  DRAW_SELECT       = $0008;          // Selected background
  DRAW_EIP          = $0010;          // Inverted normal text/background
  DRAW_BREAK        = $0020;          // Breakpoint background
  DRAW_GRAPH        = $0040;          // Graphical element
  DRAW_DIRECT       = $0080;          // Direct text colour index (mask only)
  DRAW_MASK         = $0080;          // Use mask to set individual colors
  DRAW_EXTSEL       = $0100;          // Extend mask till end of column
  DRAW_UNICODE      = $0200;          // Text in UNICODE
  DRAW_TOP          = $0400;          // Draw upper half of text
  DRAW_BOTTOM       = $0800;          // Draw lower half of text

  // Symbolic names for graphical characters. Any other character is displayed
  // as space. Use only characters in range [1..0x7F]!
  D_SPACE           = 'N';            // Space
  D_SEP             = ' ';            // Thin separating line
  D_BEGIN           = 'B';            // Begin of procedure or scope

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99riav久久精品riav| 亚洲电影第三页| 精品久久久久久久久久久久久久久| 欧美综合一区二区| 91免费看`日韩一区二区| 成人美女视频在线观看| 成人禁用看黄a在线| 国产精品一区二区三区乱码| 久久99精品国产麻豆不卡| 天堂蜜桃一区二区三区| 日韩精彩视频在线观看| 久久精品国产久精国产爱| 美女脱光内衣内裤视频久久网站| 蜜臀av一区二区| 国产一区在线看| 成人高清免费观看| 在线亚洲欧美专区二区| 91精品欧美一区二区三区综合在 | 日韩欧美在线观看一区二区三区| 欧美三片在线视频观看| 欧美一区二区视频在线观看2022| 91精品国产色综合久久久蜜香臀| 精品国产电影一区二区| 日本一区二区三区四区在线视频| 亚洲欧美一区二区在线观看| 亚洲少妇中出一区| 无码av中文一区二区三区桃花岛| 美女看a上一区| 国产成a人无v码亚洲福利| 91在线精品秘密一区二区| 欧美日韩高清一区二区三区| 日韩精品一区二区三区四区视频| 2019国产精品| 亚洲欧美电影一区二区| 视频一区欧美精品| 风流少妇一区二区| 欧美色偷偷大香| 久久久久国产精品麻豆ai换脸 | 国产精品一线二线三线| 99久久er热在这里只有精品66| 欧美军同video69gay| 日本一区二区三级电影在线观看| 亚洲日本丝袜连裤袜办公室| 久草中文综合在线| 欧美在线|欧美| 国产精品乱子久久久久| 免费精品视频在线| 欧美网站大全在线观看| 国产日韩欧美麻豆| 久久er精品视频| 欧洲一区在线电影| 中文字幕在线不卡| 国产成人精品一区二区三区网站观看| 欧美日韩在线三级| 综合久久给合久久狠狠狠97色| 精品系列免费在线观看| 在线一区二区视频| 1区2区3区精品视频| 国产精品影视在线| 久久久青草青青国产亚洲免观| 午夜视频在线观看一区二区三区 | 日本不卡一二三区黄网| 欧洲精品一区二区三区在线观看| 国产日产亚洲精品系列| 国产一区二区三区观看| 日韩欧美黄色影院| 午夜一区二区三区在线观看| 色就色 综合激情| 亚洲女同一区二区| av高清不卡在线| 国产精品女人毛片| 国产精品自在在线| 久久精品一区二区| 国产麻豆精品在线| 久久久精品蜜桃| 国产91精品一区二区麻豆网站| 日韩你懂的在线播放| 久久精品噜噜噜成人av农村| 91精品国产手机| 国内精品国产成人| 久久精品欧美日韩精品| 国产不卡视频一区二区三区| 国产精品美女一区二区| 99视频在线观看一区三区| 亚洲欧美一区二区三区国产精品| 91视频免费观看| 亚洲精品自拍动漫在线| 石原莉奈在线亚洲三区| 久久丁香综合五月国产三级网站| 在线不卡中文字幕播放| 日一区二区三区| 日韩免费视频线观看| 韩国一区二区在线观看| 国产拍揄自揄精品视频麻豆| 成人综合婷婷国产精品久久免费| 亚洲欧洲国产专区| 欧美伊人久久大香线蕉综合69 | 日本一区二区不卡视频| 粉嫩av亚洲一区二区图片| 一区在线播放视频| 欧美日韩精品专区| 蓝色福利精品导航| 亚洲国产高清在线| 欧美午夜影院一区| 国产一区二区在线看| 综合自拍亚洲综合图不卡区| 6080yy午夜一二三区久久| 国产精品亚洲人在线观看| 亚洲人妖av一区二区| 欧美一级理论性理论a| 丰满少妇在线播放bd日韩电影| 亚洲人吸女人奶水| 欧美精品一区二区三区四区| 91美女精品福利| 久久99日本精品| 亚洲一区二区三区在线看| 26uuu另类欧美亚洲曰本| 欧美性生交片4| 精品一区二区三区在线观看国产| 欧美激情资源网| 777xxx欧美| 99久久免费国产| 国产一区二区三区视频在线播放| 亚洲黄色性网站| 欧美国产日本韩| 日韩欧美国产wwwww| 91成人在线观看喷潮| 国产福利精品导航| 美女在线视频一区| 亚洲成a人v欧美综合天堂下载| 国产精品色婷婷久久58| 欧美电影免费观看高清完整版在线| 91视频免费观看| 不卡的电影网站| 国产精品一区不卡| 麻豆精品一区二区av白丝在线| 一区二区免费在线| 中文字幕一区二区三区在线观看 | 国产精品自拍毛片| 久久国内精品视频| 天堂一区二区在线免费观看| 亚洲一级二级三级| 亚洲桃色在线一区| 中文字幕亚洲一区二区va在线| 久久人人爽人人爽| 久久亚洲综合av| 精品少妇一区二区三区日产乱码| 51精品秘密在线观看| 欧美日韩的一区二区| 欧美四级电影网| 欧美日本韩国一区二区三区视频| 色综合久久天天| 日本韩国精品一区二区在线观看| 91免费看片在线观看| 99re热这里只有精品免费视频| www.激情成人| 91久久人澡人人添人人爽欧美| www.欧美日韩国产在线| 99精品在线观看视频| 色综合久久综合| 日韩一级大片在线观看| 欧美一区二区在线不卡| 日韩一区二区三区免费观看| 日韩欧美国产精品| 国产视频一区二区在线| 国产精品私人影院| 亚洲天堂av一区| 亚洲超碰精品一区二区| 丝袜国产日韩另类美女| 久久成人羞羞网站| 国产jizzjizz一区二区| 99久久99久久精品国产片果冻| 在线观看av一区| 日韩一区二区三区视频在线观看| 久久久久久黄色| 亚洲欧美日韩国产成人精品影院 | 欧美电视剧免费全集观看| 精品国一区二区三区| 中国色在线观看另类| 一区二区三区美女视频| 免费在线成人网| 福利一区二区在线| 欧美日韩国产高清一区二区三区| 91精品国产综合久久久蜜臀图片| 日韩精品自拍偷拍| 一区在线中文字幕| 天堂久久久久va久久久久| 精品一区二区免费在线观看| 成+人+亚洲+综合天堂| 欧美日韩你懂得| 欧美国产精品v| 首页亚洲欧美制服丝腿| 国产精品一区二区不卡| 欧美自拍丝袜亚洲| 久久久亚洲精品一区二区三区| 一级中文字幕一区二区| 国内精品国产三级国产a久久| 色哟哟国产精品| 亚洲精品一区二区精华| 亚洲一级电影视频|