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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? appa.html

?? windowsAPI介紹。很詳細的
?? HTML
?? 第 1 頁 / 共 2 頁
字號:
<!DOCTYPE html PUBLIC "-//Netscape Comm. Corp.//DTD HTML//EN">
<html>

<head>
<title>Windows 95 API Dictionary: Appendix A: Data Types</title>
<base TARGET="_self">
<script LANGUAGE="JavaScript">
<!--Cloak
function statbar(txt) {
  window.status = txt;
  setTimeout("erase()",3000);
}
function erase() {
  window.status = "";
}
//Decloak-->
</script>
</head>

<body BGCOLOR="#004000" TEXT="#FFFFFF" LINK="#FFFF00" VLINK="#FF8000" ALINK="#80FF80">

<p><a NAME="top"></a></p>

<h1 ALIGN="center">- Appendix A: Data Types -</h1>

<hr ALIGN="center" WIDTH="85%" SIZE="5">

<p ALIGN="left"><a NAME="choosecolors"></a></p>

<h3 ALIGN="center">CHOOSECOLORS Type</h3>
<div align="center"><center>

<table WIDTH="50%">
  <tr>
    <td><code>Type CHOOSECOLORS<br>
    &nbsp;&nbsp;lStructSize As Long<br>
    &nbsp;&nbsp;hwndOwner As Long<br>
    &nbsp;&nbsp;hInstance As Long<br>
    &nbsp;&nbsp;rgbResult As Long<br>
    &nbsp;&nbsp;lpCustColors As String<br>
    &nbsp;&nbsp;flags As Long<br>
    &nbsp;&nbsp;lCustData As Long<br>
    &nbsp;&nbsp;lpfnHook As Long<br>
    &nbsp;&nbsp;lpTemplateName As String<br>
    End Type</code></td>
  </tr>
</table>
</center></div>

<p>Variables declared with the CHOOSECOLORS type are designed to work with the ChooseColor 
function. It holds all the data passed to and returned from the function. The parameters 
you pass tell Windows how to make the ChooseColor box. (Note: In the API Text Viewer, this 
type is called CHOOSECOLOR. I have renamed it to avoid a conflict with the 
identically-named ChooseColor function.)<br>
</p>

<table WIDTH="95%" BORDER="2" CELLSPACING="0">
  <tr>
    <td WIDTH="20%"><code>lStructSize</code></td>
    <td WIDTH="80%">The length in bytes of the variable (use the Len function). </td>
  </tr>
  <tr>
    <td><code>hwndOwner</code></td>
    <td>The handle of the form calling the ChooseColor box. </td>
  </tr>
  <tr>
    <td><code>hInstance</code></td>
    <td>? </td>
  </tr>
  <tr>
    <td><code>rgbResult</code></td>
    <td>The color chosen by the user, in RGB format. </td>
  </tr>
  <tr>
    <td><code>lpCustColors</code></td>
    <td>A string holding a numeric array's custom colors data converted into Unicode format 
    using the StrConv function. For a clearer explanation, look at the example for the 
    ChooseColor function itself. </td>
  </tr>
  <tr>
    <td><code>flags</code></td>
    <td>Zero or more <a HREF="appb.html#colordialog">color dialog flags</a> telling how to 
    render the box. </td>
  </tr>
  <tr>
    <td><code>lCustData</code></td>
    <td>? </td>
  </tr>
  <tr>
    <td><code>lpfnHook</code></td>
    <td>? </td>
  </tr>
  <tr>
    <td><code>lpTemplateName</code></td>
    <td>? </td>
  </tr>
</table>
<b>

<p>Used by:</b> <a HREF="c.html#choosecolor">ChooseColor</a><br>
<a HREF="index.html" REL="Index">返回到索引.</a> </p>

<hr ALIGN="center" WIDTH="85%" SIZE="5">

<p ALIGN="left"><a NAME="joycaps"></a></p>

<h3 ALIGN="center">JOYCAPS Type</h3>
<div align="center"><center>

