Subversion Repositories currency_converter

Compare Revisions

No changes between revisions

Regard whitespace Rev 6 → Rev 5

/trunk/DLL Usage Demo/C++/Makefile.win
File deleted
/trunk/DLL Usage Demo/C++/Projekt1_private.rc
File deleted
/trunk/DLL Usage Demo/C++/Projekt1_private.h
File deleted
/trunk/DLL Usage Demo/C++/Projekt1.ico
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Deleted: svn:mime-type
-application/octet-stream
\ No newline at end of property
/trunk/DLL Usage Demo/C++/Projekt1.dev
File deleted
/trunk/DLL Usage Demo/C++/main.cpp
File deleted
/trunk/DLL Usage Demo/C++/Projekt1.layout
File deleted
/trunk/DLL Usage Demo/C++/Projekt1_private.res
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Deleted: svn:mime-type
-application/octet-stream
\ No newline at end of property
/trunk/DLL Usage Demo/C++/CurConv.h
16,8 → 16,11
const HRESULT E_VTSCONV_GENERIC_FAILURE = 0xA0000000; // Failure, Customer defined, Facility 0, Code 0
const HRESULT E_VTSCONV_BAD_ARGS = 0xA0000001; // Failure, Customer defined, Facility 0, Code 1
 
//#define CURCONV_API extern "C" __declspec(dllimport)
#define CURCONV_API extern "C" __stdcall
#ifdef BUILDING_DLL
#define CURCONV_API extern "C" __declspec(dllexport) __stdcall
#else
#define CURCONV_API extern "C" __declspec(dllimport) __stdcall
#endif
 
CURCONV_API HRESULT DeleteAPIKey(BOOL UserMode, BOOL DontShowErrors);
 
27,8 → 30,8
CURCONV_API HRESULT ReadAPIKeyW(LPWSTR key, BOOL DontShowErrors);
CURCONV_API HRESULT ReadAPIKeyA(LPSTR key, BOOL DontShowErrors);
 
CURCONV_API double ConvertW(double Value, LPCWSTR CurFrom, LPCWSTR CurTo, int MaxAge, CURCONV_FLAGS Flags, DATE HistoricDate);
CURCONV_API double ConvertA(double Value, LPCSTR CurFrom, LPCSTR CurTo, int MaxAge, CURCONV_FLAGS Flags, DATE HistoricDate);
CURCONV_API float ConvertW(float Value, LPCWSTR CurFrom, LPCWSTR CurTo, int MaxAge, CURCONV_FLAGS Flags, DATE HistoricDate);
CURCONV_API float ConvertA(float Value, LPCSTR CurFrom, LPCSTR CurTo, int MaxAge, CURCONV_FLAGS Flags, DATE HistoricDate);
 
CURCONV_API int AcceptedCurrenciesW(LPWSTR WriteTo, int MaxAge, CURCONV_FLAGS Flags, DATE HistoricDate);
CURCONV_API int AcceptedCurrenciesA(LPSTR WriteTo, int MaxAge, CURCONV_FLAGS Flags, DATE HistoricDate);
/trunk/DLL Usage Demo/C++
Property changes:
Deleted: svn:ignore
-*.o