资源简介
最新加密狗驱动程序,支持WindowsXP、Windows7、Windows10。串口、并口。
代码片段和文件信息
/****************************************************************************
PROGRAM: DOGDEMO
PURPOSE: This application demonstrates how to load dogsetup.dll to install
the dog driver
Copyright (C) SafeNet China Ltd. All Rights Reserved.
****************************************************************************/
#include “windows.h“ /* required for all Windows applications */
#include “string.h“
#include “stdio.h“
#include “dogdemo.h“ /* specific to this program */
#include “resource.h“
#include “gsmh.h“
#define INSTALL_ONLY_USB_DOG_DRVIER 1
#define INSTALL_ONLY_PARALLEL_DOG_DRVIER 2
#define INSTALL_ALL_DOG_DRVIER 3
#define UNINSTALL_ONLY_USB_DOG_DRVIER 1
#define UNINSTALL_ONLY_PARALLEL_DOG_DRVIER 2
#define UNINSTALL_ALL_DOG_DRVIER 3
HANDLE hInst;
/****************************************************************************
FUNCTION: WinMain(HANDLE HANDLE LPSTR int)
****************************************************************************/
int PASCAL WinMain(HANDLE hInstance HANDLE hPrevInstance LPSTR lpCmdLine int nCmdShow)
{
DLGPROC lpDialogProc;
HINSTANCE mlib;
static char IniFileName[128];
static char Message[100];
static char inBuffer[10];
static char brun[]=“haverun“;
HANDLE hMutex;
hMutex=CreateMutex(
NULL // SD
TRUE // initial owner
brun // object name
);
if(GetLastError()==ERROR_ALREADY_EXISTS )
{
MessageBox(NULL“another process is running !““please waiting“MB_OK);
return 0;
}
mlib = LoadLibrary(TEXT(“DOGSETUP.dll“));
if(mlib != NULL)
(FARPROC)InstDriver = GetProcAddress(mlib “InstDriver“);
else
{
MessageBox(NULL“DOGSETUP.DLL not found!““Error“MB_OK);
return 0;
}
hInst = hInstance;
lpDialogProc = MakeProcInstance(DemoDlg hInstance);
if (strstr((char*)lpCmdLine“/?“)!=NULL)//display the command line help
{
MessageBox(NULL“Command Line Help(Not distinguish capital or lowercase)\n/? Display the command line help!\n/i Not Display the interface of installation!\n/s Not diaplay any information about installation!\n\nFor example:\nDoginst /i/s Not display any information in the process of installation!\n\n““Hint“MB_OK);
return FALSE;
}
else if(strstr((char*)lpCmdLine“/i“)!=NULL||strstr((char*)lpCmdLine“/I“)!=NULL)//Not display the interface of installation
{
//if you want only install the USB driver or Paralle driver you can use other Micro.
//for example
//INSTALL_ONLY_USB_DOG_DRVIER
//INSTALL_ONLY_PARALLEL_DOG_DRVIER
int retcode = InstDriver(INSTALL_ALL_DOG_DRVIER);
if(strstr((char*)lpCmdLine“/s“)!=NULL||strstr((char*)lpCmdLine“/S“)!=NULL)//Not display any information in the process of installation
{
return 0;
}
if(retcode == 0)
{
MessageBox(NULL“Th
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1930 2007-10-26 13:45 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\DELPHI\MAINFRM.dfm
文件 6973 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\DELPHI\MAINFRM.PAS
文件 192 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\DELPHI\Project1.dpr
文件 386560 2007-10-26 14:18 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\DELPHI\Project1.exe
文件 876 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\DELPHI\Project1.res
文件 2367 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\installshield\Setup.rul
文件 48128 2007-10-26 14:11 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\pb\dogsetup.exe
文件 34816 2007-10-26 14:11 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\pb\EXAM.pbl
文件 4879 2013-01-07 10:43 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\readme-chn.txt
文件 6590 2013-01-07 10:44 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\readme-eng.txt
文件 216480 2013-01-04 13:56 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\SoftDogInstdrv.exe
文件 2526624 2013-01-07 10:33 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\SoftDogSetup.dll
文件 368 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VB\declare.bas
文件 6150 2007-10-26 13:37 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VB\dogsetup.frm
文件 700 2007-10-26 13:37 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VB\Dogsetup.vbp
文件 28672 2007-10-26 13:38 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VB\vbsetup.exe
文件 13787 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\Dogdemo.c
文件 1429 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\Dogdemo.clw
文件 2281 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\Dogdemo.cpp
文件 383 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\Dogdemo.dep
文件 4207 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\Dogdemo.dsp
文件 539 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\Dogdemo.dsw
文件 1335 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\Dogdemo.h
文件 5939 2007-10-26 13:27 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\Dogdemo.rc
文件 10658 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\DogdemoDlg.cpp
文件 1977 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\DogdemoDlg.h
文件 20480 2007-10-26 13:27 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\DogInst.exe
文件 404 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\Gsmh.h
文件 1078 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\res\Dogdemo.ico
文件 399 2004-04-22 13:58 SoftDog最新驱动\SoftDog_Driver_4.1.0.1\VC\res\Dogdemo.rc2
............此处省略15个文件信息
相关资源
- 读狗工具(用于对付常用的加密狗
- 加密狗复制机增强版加密狗复制软件
- 使用加密狗进行身份验证详细的代码
- 加密狗复制工具——UMI
- ET199加密狗读写工具
- 圣天诺系列加密狗驱动完全卸载工具
- 加密狗克隆机、复制狗工具
- 科脉商业管理V3.0加密狗
- 精锐IV加密锁驱动64位elite4
- 最新版Rockey2加密狗读狗工具和使用说
- 深思洛克S4精锐IV加密狗读狗工具
- 定制深思S4 精锐E加密狗信息修改工具
- 深思4加密狗有驱无驱转换工具
- 加密狗检测工具
- 加密狗驱动senseIV2.x驱动程序
- 磐石系列加密狗型号检测
- UMI复制工具--加密狗复制工具
- EPLAN P8 1.9加密狗
- 九阵官方加密狗驱动驱动后认狗
- 域天加密狗读取和 写入数据,修改数
- 域天加密狗
- 精锐E普及版开发手册1.0.0.8
- 深思S4 加密狗型号快速检测V5.1 S4初始
- PL2303 WIN10驱动 亲测可用
- 广联达深思S4锁582写锁授权工具
- 广联达 ( 授权工具 V5.0(适用536552
- 域天YT88加密狗数据读取工具
- 加密狗加密锁型号检测工具最新整理
- KOB_usb_485_win8win10驱动-kt-c09
- safenetWin10加密狗驱动
评论
共有 条评论