<table WIDTH="50%">
  <tr>
    <td><code>Type JOYCAPS<br>
    &nbsp;&nbsp;wMid As Integer<br>
    &nbsp;&nbsp;wPid As Integer<br>
    &nbsp;&nbsp;szPname As String * 32<br>
    &nbsp;&nbsp;wXmin As Long<br>
    &nbsp;&nbsp;wXmax As Long<br>
    &nbsp;&nbsp;wYmin As Long<br>
    &nbsp;&nbsp;wYmax As Long<br>
    &nbsp;&nbsp;wZmin As Long<br>
    &nbsp;&nbsp;wZmax As Long<br>
    &nbsp;&nbsp;wNumButtons As Long<br>
    &nbsp;&nbsp;wPeriodMin As Long<br>
    &nbsp;&nbsp;wPeriodMax As Long<br>
    End Type</code></td>
  </tr>
</table>
</center></div>

<p>Variable declared with this type are designed to hold information about a joystick. 
This is not to be confused with the current status of the joystick. This mainly holds the 
minumum and maximum values along the axes.<br>
</p>

<table WIDTH="95%" CELLSPACING="0" BORDER="2">
  <tr>
    <td WIDTH="20%"><code>wMid</code></td>
    <td WIDTH="80%">? </td>
  </tr>
  <tr>
    <td><code>wPid</code></td>
    <td>? </td>
  </tr>
  <tr>
    <td><code>szPname</code></td>
    <td>The name of the joystick's device driver. </td>
  </tr>
  <tr>
    <td><code>wXmin</code></td>
    <td>The minimum x-axis coordinate value. </td>
  </tr>
  <tr>
    <td><code>wXmaz</code></td>
    <td>The maximum x-axis coordinate value. </td>
  </tr>
  <tr>
    <td><code>wYmin</code></td>
    <td>The minimum y-axis coordinate value. </td>
  </tr>
  <tr>
    <td><code>wYmax</code></td>
    <td>The maximum y-axis coordinate value. </td>
  </tr>
  <tr>
    <td><code>wZmin</code></td>
    <td>The minimum z-axis coordinate value. </td>
  </tr>
  <tr>
    <td><code>wZmax</code></td>
    <td>The maximum z-axis coordinate value. </td>
  </tr>
  <tr>
    <td><code>wNumButtons</code></td>
    <td>How many buttons the joystick has. </td>
  </tr>
  <tr>
    <td><code>wPeriodMin</code></td>
    <td>? </td>
  </tr>
  <tr>
    <td><code>wPeriodMax</code></td>
    <td>? </td>
  </tr>
</table>
<b>

<p>Used by:</b> <a HREF="j.html#joygetdevcaps">joyGetDevCaps</a><br>
<a HREF="index.html" REL="Index">返回到索引.</a> </p>

<hr ALIGN="center" WIDTH="85%" SIZE="5">

<p ALIGN="left"><a NAME="joyinfo"></a></p>

<h3 ALIGN="center">JOYINFO Type</h3>
<div align="center"><center>

<table WIDTH="50%">
  <tr>
    <td><code>Type JOYINFO<br>
    &nbsp;&nbsp;wXpos As Long<br>
    &nbsp;&nbsp;wYpos As Long<br>
    &nbsp;&nbsp;wZpos As Long<br>
    &nbsp;&nbsp;wButtons As Long<br>
    End Type</code></td>
  </tr>
</table>
</center></div>

<p>Variables declared with this type are designed to hold the current position of a 
joystick. It reads the x, y, and z axes and also the button status.<br>
</p>

<table WIDTH="95%" CELLSPACING="0" BORDER="2">
  <tr>
    <td WIDTH="20%"><code>wXpos</code></td>
    <td WIDTH="80%">The current x-axis coordinate. </td>
  </tr>
  <tr>
    <td><code>wYpos</code></td>
    <td>The current y-axis coordinate. </td>
  </tr>
  <tr>
    <td><code>wZpos</code></td>
    <td>The current z-axis coordinate. </td>
  </tr>
  <tr>
    <td><code>wButtons</code></td>
    <td>The status of the buttons. AND the value with 1 to test button 1, 2 for button 2, 4 
    for button 3, 8 for button 4, etc. A non-zero return value means that it is being pressed. 
    </td>
  </tr>
