mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
0ee9d00a95
Version: 2.0.684
53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
#include "Win32Helper.h"
|
|
|
|
/*
|
|
|
|
Example .inf file
|
|
_______________
|
|
///////////////
|
|
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
; ----------------------------------------------------------------------
|
|
; Required Sections
|
|
; ----------------------------------------------------------------------
|
|
[Version]
|
|
Signature=$CHICAGO$
|
|
Provider=test
|
|
Class=Printer
|
|
|
|
[Manufacturer]
|
|
HuntressLabs=ModelsSection,NTx86,NTia64,NTamd64
|
|
|
|
; ----------------------------------------------------------------------
|
|
; Models Section
|
|
; ----------------------------------------------------------------------
|
|
[ModelsSection.NTx86]
|
|
UnregisterDlls = Squiblydoo
|
|
|
|
[ModelsSection.NTia64]
|
|
UnregisterDlls = Squiblydoo
|
|
|
|
[ModelsSection.NTamd64]
|
|
UnregisterDlls = Squiblydoo
|
|
|
|
; ----------------------------------------------------------------------
|
|
; Support Sections
|
|
; ----------------------------------------------------------------------
|
|
[DefaultInstall]
|
|
UnregisterDlls = Squiblydoo
|
|
|
|
[Squiblydoo]
|
|
calc.exe
|
|
_______________
|
|
///////////////
|
|
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
*/
|
|
|
|
BOOL CreateProcessFromINFSectionInstallStringNoCab3W(LPCWSTR PathToInfFile, LPCWSTR NameOfSection)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL CreateProcessFromINFSectionInstallStringNoCab3A(LPCSTR PathToInfFile, LPCSTR NameOfSection)
|
|
{
|
|
return FALSE;
|
|
} |