test.dpr
上传用户:graphite
上传日期:2020-09-09
资源大小:2587k
文件大小:0k
源码类别:

破解

开发平台:

Others

  1. {$J+}
  2. library test;
  3. uses
  4.   SysUtils,
  5.   Windows,
  6.   aspr_api;
  7. Const
  8.   ModeName       : PChar   = '';
  9. Var
  10.   ModeStatus     : TModeStatus;
  11. procedure MB;
  12. begin
  13.   MessageBox(0,'procedure MB','MB',0);
  14. end;
  15. exports MB;
  16. begin
  17.   GetModeInformation( 0, ModeName, ModeStatus );
  18.   If ModeName = nil then ModeName:= 'No Mode';    //' Protect file first!
  19.   MessageBox(0, ModeName, 'Current Mode Name:',0)
  20. end.