HomeSort by relevance Sort by last modified time
    Searched refs:INT_PTR (Results 1 - 25 of 38) sorted by null

1 2

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_socket_types.h 13 typedef INT_PTR SOCKET;
  /external/lzma/CPP/7zip/UI/FileManager/
PasswordDialog.h 25 INT_PTR Create(HWND parentWindow = 0) { return CModalDialog::Create(IDD_PASSWORD, parentWindow); }
ComboDialog.h 25 INT_PTR Create(HWND parentWindow = 0) { return CModalDialog::Create(IDD_COMBO, parentWindow); }
OverwriteDialog.h 54 INT_PTR Create(HWND parent = 0)
ProgressDialog.h 136 INT_PTR Create(const UString &title, NWindows::CThread &thread, HWND wndParent = 0)
139 INT_PTR res = CModalDialog::Create(IDD_PROGRESS, wndParent);
ProgressDialog2.h 261 INT_PTR Create(const UString &title, NWindows::CThread &thread, HWND wndParent = 0);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fdi.h 202 typedef INT_PTR (DIAMONDAPI *PFNOPEN) (char *pszFile,int oflag,int pmode);
203 typedef UINT (DIAMONDAPI *PFNREAD) (INT_PTR hf,void *pv,UINT cb);
204 typedef UINT (DIAMONDAPI *PFNWRITE)(INT_PTR hf,void *pv,UINT cb);
205 typedef int (DIAMONDAPI *PFNCLOSE)(INT_PTR hf);
206 typedef __LONG32 (DIAMONDAPI *PFNSEEK) (INT_PTR hf,__LONG32 dist,int seektype);
208 #define FNOPEN(fn) INT_PTR DIAMONDAPI fn(char *pszFile,int oflag,int pmode)
209 #define FNREAD(fn) UINT DIAMONDAPI fn(INT_PTR hf,void *pv,UINT cb)
210 #define FNWRITE(fn) UINT DIAMONDAPI fn(INT_PTR hf,void *pv,UINT cb)
211 #define FNCLOSE(fn) int DIAMONDAPI fn(INT_PTR hf)
212 #define FNSEEK(fn) __LONG32 DIAMONDAPI fn(INT_PTR hf,__LONG32 dist,int seektype
    [all...]
fci.h 173 typedef INT_PTR (DIAMONDAPI *PFNFCIOPEN) (char *pszFile,int oflag,int pmode,int *err,void *pv);
174 typedef UINT (DIAMONDAPI *PFNFCIREAD) (INT_PTR hf,void *memory,UINT cb,int *err,void *pv);
175 typedef UINT (DIAMONDAPI *PFNFCIWRITE)(INT_PTR hf,void *memory,UINT cb,int *err,void *pv);
176 typedef int (DIAMONDAPI *PFNFCICLOSE)(INT_PTR hf,int *err,void *pv);
177 typedef __LONG32 (DIAMONDAPI *PFNFCISEEK) (INT_PTR hf,__LONG32 dist,int seektype,int *err,void *pv);
180 #define FNFCIOPEN(fn) INT_PTR DIAMONDAPI fn(char *pszFile,int oflag,int pmode,int *err,void *pv)
181 #define FNFCIREAD(fn) UINT DIAMONDAPI fn(INT_PTR hf,void *memory,UINT cb,int *err,void *pv)
182 #define FNFCIWRITE(fn) UINT DIAMONDAPI fn(INT_PTR hf,void *memory,UINT cb,int *err,void *pv)
183 #define FNFCICLOSE(fn) int DIAMONDAPI fn(INT_PTR hf,int *err,void *pv)
184 #define FNFCISEEK(fn) __LONG32 DIAMONDAPI fn(INT_PTR hf,__LONG32 dist,int seektype,int *err,void *pv
    [all...]
basetsd.h 47 __MINGW_EXTENSION typedef __int64 INT_PTR,*PINT_PTR;
53 typedef int INT_PTR,*PINT_PTR;
71 static __inline void *LongToHandle(const __LONG32 h) { return((void *) (INT_PTR) h); }
76 static __inline int PtrToInt(const void *p) { return((int) (INT_PTR) p); }
78 static __inline void *IntToPtr(const int i) { return((void *)(INT_PTR)i); }
112 #define PtrToInt(p) ((INT)(INT_PTR) (p))
115 #define IntToPtr(i) ((VOID *)(INT_PTR)((int)i))
138 #define MAXINT_PTR ((INT_PTR)(MAXUINT_PTR >> 1))
windef.h 184 typedef INT_PTR (WINAPI *FARPROC)();
185 typedef INT_PTR (WINAPI *NEARPROC)();
186 typedef INT_PTR (WINAPI *PROC)();
correg.h 31 typedef INT_PTR mdScope;
34 typedef INT_PTR mdToken;
35 typedef INT_PTR mdModule;
36 typedef INT_PTR mdTypeDef;
37 typedef INT_PTR mdInterfaceImpl;
38 typedef INT_PTR mdTypeRef;
39 typedef INT_PTR mdNamespace;
40 typedef INT_PTR mdCustomValue;
41 typedef INT_PTR mdResource;
42 typedef INT_PTR mdCocatdef
    [all...]
prsht.h 315 WINCOMMCTRLAPI INT_PTR WINAPI PropertySheetA(LPCPROPSHEETHEADERA);
316 WINCOMMCTRLAPI INT_PTR WINAPI PropertySheetW(LPCPROPSHEETHEADERW);
  /external/lzma/CPP/Windows/Control/
PropertyPage.h 13 INT_PTR APIENTRY ProperyPageProcedure(HWND dialogHWND, UINT message, WPARAM wParam, LPARAM lParam);
44 INT_PTR MyPropertySheet(const CObjectVector<CPageInfo> &pagesInfo, HWND hwndParent, const UString &title);
Dialog.h 141 INT_PTR Create(LPCTSTR templateName, HWND parentWindow);
142 INT_PTR Create(UINT resID, HWND parentWindow) { return Create(MAKEINTRESOURCEW(resID), parentWindow); }
144 INT_PTR Create(LPCWSTR templateName, HWND parentWindow);
147 bool End(INT_PTR result) { return BOOLToBool(::EndDialog(_window, result)); }
PropertyPage.cpp 19 static INT_PTR APIENTRY MyProperyPageProcedure(HWND dialogHWND, UINT message, WPARAM wParam, LPARAM lParam)
47 INT_PTR MyPropertySheet(const CObjectVector<CPageInfo> &pagesInfo, HWND hwndParent, const UString &title)
Dialog.cpp 19 static INT_PTR APIENTRY DialogProcedure(HWND dialogHWND, UINT message, WPARAM wParam, LPARAM lParam)
202 INT_PTR CModalDialog::Create(LPCTSTR templateName, HWND parentWindow)
233 INT_PTR CModalDialog::Create(LPCWSTR templateName, HWND parentWindow)
  /external/lzma/CPP/7zip/UI/GUI/
ExtractDialog.h 94 INT_PTR Create(HWND aWndParent = 0)
  /external/google-breakpad/src/client/windows/tests/crash_generation_app/
crash_generation_app.cc 74 INT_PTR CALLBACK About(HWND, UINT, WPARAM, LPARAM);
446 INT_PTR CALLBACK About(HWND dlg,
453 return (INT_PTR)TRUE;
458 return (INT_PTR)TRUE;
463 return (INT_PTR)FALSE;
  /sdk/find_java2/src/
WinLauncher2App.cpp 125 INT_PTR nResponse = dlg.DoModal();
  /sdk/find_java2/FindJava2/
FindJava2.cpp 137 INT_PTR nResponse = dlg.DoModal();
  /external/clang/test/SemaCXX/
conversion-function.cpp 42 typedef INT* INT_PTR;
49 operator INT_PTR*(); // expected-error{{conversion function cannot be redeclared}}
  /prebuilts/misc/common/swig/include/2.0.11/
windows.i 97 typedef __w64 int INT_PTR, *PINT_PTR;
  /external/tpm2/
TcpServer.c 173 int PortNumber = (int)(INT_PTR) port;
228 (LPVOID) (INT_PTR) port, 0, (LPDWORD)&ThreadId);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
gthr-default.h 127 return (objc_thread_t) (INT_PTR) thread_id;
208 return (objc_thread_t) (INT_PTR) GetCurrentThreadId ();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
gthr-default.h 127 return (objc_thread_t) (INT_PTR) thread_id;
208 return (objc_thread_t) (INT_PTR) GetCurrentThreadId ();

Completed in 2914 milliseconds

1 2