mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 11:26:09 +00:00
642cb13729
plaltforms and languages (r=smeredith)
20 lines
1.1 KiB
C
20 lines
1.1 KiB
C
#include "stdafx.h"
|
|
#include "WizardTypes.h"
|
|
|
|
extern __declspec(dllimport) WIDGET GlobalWidgetArray[];
|
|
extern __declspec(dllimport) int GlobalArrayIndex;
|
|
extern __declspec(dllimport) BOOL IsSameCache;
|
|
|
|
|
|
__declspec(dllimport) CString GetGlobal(CString theName);
|
|
extern "C" __declspec(dllimport) WIDGET* SetGlobal(CString theName, CString theValue);
|
|
extern "C" __declspec(dllimport) WIDGET* findWidget(CString theName);
|
|
extern "C" __declspec(dllimport) void CopyDir(CString from, CString to, LPCTSTR extension, int overwrite);
|
|
extern "C" __declspec(dllexport) void ExecuteCommand(char *command, int showflag, DWORD wait);
|
|
extern "C" __declspec(dllimport) int GetAttrib(CString theValue, char* attribArray[]);
|
|
extern "C" __declspec(dllimport) void CopyDirectory(CString source, CString dest, BOOL subdir);
|
|
extern "C" __declspec(dllimport) void EraseDirectory(CString sPath);
|
|
__declspec(dllimport) CString SearchDirectory(CString dirPath, BOOL subDir, CString searchStr);
|
|
extern "C" __declspec(dllimport) void CreateDirectories(CString instblobPath);
|
|
__declspec(dllimport) CString GetModulePath();
|