renamed plugin.* to pluginapi.*

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5856 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2008-12-20 08:49:26 +00:00
parent 5ac5b3f95b
commit 79da5e1cb5
26 changed files with 28 additions and 28 deletions

View file

@ -3,7 +3,7 @@
#include <windows.h>
#include <windowsx.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
HINSTANCE g_hInstance;

View file

@ -1,5 +1,5 @@
#include <windows.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
#include "../../Source/exehead/resource.h"
// Turn a pair of chars into a word

View file

@ -1,6 +1,6 @@
#include <windows.h>
#include <mmsystem.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
#undef EXDLL_INIT

View file

@ -2,7 +2,7 @@
#include <windows.h>
#include <wininet.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
#define NSISFunction(funcname) void __declspec(dllexport) funcname(HWND hwndParent, int string_size, char *variables, stack_t **stacktop, extra_parameters *extra)

View file

@ -1,14 +1,14 @@
# FIXME: install assembly and pascal includes into the correct locations
lib_target = "plugin"
lib_target = "pluginapi"
lib_files = Split("""
plugin.c
pluginapi.c
""")
api_files = Split("""
plugin.h
plugin.lib
pluginapi.h
pluginapi.lib
#Source/exehead/api.h
""")

View file

@ -1,5 +1,5 @@
#include <windows.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
HINSTANCE g_hInstance;

View file

@ -101,7 +101,7 @@ SOURCE=.\exdll.c
# PROP Default_Filter "h;hpp;hxx;hm;inl"
# Begin Source File
SOURCE=.\plugin.h
SOURCE=.\pluginapi.h
# End Source File
# End Group
# Begin Group "Resource Files"

View file

@ -5,7 +5,7 @@
#define _EXDLL_H_
#include <windows.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
// this may not work if /NODEFAULTLIB is used
#ifdef _MSC_VER

View file

@ -1,6 +1,6 @@
#include <windows.h>
#include "plugin.h"
#include "pluginapi.h"
unsigned int g_stringsize;
stack_t **g_stacktop;

View file

@ -14,7 +14,7 @@
#include "resource.h"
#include "shellapi.h"
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
// Use for functions only called from one place to possibly reduce some code
// size. Allows the source code to remain readable by leaving the function

View file

@ -10,7 +10,7 @@
// LangDLL:LangDialog "Language Selection" "Choose a language" 2F French 1036 English 1033 12 Garamond
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
HINSTANCE g_hInstance;
HWND g_hwndParent;

View file

@ -6,7 +6,7 @@
*/
#include <windows.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
#define NSISFunction(funcname) extern "C" void __declspec(dllexport) funcname(HWND hwndParent, int string_size, char *variables, stack_t **stacktop)

View file

@ -1,5 +1,5 @@
#include <windows.h>
#include <plugin.h> // nsis plugin library
#include <pluginapi.h> // nsis plugin
#include "MyMath.h"
#include "Math.h"

View file

@ -1,6 +1,6 @@
#pragma once
#include <plugin.h> // nsis plugin api
#include <pluginapi.h> // nsis plugin
#ifdef _DEBUG
//#define _DEBUG_LEAKS

View file

@ -26,7 +26,7 @@
#include "util.h"
#include "httpget.h"
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
void *operator new( unsigned int num_bytes )
{

View file

@ -1,5 +1,5 @@
#include <windows.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
HINSTANCE g_hInstance;

View file

@ -1,6 +1,6 @@
#include <windows.h>
#include <shlobj.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
#include "resource.h"
HINSTANCE g_hInstance;

View file

@ -1,7 +1,7 @@
#ifndef ___PLUGIN__H___
#define ___PLUGIN__H___
#include <plugin.h> // nsis plug-in...
#include <pluginapi.h> // nsis plugin
#define PLUGINFUNCTION(name) \
void __declspec(dllexport) name( \

View file

@ -1,5 +1,5 @@
#include <windows.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
typedef BOOL (WINAPI*CHECKTOKENMEMBERSHIP)(HANDLE TokenHandle,PSID SidToCheck,PBOOL IsMember);
CHECKTOKENMEMBERSHIP _CheckTokenMembership=NULL;

View file

@ -25,7 +25,7 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
#include "apply_patch.h"
#include "checksum.h"

View file

@ -1,7 +1,7 @@
#include <windows.h>
#include <shlobj.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
#include "defs.h"

View file

@ -1,6 +1,6 @@
#include <windows.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
#include "input.h"
#include "defs.h"

View file

@ -1,6 +1,6 @@
#include <windows.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
#include "defs.h"
#include "input.h"

View file

@ -1,7 +1,7 @@
#include <windows.h>
#include <commctrl.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
#include "defs.h"

View file

@ -21,7 +21,7 @@ freely, subject to the following restrictions:
#include <windows.h>
#include <commctrl.h>
#include <winnt.h>
#include <plugin.h> // nsis plugin.h
#include <pluginapi.h> // nsis plugin
#ifndef true
#define true TRUE