JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
WinTools.h
Go to the documentation of this file.
1#pragma once
2
8#ifdef WIN32
9#pragma warning(disable:4005)
10#pragma warning(disable:4996)
11#endif
12
13#ifndef _CRT_SECURE_NO_WARNINGS
14#define _CRT_SECURE_NO_WARNINGS
15#endif
16
17#ifndef _WIN32_WINNT
18#define _WIN32_WINNT _WIN32_WINNT_MAXVER
19#endif
20
21//
22#include <afxmt.h>
23
24#include "WinBaseResource.h"
25#include "BasicLib.h"
26
27#include <userenv.h>
28#include <imagehlp.h>
29#include <locale.h>
30
31// Locale
32#define JBXWL_LOCALE_US "English"
33#define JBXWL_LOCALE_JP "Japanese"
34
35// Windows メッセージ
36#define JBXWL_WM_USER WM_USER + 9000
37
38#define JBXWL_WM_NETWORK_EVENT JBXWL_WM_USER + 100
39#define JBXWL_WM_NETWORK_OPEN JBXWL_WM_USER + 101
40#define JBXWL_WM_NETWORK_CLOSE JBXWL_WM_USER + 102
41#define JBXWL_WM_SPEECH_EVENT JBXWL_WM_USER + 110
42
43//
44namespace jbxwl {
45
46
48// Unicode
49
50// 変換
52Buffer tc2Buffer(TCHAR* tchar, int size=-1);
53Buffer ts2Buffer(LPCTSTR str, int size=-1);
54Buffer String2Buffer(CString str);
55
56CString mbs2ts(char* str);
57inline char* ts2mbs(LPCTSTR str) // 要 free. NULL は絶対に返ってこない
58{
59 Buffer buf = ts2Buffer(str);
60 return (char*)buf.buf;
61}
62
63//
64int copy_ts2Buffer(LPCTSTR str, Buffer* buf);
65int cat_ts2Buffer (LPCTSTR str, Buffer* buf);
66
67// File
68unsigned long int file_size_t(LPCTSTR fn);
69BOOL file_exist_t (LPCTSTR fn);
70CString get_file_name_t (LPCTSTR str);
71CString make_file_path_t(LPCTSTR str);
72CString cut_file_extension_t(LPCTSTR str);
73
74#define get_file_path_t(p) make_file_path_t((p))
75#define del_file_extension_t(p) cut_file_extension_t((p))
76
77tList* read_index_tList_file_t(LPCTSTR fn, char cc);
78tList* get_dir_files_t(LPCTSTR dirn);
79tList* get_dir_files_rcsv_t(LPCTSTR dirn);
80
81// Tools
82CString numbering_name_t(LPCTSTR fmt, int n);
83CString get_tstr_param_tList(tList* lt, char* key, LPCTSTR dflt);
84
85// locale
86void setResourceLocale(void); // リソース IDS_STR_LOCALE が示すロケールに設定する.
87CString getResourceLocale(void); // リソース IDS_STR_LOCALE が示すロケールを返す.
88void setSystemLocale(LPCTSTR locale=_T("")); // システムのロケールを設定する.
89
90// utf-8/sjis
91Buffer utf8_to_sjis_byStr(CString str);
92Buffer utf8_to_sjis(void* ptr, size_t len);
93Buffer sjis_to_utf8_byStr(CString str);
94Buffer sjis_to_utf8(void* ptr, size_t len);
95
96
98// User
99//
100CString GetCurrentUserHomeFolder(void);
101CString GetDefaultUserHomeFolder(void);
102CString MakeWorkingFolderPath(LPCTSTR fnm, BOOL local, LPCTSTR dir=NULL, BOOL make=FALSE);
103
104CString GetProgramFolder(void);
105char* GetProgramFolderA(void);
106
107CString GetCurrentFolder(void);
108
109
111// Message
112
113// 自ウィンドウにメッセージを送る.
114void SendWinMessage(UINT mesg, WPARAM wparam=NULL, LPARAM lparam=NULL);
115
116
118// Dialog
119
120// メッセージ Dialog
121int MessageDLG(LPCTSTR ttl, LPCTSTR msg, UINT type, HWND hWnd);
122
123
125// Clipboard
126//
127void SaveToClipboard_byStr(CString data);
128void SaveToClipboard(void* ptr, size_t len);
129
130
132// Key Event
133
140
141//
142void SendKeyAction(WORD key, SENDKEY_Action action);
143
144inline void SendKeyActionTap(WORD key) { SendKeyAction(key, SENDKEY_TapAction);}
145void SendKeyActionTap(WORD key1, WORD key2);
146void SendKeyActionTap(WORD key1, WORD key2, WORD key3);
147
148//
149inline void SendKeyActionTapAlt(WORD key) { SendKeyActionTap(VK_LMENU, key);}
150inline void SendKeyActionTapShift(WORD key){ SendKeyActionTap(VK_LSHIFT, key);}
151inline void SendKeyActionTapCtrl(WORD key) { SendKeyActionTap(VK_LCONTROL, key);}
152
153//
154BOOL DoSystemKeyAction(LPCTSTR com, BOOL child=FALSE);
155
156
158// Mouse Cursor
159
160TCHAR* GetMouseCursorType(void);
161
162
164// Time
165
166// 1分計 0-59999ms を返す.
167unsigned short GetMsecondsTimer(void);
168unsigned short GetMsecondsLapTimer(unsigned short pm, unsigned short* nt=NULL);
169
170
172// Resource
173
174inline CString LoadString_byID(UINT id)
175{
176 CString mesg;
177 mesg.LoadString(id);
178 return mesg;
179}
180
181
183// Event Handler クラス
184
186{
187public:
188 EventHandler(void);
189 EventHandler(BOOL manual, BOOL initial=FALSE, LPCTSTR hname=NULL, LPSECURITY_ATTRIBUTES sec=NULL);
190
191 virtual ~EventHandler(void) { clear();}
192
193 HANDLE m_handle;
195
196public:
197 HANDLE create(BOOL manual=TRUE, BOOL initial=FALSE, LPCTSTR hname=NULL, LPSECURITY_ATTRIBUTES sec=NULL);
198 void clear(void);
199
200 BOOL set(void) { return SetEvent(m_handle);}
201
202 BOOL wait(DWORD msec=INFINITE);
203 BOOL wait(HANDLE handle, DWORD msec=INFINITE);
204};
205
206
207
209// Process/Thread
210
211void WinSystem(char* command, DWORD flag, BOOL wait);
212
213
215//
216
217//
218// SafeRelease(), DXRELEASE() [Dx9.h] と同じ
219//
220template <class T> inline void releaseNull(T*& ptr)
221{
222 if (!jbxl::isNull(ptr)) {
223 ptr->Release();
224 ptr = NULL;
225 }
226}
227
228
229template <class T> inline void deleteNull(T*& ptr)
230{
231 if (!jbxl::isNull(ptr)) {
232 delete ptr;
233 ptr = NULL;
234 }
235}
236
237
238} // namespace
239
240
241/*
242HRESULT Code: http://support.microsoft.com/kb/186063/ja
243
2440x8000FFFF Catastrophic failure.
2450x8007000D The Data is invalid.
2460x80004001 Not implemented.
2470x8007000E Ran out of memory.
2480x80070057 One or more arguments are invalid.
2490x80004002 No such interface supported.
2500x80004003 Invalid pointer.
2510x80070006 Invalid handle.
2520x80004004 Operation aborted.
2530x80004005 Unspecified error.
2540x80070005 General access denied error.
2550x80000001 Not implemented.
2560x80000002 Ran out of memory.
2570x80000003 One or more arguments are invalid.
2580x80000004 No such interface supported.
2590x80000005 Invalid pointer.
2600x80000006 Invalid handle.
2610x80000007 Operation aborted.
2620x80000008 Unspecified error.
2630x80000009 General access denied error.
2640x8000000A The data necessary to complete this operation not yet available.
2650x80004006 Thread local storage failure.
2660x80004007 Get shared memory allocator failure.
2670x80004008 Get memory allocator failure.
2680x84009 Unable to initialize class cache.
2690x8400A Unable to initialize RPC services.
2700x8000400B Cannot set thread local storage channel control.
2710x8000400C Could not allocate thread local storage channel control.
2720x8000400D The user supplied memory allocator is unacceptable.
2730x8000400E The OLE service mutex already exists.
2740x8000400F The OLE service file mapping already exists.
2750x80004010 Unable to map view of file for OLE service.
2760x80004011 Failure attempting to launch OLE service.
2770x80004012 There was an attempt to call CoInitialize a second time while single threaded.
2780x80004013 A Remote activation was necessary but was not allowed.
2790x80004014 A Remote activation was necessary but the server name provided was invalid.
2800x80004015 The class is configured to run as a security id different from the caller.
2810x80004016 Use of Ole1 services requiring DDE windows is disabled.
2820x80004017 A RunAs specification must be A RunAs specification must be <domain name><user name> or simply <user name>.
2830x80004018 The server process could not be started. The pathname may be incorrect.
2840x80004019 The server process could not be started as the configured identity. The pathname may be incorrect or unavailable.
2850x8000401A The server process could not be started because the configured identity is incorrect. Check the username and password.
2860x8000401B The client is not allowed to launch this server.
2870x8000401C The service providing this server could not be started.
2880x8000401D This computer was unable to communicate with the computer providing the server.
2890x8000401E The server did not respond after being launched.
2900x8000401F The registration information for this server is inconsistent or incomplete.
2910x80004020 The registration information for this interface is inconsistent or incomplete.
2920x80004021 The operation attempted is not supported.
2930x80040000 Invalid OLEVERB structure.
2940x80040001 Invalid advise flags.
2950x80040002 Can't enumerate any more, because the associated data is missing.
2960x80040003 This implementation doesn't take advises.
2970x80040004 There is no connection for this connection ID.
2980x80040005 Need to run the object to perform this operation.
2990x80040006 There is no cache to operate on.
3000x80040007 Uninitialized object.
3010x80040008 Linked object's source class has changed.
3020x80040009 Not able to get the moniker of the object.
3030x8004000A Not able to bind to the source.
3040x8004000B Object is static; operation not allowed.
3050x8004000C User cancelled out of save dialog.
3060x8004000D Invalid rectangle.
3070x8004000E compobj.dll is too old for the ole2.dll initialized.
3080x8004000F Invalid window handle.
3090x80040010 Object is not in any of the inplace active states.
3100x80040011 Not able to convert object.
3110x80040012 Not able to perform the operation because object is not given storage yet.
3120x80040064 Invalid FORMATETC structure.
3130x80040065 Invalid DVTARGETDEVICE structure.
3140x80040066 Invalid STDGMEDIUM structure.
3150x80040067 Invalid STATDATA structure.
3160x80040068 Invalid lindex.
3170x80040069 Invalid tymed.
3180x8004006A Invalid clipboard format.
3190x8004006B Invalid aspect(s).
3200x8004006C tdSize parameter of the DVTARGETDEVICE structure is invalid.
3210x8004006D Object doesn't support IViewObject interface.
3220x80040100 Trying to revoke a drop target that has not been registered.
3230x80040101 This window has already been registered as a drop target.
3240x80040102 Invalid window handle.
3250x80040110 Class does not support aggregation (or class object is remote).
3260x80040111 ClassFactory cannot supply requested class.
3270x80040140 Error drawing view.
3280x80040150 Could not read key from registry.
3290x80040151 Could not write key to registry.
3300x80040152 Could not find the key in the registry.
3310x80040153 Invalid value for registry.
3320x80040154 Class not registered.
3330x80040155 Interface not registered.
3340x80040170 Cache not updated.
3350x80040180 No verbs for OLE object.
3360x80040181 Invalid verb for OLE object.
3370x800401A0 Undo is not available.
3380x800401A1 Space for tools is not available.
3390x800401C0 OLESTREAM Get method failed.
3400x800401C1 OLESTREAM Put method failed.
3410x800401C2 Contents of the OLESTREAM not in correct format.
3420x800401C3 There was an error in a Windows GDI call while converting the bitmap to a DIB.
3430x800401C4 Contents of the IStorage not in correct format.
3440x800401C5 Contents of IStorage is missing one of the standard streams.
3450x800401C6 There was an error in a Windows GDI call while converting the DIB to a bitmap.
3460x800401D0 OpenClipboard Failed.
3470x800401D1 EmptyClipboard Failed.
3480x800401D2 SetClipboard Failed.
3490x800401D3 Data on clipboard is invalid.
3500x800401D4 CloseClipboard Failed.
3510x800401E0 Moniker needs to be connected manually.
3520x800401E1 Operation exceeded deadline.
3530x800401E2 Moniker needs to be generic.
3540x800401E3 Operation unavailable.
3550x800401E4 Invalid syntax.
3560x800401E5 No object for moniker.
3570x800401E6 Bad extension for file.
3580x800401E7 Intermediate operation failed.
3590x800401E8 Moniker is not bindable.
3600x800401E9 Moniker is not bound.
3610x800401EA Moniker cannot open file.
3620x800401EB User input required for operation to succeed.
3630x800401EC Moniker class has no inverse.
3640x800401ED Moniker does not refer to storage.
3650x800401EE No common prefix.
3660x800401EF Moniker could not be enumerated.
3670x800401F0 CoInitialize has not been called.
3680x800401F1 CoInitialize has already been called.
3690x800401F2 Class of object cannot be determined.
3700x800401F3 Invalid class string.
3710x800401F4 Invalid interface string.
3720x800401F5 Application not found.
3730x800401F6 Application cannot be run more than once.
3740x800401F7 Some error in application program.
3750x800401F8 DLL for class not found.
3760x800401F9 Error in the DLL.
3770x800401FA Wrong OS or OS version for application.
3780x800401FB Object is not registered.
3790x800401FC Object is already registered.
3800x800401FD Object is not connected to server.
3810x800401FE Application was launched but it didn't register a class factory.
3820x800401FF Object has been released.
3830x80080001 Attempt to create a class object failed.
3840x80080002 OLE service could not bind object.
3850x80080003 RPC communication failed with OLE service.
3860x80080004 Bad path to object.
3870x80080005 Server execution failed.
3880x80080006 OLE service could not communicate with the object server.
3890x80080007 Moniker path could not be normalized.
3900x80080008 Object server is stopping when OLE service contacts it.
3910x80080009 An invalid root block pointer was specified.
3920x80080010 An allocation chain contained an invalid link pointer.
3930x80080011 The requested allocation size was too large.
3940x80020001 Unknown interface.
3950x80020003 Member not found.
3960x80020004 Parameter not found.
3970x80020005 Type mismatch.
3980x80020006 Unknown name.
3990x80020007 No named arguments.
4000x80020008 Bad variable type.
4010x80020009 Exception occurred.
4020x8002000A Out of present range.
4030x8002000B Invalid index.
4040x8002000C Unknown language.
4050x8002000D Memory is locked.
4060x8002000E Invalid number of parameters.
4070x8002000F Parameter not optional.
4080x80020010 Invalid callee.
4090x80020011 Does not support a collection.
4100x80028016 Buffer too small.
4110x80028018 Old format or invalid type library.
4120x80028019 Old format or invalid type library.
4130x8002801C Error accessing the OLE registry.
4140x8002801D Library not registered.
4150x80028027 Bound to unknown type.
4160x80028028 Qualified name disallowed.
4170x80028029 Invalid forward reference, or reference to uncompiled type.
4180x8002802A Type mismatch.
4190x8002802B Element not found.
4200x8002802C Ambiguous name.
4210x8002802D Name already exists in the library.
4220x8002802E Unknown LCID.
4230x8002802F Function not defined in specified DLL.
4240x800288BD Wrong module kind for the operation.
4250x800288C5 Size may not exceed 64K.
4260x800288C6 Duplicate ID in inheritance hierarchy.
4270x800288CF Incorrect inheritance depth in standard OLE hmember.
4280x80028CA0 Type mismatch.
4290x80028CA1 Invalid number of arguments.
4300x80028CA2 I/O Error.
4310x80028CA3 Error creating unique tmp file.
4320x80029C4A Error loading type library/DLL.
4330x80029C83 Inconsistent property functions.
4340x80029C84 Circular dependency between types/modules.
4350x80030001 Unable to perform requested operation.
4360x80030002 %1 could not be found.
4370x80030003 The path %1 could not be found.
4380x80030004 There are insufficient resources to open another file.
4390x80030005 Access Denied.
4400x80030006 Attempted an operation on an invalid object.
4410x80030008 There is insufficient memory available to complete operation.
4420x80030009 Invalid pointer error.
4430x80030012 There are no more entries to return.
4440x80030013 Disk is write-protected.
4450x80030019 An error occurred during a seek operation.
4460x8003001D A disk error occurred during a write operation.
4470x8003001E A disk error occurred during a read operation.
4480x80030020 A share violation has occurred.
4490x80030021 A lock violation has occurred.
4500x80030050 %1 already exists.
4510x80030057 Invalid parameter error.
4520x80030070 There is insufficient disk space to complete operation.
4530x800300F0 Illegal write of non-simple property to simple property set.
4540x800300FA An API call exited abnormally.
4550x800300FB The file %1 is not a valid compound file.
4560x800300FC The name %1 is not valid.
4570x800300FD An unexpected error occurred.
4580x800300FE That function is not implemented.
4590x800300FF Invalid flag error.
4600x80030100 Attempted to use an object that is busy.
4610x80030101 The storage has been changed since the last commit.
4620x80030102 Attempted to use an object that has ceased to exist.
4630x80030103 Can't save.
4640x80030104 The compound file %1 was produced with an incompatible version of storage.
4650x80030105 The compound file %1 was produced with a newer version of storage.
4660x80030106 Share.exe or equivalent is required for operation.
4670x80030107 Illegal operation called on non-file based storage.
4680x80030108 Illegal operation called on object with extant marshallings.
4690x80030109 The docfile has been corrupted.
4700x80030110 OLE32.DLL has been loaded at the wrong address.
4710x80030201 The file download was aborted abnormally. The file is incomplete.
4720x80030202 The file download has been terminated.
4730x80010001 Call was rejected by callee.
4740x80010002 Call was canceled by the message filter.
4750x80010003 The caller is dispatching an intertask SendMessage call and cannot call out via PostMessage.
4760x80010004 The caller is dispatching an asynchronous call and cannot make an outgoing call on behalf of this call.
4770x80010005 It is illegal to call out while inside message filter.
4780x80010006 The connection terminated or is in a bogus state and cannot be used any more. Other connections are still valid.
4790x80010007 The callee (server [not server application]) is not available and disappeared; all connections are invalid. The call may have executed.
4800x80010008 The caller (client) disappeared while the callee (server) was processing a call.
4810x80010009 The data packet with the marshalled parameter data is incorrect.
4820x8001000A The call was not transmitted properly; the message queue was full and was not emptied after yielding.
4830x8001000B The client (caller) cannot marshal the parameter data - low memory, etc.
4840x8001000C The client (caller) cannot unmarshal the return data - low memory, etc.
4850x8001000D The server (callee) cannot marshal the return data - low memory, etc.
4860x8001000E The server (callee) cannot unmarshal the parameter data - low memory, etc.
4870x8001000F Received data is invalid; could be server or client data.
4880x80010010 A particular parameter is invalid and cannot be (un)marshalled.
4890x80010011 There is no second outgoing call on same channel in DDE conversation.
4900x80010012 The callee (server [not server application]) is not available and disappeared; all connections are invalid. The call did not execute.
4910x80010100 System call failed.
4920x80010101 Could not allocate some required resource (memory, events, ...)
4930x80010102 Attempted to make calls on more than one thread in single threaded mode.
4940x80010103 The requested interface is not registered on the server object.
4950x80010104 RPC could not call the server or could not return the results of calling the server.
4960x80010105 The server threw an exception.
4970x80010106 Cannot change thread mode after it is set.
4980x80010107 The method called does not exist on the server.
4990x80010108 The object invoked has disconnected from its clients.
5000x80010109 The object invoked chose not to process the call now. Try again later.
5010x8001010A The message filter indicated that the application is busy.
5020x8001010B The message filter rejected the call.
5030x8001010C A call control interfaces was called with invalid data.
5040x8001010D An outgoing call cannot be made since the application is dispatching an input-synchronous call.
5050x8001010E The application called an interface that was marshalled for a different thread.
5060x8001010F CoInitialize has not been called on the current thread.
5070x80010110 The version of OLE on the client and server machines does not match.
5080x80010111 OLE received a packet with an invalid header.
5090x80010112 OLE received a packet with an invalid extension.
5100x80010113 The requested object or interface does not exist.
5110x80010114 The requested object does not exist.
5120x80010115 OLE has sent a request and is waiting for a reply.
5130x80010116 OLE is waiting before retrying a request.
5140x80010117 Call context cannot be accessed after call completed.
5150x80010118 Impersonate on unsecured calls is not supported.
5160x80010119 Security must be initialized before any interfaces are marshalled or unmarshalled. It cannot be changed once initialized.
5170x8001011A No security packages are installed on this machine or the user is not logged on or there are no compatible security packages between the client and server.
5180x8001011B Access is denied.
5190x8001011C Remote calls are not allowed for this process.
5200x8001011D The marshalled interface data packet (OBJREF) has an invalid or unknown format.
5210x8001FFFF An internal error occurred.
5220x80090001 Bad UID.
5230x80090002 Bad Hash.
5240x80090003 Bad Key.
5250x80090004 Bad Length.
5260x80090005 Bad Data.
5270x80090006 Invalid Signature.
5280x80090007 Bad Version of provider.
5290x80090008 Invalid algorithm specified.
5300x80090009 Invalid flags specified.
5310x8009000A Invalid type specified.
5320x8009000B Key not valid for use in specified state.
5330x8009000C Hash not valid for use in specified state.
5340x8009000D Key does not exist.
5350x8009000E Insufficient memory available for the operation.
5360x8009000F Object already exists.
5370x80090010 Access denied.
5380x80090011 Object was not found.
5390x80090012 Data already encrypted.
5400x80090013 Invalid provider specified.
5410x80090014 Invalid provider type specified.
5420x80090015 Provider's public key is invalid.
5430x80090016 Keyset does not exist.
5440x80090017 Provider type not defined.
5450x80090018 Provider type as registered is invalid.
5460x80090019 The keyset is not defined.
5470x8009001A Keyset as registered is invalid.
5480x8009001B Provider type does not match registered value.
5490x8009001C The digital signature file is corrupt.
5500x8009001D Provider DLL failed to initialize correctly.
5510x8009001E Provider DLL could not be found.
5520x8009001F The Keyset parameter is invalid.
5530x80090020 An internal error occurred.
5540x80090021 A base error occurred.
5550x800B0001 The specified trust provider is not known on this system.
5560x800B0002 The trust verification action specified is not supported by the specified trust provider.
5570x800B0003 The form specified for the subject is not one supported or known by the specified trust provider.
5580x800B0004 The subject is not trusted for the specified action.
5590x800B0005 Error due to problem in ASN.1 encoding process.
5600x800B0006 Error due to problem in ASN.1 decoding process.
5610x800B0007 Reading / writing Extensions where Attributes are appropriate, and visa versa.
5620x800B0008 Unspecified cryptographic failure.
5630x800B0009 The size of the data could not be determined.
5640x800B000A The size of the indefinite-sized data could not be determined.
5650x800B000B This object does not read and write self-sizing data.
5660x800B0100 No signature was present in the subject.
5670x800B0101 A required certificate is not within its validity period.
5680x800B0102 The validity periods of the certification chain do not nest correctly.
5690x800B0103 A certificate that can only be used as an end-entity is being used as a CA or visa versa.
5700x800B0104 A path length constraint in the certification chain has been violated.
5710x800B0105 An extension of unknown type that is labeled 'critical' is present in a certificate.
5720x800B0106 A certificate is being used for a purpose other than that for which it is permitted.
5730x800B0107 A parent of a given certificate in fact did not issue that child certificate.
5740x800B0108 A certificate is missing or has an empty value for an important field, such as a subject or issuer name.
5750x800B0109 A certification chain processed correctly, but terminated in a root certificate which isn't trusted by the trust provider.
5760x800B010A A chain of certs didn't chain as they should in a certain application of chaining.
577*/
HANDLE create(BOOL manual=TRUE, BOOL initial=FALSE, LPCTSTR hname=NULL, LPSECURITY_ATTRIBUTES sec=NULL)
Definition WinTools.cpp:868
virtual ~EventHandler(void)
Definition WinTools.h:191
BOOL wait(DWORD msec=INFINITE)
Definition WinTools.cpp:886
CString make_file_path_t(LPCTSTR str)
Definition WinTools.cpp:295
CString GetDefaultUserHomeFolder(void)
Definition WinTools.cpp:475
SENDKEY_Action
Definition WinTools.h:135
@ SENDKEY_UpAction
Definition WinTools.h:138
@ SENDKEY_TapAction
Definition WinTools.h:136
@ SENDKEY_DownAction
Definition WinTools.h:137
Buffer utf8_to_sjis(void *ptr, size_t len)
Definition WinTools.cpp:196
tList * read_index_tList_file_t(LPCTSTR fn, char cc)
Definition WinTools.cpp:387
CString get_file_name_t(LPCTSTR str)
Definition WinTools.cpp:277
void SendKeyActionTap(WORD key)
Definition WinTools.h:144
char * GetProgramFolderA(void)
Definition WinTools.cpp:519
int cat_ts2Buffer(LPCTSTR str, Buffer *buf)
Definition WinTools.cpp:161
char * ts2mbs(LPCTSTR str)
Definition WinTools.h:57
void SendKeyActionTapAlt(WORD key)
Definition WinTools.h:149
int copy_ts2Buffer(LPCTSTR str, Buffer *buf)
Definition WinTools.cpp:136
Buffer sjis_to_utf8_byStr(CString str)
Definition WinTools.cpp:216
BOOL DoSystemKeyAction(LPCTSTR com, BOOL child=FALSE)
Definition WinTools.cpp:671
unsigned short GetMsecondsLapTimer(unsigned short pm, unsigned short *nt=NULL)
Definition WinTools.cpp:799
void SendKeyActionTapShift(WORD key)
Definition WinTools.h:150
CString mbs2ts(char *str)
Definition WinTools.cpp:79
tList * get_dir_files_rcsv_t(LPCTSTR dirn)
Definition WinTools.cpp:370
void SendKeyAction(WORD key, SENDKEY_Action action)
Definition WinTools.cpp:628
void setSystemLocale(LPCTSTR locale=_T(""))
Definition WinTools.cpp:437
CString MakeWorkingFolderPath(LPCTSTR fnm, BOOL local, LPCTSTR dir=NULL, BOOL make=FALSE)
Definition WinTools.cpp:487
void deleteNull(T *&ptr)
Definition WinTools.h:229
void WinSystem(char *command, DWORD flag, BOOL wait)
Definition WinTools.cpp:818
Buffer ts2Buffer(LPCTSTR str, int size=-1)
Definition WinTools.cpp:56
CString GetCurrentUserHomeFolder(void)
Definition WinTools.cpp:460
void SaveToClipboard_byStr(CString data)
Definition WinTools.cpp:587
Buffer utf8_to_sjis_byStr(CString str)
Definition WinTools.cpp:185
void setResourceLocale(void)
Definition WinTools.cpp:429
CString get_tstr_param_tList(tList *lt, char *key, LPCTSTR dflt)
Definition WinTools.cpp:413
int MessageDLG(LPCTSTR ttl, LPCTSTR msg, UINT type, HWND hWnd)
Definition WinTools.cpp:576
CString GetCurrentFolder(void)
Definition WinTools.cpp:539
void SendWinMessage(UINT mesg, WPARAM wparam=NULL, LPARAM lparam=NULL)
Definition WinTools.cpp:561
CString GetProgramFolder(void)
Definition WinTools.cpp:508
tList * get_dir_files_t(LPCTSTR dirn)
Definition WinTools.cpp:338
void SendKeyActionTapCtrl(WORD key)
Definition WinTools.h:151
void releaseNull(T *&ptr)
Definition WinTools.h:220
CString getResourceLocale(void)
Definition WinTools.cpp:444
unsigned short GetMsecondsTimer(void)
Definition WinTools.cpp:778
void SaveToClipboard(void *ptr, size_t len)
Definition WinTools.cpp:595
Buffer tc2Buffer(TCHAR *tchar, int size=-1)
locale が正しくないと,日本語の変換は失敗する. ex.) setlocale(LC_CTYPE,"jpn") or setSystemLocale()
Definition WinTools.cpp:34
Buffer String2Buffer(CString str)
Definition WinTools.cpp:24
CString numbering_name_t(LPCTSTR fmt, int n)
Definition WinTools.cpp:403
BOOL file_exist_t(LPCTSTR fn)
Definition WinTools.cpp:258
CString LoadString_byID(UINT id)
Definition WinTools.h:174
TCHAR * GetMouseCursorType(void)
Definition WinTools.cpp:749
CString cut_file_extension_t(LPCTSTR str)
Definition WinTools.cpp:317
unsigned long int file_size_t(LPCTSTR fn)
Definition WinTools.cpp:250
Buffer sjis_to_utf8(void *ptr, size_t len)
Definition WinTools.cpp:227