</table>
<b>

<p>Used by:</b> <a HREF="j.html#joygetpos">joyGetPos</a><br>
<a HREF="index.html" REL="Index">返回到索引.</a> </p>

<hr ALIGN="center" WIDTH="85%" SIZE="5">

<p ALIGN="left"><a NAME="openfilename"></a></p>

<h3 ALIGN="center">OPENFILENAME Data Type</h3>
<div align="center"><center>

<table WIDTH="50%">
  <tr>
    <td><code>Type OPENFILENAME<br>
    &nbsp;&nbsp;lStructSize As Long<br>
    &nbsp;&nbsp;hwndOwner As Long<br>
    &nbsp;&nbsp;hInstance As Long<br>
    &nbsp;&nbsp;lpstrFilter As String<br>
    &nbsp;&nbsp;lpstrCustomFilter As String<br>
    &nbsp;&nbsp;nMaxCustomFilter As Long<br>
    &nbsp;&nbsp;nFilterIndex As Long<br>
    &nbsp;&nbsp;lpstrFile As String<br>
    &nbsp;&nbsp;nMaxFile As Long<br>
    &nbsp;&nbsp;lpstrFileTitle As String<br>
    &nbsp;&nbsp;nMaxFileTitle As Long<br>
    &nbsp;&nbsp;lpstrInitialDir As String<br>
    &nbsp;&nbsp;lpstrTitle As String<br>
    &nbsp;&nbsp;flags As Long<br>
    &nbsp;&nbsp;nFileOffset As Long<br>
    &nbsp;&nbsp;nFileExtension As Long<br>
    &nbsp;&nbsp;lpstrDefExt As String<br>
    &nbsp;&nbsp;lCustData As Long<br>
    &nbsp;&nbsp;lpfnHook As Long<br>
    &nbsp;&nbsp;lpTemplateName As String<br>
    End Type</code></td>
  </tr>
</table>
</center></div>

<p>Variables declared with the OPENFILENAME are designed to be used with the two Windows 
95 file dialog box API functions. The multitude of settings in the type are used both to 
tell Windows how to make the dialog box, as well as return the needed data to the program. 
(Note: <code>vbNullChar</code> is a Visual Basic constant)<br>
</p>

