Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8c9011db
Commit
8c9011db
authored
Jul 27, 2014
by
Austin English
Committed by
Alexandre Julliard
Aug 27, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
npptools: Add stub dll.
parent
a2db8bc1
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
105 additions
and
0 deletions
+105
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/npptools/Makefile.in
+4
-0
main.c
dlls/npptools/main.c
+38
-0
npptools.spec
dlls/npptools/npptools.spec
+60
-0
No files found.
configure
View file @
8c9011db
...
...
@@ -1151,6 +1151,7 @@ enable_netprofm
enable_newdev
enable_normaliz
enable_npmshtml
enable_npptools
enable_ntdll
enable_ntdsapi
enable_ntoskrnl_exe
...
...
@@ -17148,6 +17149,7 @@ wine_fn_config_test dlls/netprofm/tests netprofm_test
wine_fn_config_dll newdev enable_newdev implib
wine_fn_config_dll normaliz enable_normaliz implib
wine_fn_config_dll npmshtml enable_npmshtml
wine_fn_config_dll npptools enable_npptools
wine_fn_config_dll ntdll enable_ntdll implib
wine_fn_config_test dlls/ntdll/tests ntdll_test
wine_fn_config_dll ntdsapi enable_ntdsapi implib
...
...
configure.ac
View file @
8c9011db
...
...
@@ -3059,6 +3059,7 @@ WINE_CONFIG_TEST(dlls/netprofm/tests)
WINE_CONFIG_DLL(newdev,,[implib])
WINE_CONFIG_DLL(normaliz,,[implib])
WINE_CONFIG_DLL(npmshtml)
WINE_CONFIG_DLL(npptools)
WINE_CONFIG_DLL(ntdll,,[implib])
WINE_CONFIG_TEST(dlls/ntdll/tests)
WINE_CONFIG_DLL(ntdsapi,,[implib])
...
...
dlls/npptools/Makefile.in
0 → 100644
View file @
8c9011db
MODULE
=
npptools.dll
C_SRCS
=
\
main.c
dlls/npptools/main.c
0 → 100644
View file @
8c9011db
/*
*
* Copyright 2014 Austin English
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
BOOL
WINAPI
DllMain
(
HINSTANCE
instance
,
DWORD
reason
,
LPVOID
reserved
)
{
switch
(
reason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
instance
);
break
;
}
return
TRUE
;
}
dlls/npptools/npptools.spec
0 → 100644
View file @
8c9011db
@ stub ClearEventData
@ stub CreateBlob
@ stub CreateNPPInterface
@ stub DestroyBlob
@ stub DestroyNPPBlobTable
@ stub DuplicateBlob
@ stub FilterNPPBlob
@ stub FindOneOf
@ stub FindUnknownBlobCategories
@ stub FindUnknownBlobTags
@ stub GetBoolFromBlob
@ stub GetClassIDFromBlob
@ stub GetDwordFromBlob
@ stub GetMacAddressFromBlob
@ stub GetNPPAddressFilterFromBlob
@ stub GetNPPBlobFromUI
@ stub GetNPPBlobTable
@ stub GetNPPEtypeSapFilter
@ stub GetNPPMacTypeAsNumber
@ stub GetNPPPatternFilterFromBlob
@ stub GetNPPTriggerFromBlob
@ stub GetNetworkInfoFromBlob
@ stub GetStringFromBlob
@ stub GetStringsFromBlob
@ stub IsRemoteNPP
@ stub LockBlob
@ stub MarshalBlob
@ stub MergeBlob
@ stub NmAddUsedEntry
@ stub NmHeapAllocate
@ stub NmHeapFree
@ stub NmHeapReallocate
@ stub NmHeapSetMaxSize
@ stub NmHeapSize
@ stub NmRemoveUsedEntry
@ stub RaiseNMEvent
@ stub ReadBlobFromFile
@ stub RegCreateBlobKey
@ stub RegOpenBlobKey
@ stub ReleaseEventSystem
@ stub RemoveFromBlob
@ stub SelectNPPBlobFromTable
@ stub SendEvent
@ stub SetBoolInBlob
@ stub SetClassIDInBlob
@ stub SetDwordInBlob
@ stub SetMacAddressInBlob
@ stub SetNPPAddressFilterInBlob
@ stub SetNPPEtypeSapFilter
@ stub SetNPPPatternFilterInBlob
@ stub SetNPPTriggerInBlob
@ stub SetNetworkInfoInBlob
@ stub SetStringInBlob
@ stub SubkeyExists
@ stub UnMarshalBlob
@ stub UnlockBlob
@ stub WriteBlobToFile
@ stub WriteCrackedBlobToFile
@ stub recursiveDeleteKey
@ stub setKeyAndValue
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment