亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? pmapi.h

?? u-boot源代碼
?? H
?? 第 1 頁 / 共 3 頁
字號:
 * calls to malloc() and free(). If you need to keep track of exactly how * much memory is currently allocated, you need to call this function to * get the total amount of memory available and then keep track of * the available memory every time you call malloc() and free(). */void    PMAPI PM_availableMemory(ulong *physical,ulong *total);/* Return the address of a global VESA real mode transfer buffer for use * by applications. */void *  PMAPI PM_getVESABuf(uint *len,uint *rseg,uint *roff);/* Handle fatal error conditions */void    PMAPI PM_fatalError(const char *msg);/* Function to set a cleanup error handler called when PM_fatalError * is called. This allows us to the console back into a normal state * if we get a failure from deep inside a BPD file. This function is * not exported to BPD files, and is only used by code compiled for the * OS. */void    PMAPI PM_setFatalErrorCleanup(PM_fatalCleanupHandler cleanup);/* Return the OS type flag as defined in <drvlib/os/os.h> */long    PMAPI PM_getOSType(void);/* Functions to set a VBE bank via an Int 10h */void    PMAPI PM_setBankA(int bank);void    PMAPI PM_setBankAB(int bank);void    PMAPI PM_setCRTStart(int x,int y,int waitVRT);/* Return the current working directory */char *  PMAPI PM_getCurrentPath(char *path,int maxLen);/* Return paths to the VBE/AF and Nucleus directories */const char * PMAPI PM_getVBEAFPath(void);const char * PMAPI PM_getNucleusPath(void);const char * PMAPI PM_getNucleusConfigPath(void);/* Find the path to a binary portable DLL */void    PMAPI PM_setLocalBPDPath(const char *path);ibool   PMAPI PM_findBPD(const char *dllname,char *bpdpath);/* Returns the drive letter of the boot drive for DOS, OS/2 and Windows */char    PMAPI PM_getBootDrive(void);/* Return a network unique machine identifier as a string */const char * PMAPI PM_getUniqueID(void);/* Return the network machine name as a string */const char * PMAPI PM_getMachineName(void);/* Functions to install and remove the virtual linear framebuffer * emulation code. For unsupported DOS extenders and when running under * a DPMI host like Windows or OS/2, this function will return a NULL. */ibool   PMAPI VF_available(void);void *  PMAPI VF_init(ulong baseAddr,int bankSize,int codeLen,void *bankFunc);void    PMAPI VF_exit(void);/* Functions to wait for a keypress and read a key for command line * environments such as DOS, Win32 console and Unix. */int     PMAPI PM_kbhit(void);int     PMAPI PM_getch(void);/* Functions to create either a fullscreen or windowed console on the * desktop, and to allow the resolution of fullscreen consoles to be * changed on the fly without closing the console. For non-windowed * environments (such as a Linux or OS/2 fullscreen console), these * functions enable console graphics mode and restore console text mode. * * The suspend application callback is used to allow the application to * save the state of the fullscreen console mode to allow temporary * switching to another console or back to the regular GUI desktop. It * is also called to restore the fullscreen graphics state after the * fullscreen console regains the focus. * * The device parameter allows for the console to be opened on a different * display controllers (0 is always the primary controller). */PM_HWND PMAPI PM_openConsole(PM_HWND hwndUser,int device,int xRes,int yRes,int bpp,ibool fullScreen);int     PMAPI PM_getConsoleStateSize(void);void    PMAPI PM_saveConsoleState(void *stateBuf,PM_HWND hwndConsole);void    PMAPI PM_setSuspendAppCallback(PM_saveState_cb saveState);void    PMAPI PM_restoreConsoleState(const void *stateBuf,PM_HWND hwndConsole);void    PMAPI PM_closeConsole(PM_HWND hwndConsole);/* Functions to modify OS console information */void    PMAPI PM_setOSCursorLocation(int x,int y);void    PMAPI PM_setOSScreenWidth(int width,int height);/* Function to emable Intel PPro/PII write combining */int     PMAPI PM_enableWriteCombine(ulong base,ulong length,uint type);int     PMAPI PM_enumWriteCombine(PM_enumWriteCombine_t callback);/* Function to add a path separator to the end of a filename (if not present) */void    PMAPI PM_backslash(char *filename);/* Routines to lock and unlock regions of memory under a virtual memory * environment. These routines _must_ be used to lock all hardware * and mouse interrupt handlers installed, _AND_ any global data that * these handler manipulate, so that they will always be present in memory * to handle the incoming interrupts. * * Note that it is important to call the correct routine depending on * whether the area being locked is code or data, so that under 32 bit * PM we will get the selector value correct. */int     PMAPI PM_lockDataPages(void *p,uint len,PM_lockHandle *lockHandle);int     PMAPI PM_unlockDataPages(void *p,uint len,PM_lockHandle *lockHandle);int     PMAPI PM_lockCodePages(__codePtr p,uint len,PM_lockHandle *lockHandle);int     PMAPI PM_unlockCodePages(__codePtr p,uint len,PM_lockHandle *lockHandle);/* Routines to install and remove Real Time Clock interrupt handlers. The * frequency of the real time clock can be changed by calling * PM_setRealTimeClockFrequeny, and the value can be any power of 2 value * from 2Hz to 8192Hz. * * Note that you _must_ lock the memory containing the interrupt * handlers with the PM_lockPages() function otherwise you may encounter * problems in virtual memory environments. * * NOTE: User space versions of the PM library should fail these functions. */ibool   PMAPI PM_setRealTimeClockHandler(PM_intHandler ih,int frequency);void    PMAPI PM_setRealTimeClockFrequency(int frequency);void    PMAPI PM_restoreRealTimeClockHandler(void);/* Routines to install and remove hardware interrupt handlers. * * Note that you _must_ lock the memory containing the interrupt * handlers with the PM_lockPages() function otherwise you may encounter * problems in virtual memory environments. * * NOTE: User space versions of the PM library should fail these functions. */PM_IRQHandle PMAPI PM_setIRQHandler(int IRQ,PM_irqHandler ih);void    PMAPI PM_restoreIRQHandler(PM_IRQHandle irqHandle);/* Functions to program DMA using the legacy ISA DMA controller */void    PMAPI PM_DMACEnable(int channel);void    PMAPI PM_DMACDisable(int channel);void    PMAPI PM_DMACProgram(int channel,int mode,ulong bufferPhys,int count);ulong   PMAPI PM_DMACPosition(int channel);/* Function to post secondary graphics controllers using the BIOS */ibool   PMAPI PM_doBIOSPOST(ushort axVal,ulong BIOSPhysAddr,void *mappedBIOS,ulong BIOSLen);/* Function to init the AGP functions and return the AGP aperture size in MB */ulong   PMAPI PM_agpInit(void);void    PMAPI PM_agpExit(void);/* Functions to reserve and release physical AGP memory ranges */ibool   PMAPI PM_agpReservePhysical(ulong numPages,int type,void **physContext,PM_physAddr *physAddr);ibool   PMAPI PM_agpReleasePhysical(void *physContext);/* Functions to commit and free physical AGP memory ranges */ibool   PMAPI PM_agpCommitPhysical(void *physContext,ulong numPages,ulong startOffset,PM_physAddr *physAddr);ibool   PMAPI PM_agpFreePhysical(void *physContext,ulong numPages,ulong startOffset);/* Functions to do I/O port manipulation directly from C code. These * functions are portable and will work on any processor architecture * to access I/O space registers on PCI devices. */uchar   PMAPI PM_inpb(int port);ushort  PMAPI PM_inpw(int port);ulong   PMAPI PM_inpd(int port);void    PMAPI PM_outpb(int port,uchar val);void    PMAPI PM_outpw(int port,ushort val);void    PMAPI PM_outpd(int port,ulong val);/* Functions to determine the I/O port locations for COM and LPT ports. * The functions are zero based, so for COM1 or LPT1 pass in a value of 0, * for COM2 or LPT2 pass in a value of 1 etc. */int     PMAPI PM_getCOMPort(int port);int     PMAPI PM_getLPTPort(int port);/* Internal functions that need prototypes */void    PMAPI _PM_getRMvect(int intno, long *realisr);void    PMAPI _PM_setRMvect(int intno, long realisr);void    PMAPI _PM_freeMemoryMappings(void);/* Function to override the default debug log file location */void    PMAPI PM_setDebugLog(const char *logFilePath);/* Function to put the process to sleep for the specified milliseconds */void    PMAPI PM_sleep(ulong milliseconds);/* Function to block until 'milliseconds' have passed since last call */void    PMAPI PM_blockUntilTimeout(ulong milliseconds);/* Functions for directory traversal and management */void *  PMAPI PM_findFirstFile(const char *filename,PM_findData *findData);ibool   PMAPI PM_findNextFile(void *handle,PM_findData *findData);void    PMAPI PM_findClose(void *handle);void    PMAPI PM_makepath(char *p,const char *drive,const char *dir,const char *name,const char *ext);int     PMAPI PM_splitpath(const char *fn,char *drive,char *dir,char *name,char *ext);ibool   PMAPI PM_driveValid(char drive);void    PMAPI PM_getdcwd(int drive,char *dir,int len);uint    PMAPI PM_getFileAttr(const char *filename);void    PMAPI PM_setFileAttr(const char *filename,uint attrib);ibool   PMAPI PM_getFileTime(const char *filename,ibool gmTime,PM_time *time);ibool   PMAPI PM_setFileTime(const char *filename,ibool gmTime,PM_time *time);ibool   PMAPI PM_mkdir(const char *filename);ibool   PMAPI PM_rmdir(const char *filename);/* Functions to handle loading OS specific shared libraries */PM_MODULE PMAPI PM_loadLibrary(const char *szDLLName);void *  PMAPI PM_getProcAddress(PM_MODULE hModule,const char *szProcName);void    PMAPI PM_freeLibrary(PM_MODULE hModule);/* Functions and macros for 64-bit arithmetic */void    PMAPI _PM_add64(u32 a_low,s32 a_high,u32 b_low,s32 b_high,__i64 *result);void    PMAPI _PM_sub64(u32 a_low,s32 a_high,u32 b_low,s32 b_high,__i64 *result);void    PMAPI _PM_mul64(u32 a_low,s32 a_high,u32 b_low,s32 b_high,__i64 *result);void    PMAPI _PM_div64(u32 a_low,s32 a_high,u32 b_low,s32 b_high,__i64 *result);void    PMAPI _PM_shr64(u32 a_low,s32 a_high,s32 shift,__i64 *result);void    PMAPI _PM_sar64(u32 a_low,s32 a_high,s32 shift,__i64 *result);void    PMAPI _PM_shl64(u32 a_low,s32 a_high,s32 shift,__i64 *result);void    PMAPI _PM_neg64(u32 a_low,s32 a_high,__i64 *result);#ifdef __NATIVE_INT64__#define PM_add64(r,a,b)     (r) = (a) + (b)#define PM_add64_32(r,a,b)  (r) = (a) + (b)#define PM_sub64(r,a,b)     (r) = (a) - (b)#define PM_sub64_32(r,a,b)  (r) = (a) - (b)#define PM_mul64(r,a,b)     (r) = (a) * (b)#define PM_mul64_32(r,a,b)  (r) = (a) * (b)#define PM_div64(r,a,b)     (r) = (a) / (b)#define PM_div64_32(r,a,b)  (r) = (a) / (b)#define PM_shr64(r,a,s)     (r) = (a) >> (s)#define PM_sar64(r,a,s)     (r) = ((s64)(a)) >> (s)#define PM_shl64(r,a,s)     (r) = (u64)(a) << (s)#define PM_neg64(r,a,s)     (r) = -(a)#define PM_not64(r,a,s)     (r) = ~(a)#define PM_eq64(a,b)        (a) == (b)#define PM_gt64(a,b)        (a) > (b)#define PM_lt64(a,b)        (a) < (b)#define PM_geq64(a,b)       (a) >= (b)#define PM_leq64(a,b)       (a) <= (b)#define PM_64to32(a)        (u32)(a)#define PM_64tos32(a)       (s32)(a)#define PM_set64(a,b,c)     (a) = ((u64)(b) << 32) + (c)#define PM_set64_32(a,b)    (a) = (b)#else#define PM_add64(r,a,b)     _PM_add64((a).low,(a).high,(b).low,(b).high,&(r))#define PM_add64_32(r,a,b)  _PM_add64((a).low,(a).high,b,0,&(r))#define PM_sub64(r,a,b)     _PM_sub64((a).low,(a).high,(b).low,(b).high,&(r))#define PM_sub64_32(r,a,b)  _PM_sub64((a).low,(a).high,b,0,&(r))#define PM_mul64(r,a,b)     _PM_mul64((a).low,(a).high,(b).low,(b).high,&(r))#define PM_mul64_32(r,a,b)  _PM_mul64((a).low,(a).high,b,0,&(r))#define PM_div64(r,a,b)     _PM_div64((a).low,(a).high,(b).low,(b).high,&(r))#define PM_div64_32(r,a,b)  _PM_div64((a).low,(a).high,b,0,&(r))#define PM_shr64(r,a,s)     _PM_shr64((a).low,(a).high,s,&(r))#define PM_sar64(r,a,s)     _PM_sar64((a).low,(a).high,s,&(r))#define PM_shl64(r,a,s)     _PM_shl64((a).low,(a).high,s,&(r))#define PM_neg64(r,a,s)     _PM_neg64((a).low,(a).high,&(r))#define PM_not64(r,a,s)     (r).low = ~(a).low, (r).high = ~(a).high#define PM_eq64(a,b)        ((a).low == (b).low && (a).high == (b).high)#define PM_gt64(a,b)        (((a).high > (b).high) || ((a).high == (b).high && (a).low > (b).low))#define PM_lt64(a,b)        (((a).high < (b).high) || ((a).high == (b).high && (a).low < (b).low))#define PM_geq64(a,b)       (PM_eq64(a,b) || PM_gt64(a,b))#define PM_leq64(a,b)       (PM_eq64(a,b) || PM_lt64(a,b))#define PM_64to32(a)        (u32)(a.low)#define PM_64tos32(a)       ((a).high < 0) ? -(a).low : (a).low)#define PM_set64(a,b,c)     (a).high = (b), (a).low = (c)#define PM_set64_32(a,b)    (a).high = 0, (a).low = (b)#endif/* Function to enable IOPL access if required */int     PMAPI PM_setIOPL(int iopl);/* Function to flush the TLB and CPU caches */void    PMAPI PM_flushTLB(void);/* DOS specific fucntions */#ifdef  __MSDOS__uint    PMAPI PMHELP_getVersion(void);void    PMAPI PM_VxDCall(VXD_regs *regs);#endif/* Functions to save and restore the VGA hardware state */int     PMAPI PM_getVGAStateSize(void);void    PMAPI PM_saveVGAState(void *stateBuf);void    PMAPI PM_restoreVGAState(const void *stateBuf);void    PMAPI PM_vgaBlankDisplay(void);void    PMAPI PM_vgaUnblankDisplay(void);/* Functions to load and unload DirectDraw libraries. Only used on * Windows platforms. */void *  PMAPI PM_loadDirectDraw(int device);void    PMAPI PM_unloadDirectDraw(int device);PM_HWND PMAPI PM_getDirectDrawWindow(void);void    PMAPI PM_doSuspendApp(void);/* Functions to install, start, stop and remove NT services. Valid only * for Win32 apps running on Windows NT. */#ifdef __WINDOWS32__ulong   PMAPI PM_installService(const char *szDriverName,const char *szServiceName,const char *szLoadGroup,ulong dwServiceType);ulong   PMAPI PM_startService(const char *szServiceName);ulong   PMAPI PM_stopService(const char *szServiceName);ulong   PMAPI PM_removeService(const char *szServiceName);#endif/* Routines to generate native interrupts (ie: protected mode interrupts * for protected mode apps) using an interface the same as that use by * int86() and int86x() in realmode. These routines are required because * many 32 bit compilers use different register structures and different * functions causing major portability headaches. Thus we provide our * own and solve it all in one fell swoop, and we also get a routine to * put stuff into 32 bit registers from real mode ;-) */void    PMAPI PM_segread(PMSREGS *sregs);int     PMAPI PM_int386(int intno, PMREGS *in, PMREGS *out);int     PMAPI PM_int386x(int intno, PMREGS *in, PMREGS *out,PMSREGS *sregs);/* Call the X86 emulator or the real BIOS in our test harness */#if defined(TEST_HARNESS) && !defined(PMLIB)#define PM_mapRealPointer(r_seg,r_off)      _PM_imports.PM_mapRealPointer(r_seg,r_off)#define PM_getVESABuf(len,rseg,roff)        _PM_imports.PM_getVESABuf(len,rseg,roff)#define PM_callRealMode(seg,off,regs,sregs) _PM_imports.PM_callRealMode(seg,off,regs,sregs)#define PM_int86(intno,in,out)              _PM_imports.PM_int86(intno,in,out)#define PM_int86x(intno,in,out,sregs)       _PM_imports.PM_int86x(intno,in,out,sregs)#endif#ifdef  __cplusplus}                       /* End of "C" linkage for C++   */#endif/* Include OS extensions for interrupt handling */#if defined(__REALDOS__) || defined(__SMX32__)#include "pmint.h"#endif#endif /* __PMAPI_H */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精选一区二区三区| 欧美唯美清纯偷拍| 在线视频一区二区三区| 日韩欧美123| 亚洲欧美色综合| 国产一二精品视频| 777午夜精品视频在线播放| 国产欧美一区二区精品性色 | 亚洲情趣在线观看| 麻豆91精品91久久久的内涵| 不卡一区二区中文字幕| 久久这里都是精品| 午夜精品视频在线观看| av亚洲精华国产精华| 精品国产91乱码一区二区三区| 亚洲蜜臀av乱码久久精品| 国产精品77777| 欧美一区二区三区公司| 一区二区久久久| 99re亚洲国产精品| 国产女同性恋一区二区| 美日韩一区二区| 欧美日韩大陆一区二区| 亚洲欧美视频在线观看视频| 不卡视频在线观看| 欧美激情一区二区三区在线| 久久99精品国产麻豆不卡| 欧美老年两性高潮| 亚洲图片一区二区| 欧美午夜精品一区二区三区| 亚洲欧美色一区| 91论坛在线播放| 亚洲男同性视频| 色综合视频在线观看| 亚洲免费电影在线| 在线日韩一区二区| 香蕉影视欧美成人| 欧美日韩中文一区| 日本 国产 欧美色综合| 日韩视频免费观看高清完整版| 日韩国产精品久久| 日韩精品最新网址| 国产精品12区| 中文字幕免费在线观看视频一区| 成人激情小说乱人伦| 亚洲三级理论片| 在线亚洲免费视频| 三级影片在线观看欧美日韩一区二区| 欧美色窝79yyyycom| 日韩中文字幕不卡| 精品理论电影在线观看 | 蜜臀精品一区二区三区在线观看| 欧美精品一卡二卡| 精品在线亚洲视频| 中文字幕va一区二区三区| 91美女片黄在线观看91美女| 亚洲成人一区在线| 精品久久久三级丝袜| 国产激情偷乱视频一区二区三区| 国产精品久久久久久久久免费相片 | 天堂va蜜桃一区二区三区| 欧美日韩国产另类一区| 亚洲一区二区视频在线| 欧美一级高清片| 国产超碰在线一区| 夜夜嗨av一区二区三区中文字幕| 欧美精品在线观看播放| 国产suv精品一区二区6| 亚洲综合网站在线观看| 欧美xfplay| 99久久99精品久久久久久| 亚洲成年人影院| 国产亚洲欧美日韩俺去了| 色欧美片视频在线观看 | 日韩精品久久久久久| 久久久久久久免费视频了| 91免费视频大全| 麻豆精品国产传媒mv男同 | 国产成人精品免费| 亚洲国产人成综合网站| 久久久精品中文字幕麻豆发布| 91精品福利视频| 国产一区二区看久久| 亚洲一区二区三区视频在线播放| 久久久www成人免费无遮挡大片| 91亚洲资源网| 国内精品伊人久久久久av一坑 | 精品国产1区2区3区| 91网上在线视频| 国产一区二区在线免费观看| 亚洲影院理伦片| 国产精品拍天天在线| 日韩一区二区三| 欧美日韩午夜在线视频| jvid福利写真一区二区三区| 黄色日韩三级电影| 亚洲成人www| 国产精品美女久久久久久2018| 蜜桃免费网站一区二区三区| 亚洲色图在线播放| 久久色在线视频| 欧美日韩国产美| 在线日韩av片| 成人短视频下载| 国产美女精品在线| 精品一区二区三区香蕉蜜桃| 一区二区理论电影在线观看| 国产精品国产馆在线真实露脸| 久久久久久久久久美女| 欧美一区二区三区喷汁尤物| 欧美午夜精品一区| 色综合天天综合网天天看片| 大桥未久av一区二区三区中文| 国精产品一区一区三区mba视频| 视频一区二区三区中文字幕| 亚洲制服丝袜av| 亚洲色图20p| 亚洲免费观看高清完整版在线观看熊| 亚洲国产激情av| 国产精品久久久久影视| 国产欧美日韩在线视频| 久久精品网站免费观看| 国产欧美日韩另类视频免费观看 | 欧美日韩国产综合一区二区| 色综合久久精品| 91在线精品一区二区三区| 91在线观看美女| 欧美在线免费观看视频| 欧美熟乱第一页| 欧美日韩国产小视频在线观看| 欧美在线视频不卡| 欧美性生活久久| 欧美一区二区三区四区视频 | 97se亚洲国产综合自在线不卡| 免费高清视频精品| 国内精品伊人久久久久av一坑| 国产福利一区二区| 91美女片黄在线| 欧美精品免费视频| 精品久久国产老人久久综合| 久久精品视频在线看| 中文字幕综合网| 亚洲国产aⅴ成人精品无吗| 日韩av成人高清| 韩国av一区二区| 91麻豆国产自产在线观看| 欧美日韩一区二区三区免费看| 日韩一区二区三区四区| 欧美极品美女视频| 亚洲五码中文字幕| 久久国产尿小便嘘嘘尿| 成人免费毛片片v| 欧美优质美女网站| 精品成人免费观看| 亚洲欧美精品午睡沙发| 日韩黄色在线观看| 国产成人精品免费在线| 欧美日免费三级在线| 久久久三级国产网站| 亚洲男人天堂一区| 国内久久精品视频| 在线观看亚洲精品视频| 亚洲精品在线观| 亚洲女爱视频在线| 国产激情视频一区二区在线观看| 欧美最猛性xxxxx直播| 欧美精品一区二区三区蜜桃视频| 亚洲欧洲在线观看av| 美女在线视频一区| 一道本成人在线| 久久久亚洲午夜电影| 亚洲成人av资源| av电影在线观看不卡| 日韩一级片网址| 亚洲图片欧美色图| 91在线云播放| 国产欧美日韩精品在线| 美美哒免费高清在线观看视频一区二区| 99久久国产免费看| 精品国产乱码久久久久久老虎| 亚洲制服欧美中文字幕中文字幕| 风间由美中文字幕在线看视频国产欧美| 欧美影片第一页| 中文字幕在线观看一区| 精品在线观看视频| 欧美二区三区91| 一区二区三区在线观看动漫| 成人av资源在线观看| 久久久99久久精品欧美| 欧美aa在线视频| 欧美日韩精品一二三区| 亚洲欧洲制服丝袜| eeuss鲁片一区二区三区| 久久精品一区四区| 韩国欧美国产1区| 欧美一二三四在线| 日本欧美在线看| 欧美区视频在线观看| 亚洲国产精品天堂| 在线精品视频一区二区三四|