<table WIDTH="95%" CELLSPACING="0" BORDER="2">
  <tr>
    <td WIDTH="20%"><code>lStructSize</code></td>
    <td WIDTH="80%">The size in bytes of the variable (use the Len function). Set this after 
    setting all other parts of the variable. </td>
  </tr>
  <tr>
    <td><code>hwndOwner</code></td>
    <td>The handle of the form using the file dialog box. </td>
  </tr>
  <tr>
    <td><code>hInstance</code></td>
    <td>? </td>
  </tr>
  <tr>
    <td><code>lpstrFilter</code></td>
    <td>Fills in the File Type drop-down box. The format is &quot;<i>name of file type</i>&quot; 
    &amp; <code>vbNullChar</code> &amp; &quot;<i>mask</i>&quot; &amp; <code>vbNullChar</code> 
    ... for as many types as you want. The end of it should be <code>vbNullChar</code> &amp; <code>vbNullChar</code>. 
    A <i>mask</i> sorts the files (such as *.txt or *.html or even *.*). </td>
  </tr>
  <tr>
    <td><code>lpstrCustomFilter</code></td>
    <td>? </td>
  </tr>
  <tr>
    <td><code>nMaxCustFilter</code></td>
    <td>? </td>
  </tr>
  <tr>
    <td><code>nFilterIndex</code></td>
    <td>What data type of <code>lpstrFilter</code> should be the default. The first one is 1, 
    the second 2, etc. </td>
  </tr>
  <tr>
    <td><code>lpstrFile</code></td>
    <td>Set it as a series of blank spaces before the function call. A good size is at least 
    Space(255), since it must be large enough to hold the filename and path. After, it holds 
    file(s) selected. If one is selected, the path and filename are returned, followed by <code>vbNullChar</code> 
    and a series of spaces. If multiple files are selected, the value is the path &amp; <code>vbNullChar</code> 
    &amp; the first filename &amp; the second filename ..., the last filename ending with 2 <code>vbNullChar</code>s. 
    </td>
  </tr>
  <tr>
    <td><code>nMaxFile</code></td>
    <td>The length in characters of <code>lpstrFile</code> when you first set it. </td>
  </tr>
  <tr>
    <td><code>lpstrFileTitle</code></td>
    <td>Very similar to <code>lpstrFile</code>, this will hold only the filename of the 
    selected file. Again, set it to at least Space(255). If multiple files are selected, this 
    is not set to any useful value. </td>
  </tr>
  <tr>
    <td><code>nMaxFileTitle</code></td>
    <td>The length in characters of <code>lpstrFileTitle</code> </td>
  </tr>
  <tr>
    <td><code>lpstrInitialDir</code></td>
    <td>The directory to start in. If omitted, it looks in the current directory first. </td>
  </tr>
  <tr>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本一区二区久久| 亚洲欧洲在线观看av| 99精品久久免费看蜜臀剧情介绍| 亚洲最色的网站| 久久久五月婷婷| 91麻豆精品国产| 91蝌蚪国产九色| 激情综合五月婷婷| 亚洲成a人片在线观看中文| 国产精品久久免费看| 久久久久久久久久久久电影| 欧美高清hd18日本| aaa欧美大片| 国产制服丝袜一区| 日韩国产在线观看| 一区二区成人在线| 亚洲男人天堂av网| 亚洲欧洲综合另类在线| 国产色婷婷亚洲99精品小说| 日韩一二三区不卡| 69堂国产成人免费视频| 欧美在线一区二区三区| 91视频xxxx| 99视频在线精品| 欧美图片一区二区三区| 国产成人精品免费网站| 9久草视频在线视频精品| 色综合天天做天天爱| 国产高清久久久| 亚洲国产综合色| 一区二区三区在线观看网站| 亚洲欧洲三级电影| 一区二区在线看| 婷婷久久综合九色综合绿巨人 | 亚洲激情男女视频| 免费成人av资源网| 97国产一区二区| 久久女同精品一区二区| 日本va欧美va欧美va精品| 91黄视频在线| 一区二区三区欧美视频| 国产成人av一区二区三区在线 | 北条麻妃一区二区三区| 91尤物视频在线观看| 欧美日韩久久一区二区| 日韩精品中文字幕一区二区三区 | 国产精品一区二区男女羞羞无遮挡 | 日本乱码高清不卡字幕| 制服丝袜激情欧洲亚洲| 欧美精品vⅰdeose4hd| 成人av电影免费观看| 日韩精品电影在线| 日本免费在线视频不卡一不卡二| 国产精品免费丝袜| 视频精品一区二区| 91影视在线播放| www欧美成人18+| 日韩福利视频导航| 日本道精品一区二区三区| 国产丝袜欧美中文另类| 久久成人麻豆午夜电影| 欧美三级日韩三级国产三级| 亚洲品质自拍视频网站| 国产一区二区三区免费播放| 欧美午夜精品理论片a级按摩| 国产精品国产a级| 国产成人日日夜夜| 国产亚洲欧美色| 国产一区二区三区久久悠悠色av| 日韩免费高清电影| 日本怡春院一区二区| 国产经典欧美精品| 欧美日本乱大交xxxxx| 国产精品久线观看视频| 国产伦精品一区二区三区视频青涩| 色婷婷久久一区二区三区麻豆| 欧美mv和日韩mv的网站| 天天综合色天天综合| 欧美在线啊v一区| 成人欧美一区二区三区1314| 国产精品自拍一区| www亚洲一区| 久久电影网电视剧免费观看| 欧美二区三区的天堂| 亚洲人快播电影网| 91丨九色丨蝌蚪富婆spa| 国产欧美日韩在线| 高清不卡一二三区| 久久综合色鬼综合色| 日韩高清不卡一区二区| 欧美日韩精品二区第二页| 午夜电影一区二区三区| 欧洲生活片亚洲生活在线观看| 亚洲男人的天堂av| 色狠狠桃花综合| 亚洲精品少妇30p| 在线视频你懂得一区| 亚洲欧洲国产日韩| 色天天综合久久久久综合片| 一区二区三区精品视频| 91精品福利视频| 亚洲成人综合网站| 91精品国产综合久久久久| 日本欧美一区二区| 久久精品视频在线看| 成人久久18免费网站麻豆| 亚洲摸摸操操av| 欧美日韩亚洲高清一区二区| 日韩成人一级片| 精品少妇一区二区三区日产乱码| 国产专区综合网| 国产欧美一区视频| 色先锋资源久久综合| 亚欧色一区w666天堂| 久久亚洲影视婷婷| 一本一道久久a久久精品综合蜜臀| 一二三四社区欧美黄| 精品少妇一区二区三区视频免付费| 国产高清不卡一区二区| 亚洲欧美乱综合| 欧美大肚乱孕交hd孕妇| 成人h动漫精品| 青青草精品视频| 一区二区三区在线观看动漫| 欧美一区二区三区的| 99riav一区二区三区| 美女在线视频一区| 亚洲欧美国产高清| 久久久精品黄色| 欧美日韩高清不卡| 91蜜桃免费观看视频| 狠狠色丁香久久婷婷综合丁香| 亚洲综合色噜噜狠狠| 久久久综合精品| 日韩欧美一级特黄在线播放| 99精品一区二区三区| 国产精品1区2区3区在线观看| 一区二区三区欧美日| 国产精品国产三级国产普通话三级| 日韩区在线观看| 色欧美日韩亚洲| 色偷偷久久人人79超碰人人澡| 国产黄色精品网站| 麻豆精品精品国产自在97香蕉 | 成人性视频免费网站| 美腿丝袜亚洲综合| 亚洲6080在线| 亚洲午夜一区二区三区| 中文字幕中文字幕一区| 国产无人区一区二区三区| 久久综合狠狠综合| 精品国产乱码久久久久久浪潮| 欧美一区二区视频在线观看2022| 91高清视频免费看| 色94色欧美sute亚洲13| 91理论电影在线观看| 91影视在线播放| 色又黄又爽网站www久久| 欧美欧美欧美欧美| 久久久亚洲午夜电影| 一区二区三区鲁丝不卡| 久久精品99国产精品日本| 成人动漫一区二区在线| 欧美日韩aaaaaa| 国产调教视频一区| 日本不卡视频在线观看| 99国产精品久久久久| 日韩久久免费av| 亚洲裸体xxx| 激情图片小说一区| 在线观看日韩毛片| 亚洲精品在线观看网站| 亚洲一区二区在线免费看| 国产精品自拍av| 欧美日韩成人综合在线一区二区| www国产精品av| 亚洲精品视频一区| 成人精品视频一区二区三区尤物| 欧美日韩久久久| 欧美一级xxx| 欧美国产一区二区| 丝袜亚洲另类丝袜在线| 国产成人免费视频网站高清观看视频 | 欧美一级高清大全免费观看| 欧美成人精品3d动漫h| 国产精品丝袜91| 日日夜夜一区二区| 91在线小视频| 26uuu国产电影一区二区| 亚洲精选在线视频| 久久精品国产亚洲一区二区三区| 91丨九色porny丨蝌蚪| 欧美精品一区男女天堂| 亚洲福利一区二区| 国产精品综合二区| 91精品国产色综合久久ai换脸| 成人欧美一区二区三区黑人麻豆| 免费人成网站在线观看欧美高清| 成人黄色大片在线观看| 日韩精品一区二区在线|